|
You last visited: Today at 15:02
Advertisement
Para's Script Library
Discussion on Para's Script Library within the Aion forum part of the MMORPGs category.
|
View Poll Results: You want the scripts for any client language?
|
|
Yes, surely!
|
  
|
271 |
36.97% |
|
No, english and german are enough for me.
|
  
|
462 |
63.03% |
02/11/2019, 23:32
|
#2221
|
elite*gold: 0
Join Date: Apr 2014
Posts: 2
Received Thanks: 0
|
A script to include for weaving with two skills between self attack possible ?
Merci d' avance ♥
|
|
|
02/12/2019, 08:19
|
#2222
|
elite*gold: 0
Join Date: Sep 2011
Posts: 17
Received Thanks: 0
|
Quote:
Originally Posted by McSmoove
Hi para,
I am trying to create myself a script for luna that just spam skill 1 and 2 forever, meanwhile checks if MAD miniboss comes and use the 5th skill. When last boss spowns, it uses skill 3 4 and 5 until it's dead.
But i think i got something wrong.
I was wondering how can i make the script to do something forever, like a while statement. And in this while statement, with an if, enter in another while statement. The script snippet that i made should work but i gotta write it in a better way.
Basicly i want to farm luna manually but i want the script to spam skill 1 and 2, while spamming i want it to check if mad miniboss spown and kill him and, when the last boss spowns, make the script spam skill 3 4 and 5 on the last boss target.
Thx for your help when u have time to fix this snippet, cheers
Code:
#DO=600000;
#EXECUTE=FarmLuna;
_UNTILMemRead=0xF557C4,BYTE,=1; ( while i have target? i dont know how to do something else, would be cool to say while im in the luna istance world ( I recall there should be a pointer with the map id in some memory register))
start_FarmLuna;
Delay=10;
Command=/skill Soul Skewer;
Delay=10;
Command=/skill Crushing Darkness;
Delay=10;
Command=/select MAD-74C;
_IFMemPtrRead=%TargetBase,%OffsetName,WCHAR[32],=MAD-74C;
_IFMemPtrRead=%TargetBase,%OffsetHP,DWORD,>0;
#IF=%TargetDistance,<15;
#IF=%Timer=415,60500;
Command=/skill Hellish Wave;
Delay=20;
Command=/skill Hellish Wave;
_IFMemPtrRead=%TargetBase,%OffsetName,WCHAR[32],=MAD-S;
#EXECUTE=FarmLastBoss;
end_FarmLuna;
start_FarmLastBoss;
#DO=600000;
Delay=10;
Command=/skill Terrifing Rupture;
Delay=10;
Command=/skill Hellish Stike;
Delay=10;
Command=/skill Hellish Wave;
_IFMemPtrRead=%TargetBase,%OffsetHP,DWORD,=0; (exit the script)
_UNTILMemRead=0xF557C4,BYTE,=1; ( while i have target? i dont know how to do something else, would be cool to say while im in the luna istance world ( I recall there should be a pointer with the map id in some memory register))
end_FarmLastBoss;
|
Hi McSmoove,
Have you finally finished the script to do this? mind sharing it with us?
regards,
|
|
|
02/12/2019, 09:08
|
#2223
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
|
Quote:
Originally Posted by Exa-21
A script to include for weaving with two skills between self attack possible ?
Merci d' avance ♥
|
You know there's a AutoWeave script in the Short Script Bundle?
It will force a auto attack between every skill not every second skill
|
|
|
02/14/2019, 12:30
|
#2224
|
elite*gold: 0
Join Date: Apr 2014
Posts: 2
Received Thanks: 0
|
Quote:
Originally Posted by Paraly
You know there's a AutoWeave script in the Short Script Bundle?
It will force a auto attack between every skill not every second skill
|
Yes I know, but I would like him to force an automatic attack for 2 skill's
|
|
|
02/14/2019, 22:05
|
#2225
|
elite*gold: 0
Join Date: Jun 2011
Posts: 28
Received Thanks: 0
|
Quote:
Originally Posted by luckytiti
Hi McSmoove,
Have you finally finished the script to do this? mind sharing it with us?
regards,
|
This is my snippet, just remember to loot the boss that drop the items for cannons.
And this is not fully automatic script, it's semi manual
#DO=600000;
Delay=40;
Command=/skill Crushing Darkness;
Delay=40;
Command=/skill Soul Skewer;
Delay=40;
Command=/skill Soul Skewer;
Delay=40;
Command=/select MAD-74C;
_IFMemPtrRead=%TargetBase,%OffsetName,WCHAR[32],=MAD-74C;
Command=/skill Hellish Wave;
Delay=200;
Command=/skill Hellish Wave;
Delay=400;
#ENDIF
_IFMemPtrRead=%TargetBase,%OffsetName,WCHAR[32],=MAAD-S;
#EXECUTE=FarmLastBoss;
#ENDIF
_IFMemPtrRead=%TargetBase,%OffsetName,WCHAR[32],=MAAD-S;
#EXECUTE=FarmLastBoss;
#ENDIF
#UNTIL=1,=2;
start_FarmLastBoss;
#DO=600000;
Delay=40;
Command=/skill Crushing Darkness;
Delay=40;
Command=/skill Crushing Darkness;
Delay=40;
Command=/skill Soul Skewer;
Delay=40;
Command=/skill Hellish Strike
#UNTIL=1,=2;
end_FarmLastBoss;
|
|
|
02/21/2019, 06:54
|
#2226
|
elite*gold: 0
Join Date: Aug 2017
Posts: 16
Received Thanks: 1
|
would someone be kind enough to explain how the PF shugo script works ?
|
|
|
02/21/2019, 11:18
|
#2227
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
|
Quote:
Originally Posted by blackeyeII
would someone be kind enough to explain how the PF shugo script works ?
|
Go inside Primeth Forge and start the script right at the spawn
It will run trough the entire instance and whisper your main or give a notification as soon as a shugo is nearby
If you want to loot the shugo with the toon who just detected him stop the script and use the basics of Gravity / Superglide to enter the room of the shugo to kill and loot him.
If you want to loot him with your main you obviously have to invite him to the group, enter the instance and run the PF script again
|
|
|
02/23/2019, 01:06
|
#2228
|
elite*gold: 0
Join Date: Aug 2017
Posts: 16
Received Thanks: 1
|
Quote:
Originally Posted by Paraly
Go inside Primeth Forge and start the script right at the spawn
It will run trough the entire instance and whisper your main or give a notification as soon as a shugo is nearby
If you want to loot the shugo with the toon who just detected him stop the script and use the basics of Gravity / Superglide to enter the room of the shugo to kill and loot him.
If you want to loot him with your main you obviously have to invite him to the group, enter the instance and run the PF script again
|
thank you ! btw is there any hack for rolling high ?
|
|
|
02/23/2019, 02:31
|
#2229
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
|
Quote:
Originally Posted by blackeyeII
thank you ! btw is there any hack for rolling high ?
|
No that's impossible
|
|
|
03/01/2019, 19:42
|
#2230
|
elite*gold: 0
Join Date: Aug 2011
Posts: 4
Received Thanks: 0
|
Remove bot broker plox ;_
|
|
|
03/04/2019, 13:04
|
#2231
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
|
If anyone wants phone notifications from our scripts trough discord follow this guide:
Create your own
You can use this URL in most scripts, if you want to send discord messages in your own scripts read further
This is the code for the Script Editor that sends a message to this channel
Code:
_HTTPPost=http://subvanillatool.com/discord.php,url=YOURWEBHOOKURL&message=YOURMESSAGE;
Replace "YOURWEBHOOKURL" with the URL you copied at the last image
Replace "YOURMESSAGE" with your message, of course you can also send variables that you use inside the script
Example:
Code:
#IF=%FirstTime,;
#SetVar=Webhook,Enter your Webhook URL;
#SetVar=Message,Enter your Message that should be send;
#ENDIF
_HTTPPost=http://subvanillatool.com/discord.php,url=%Var[Webhook]&message=%Var[Message];
Now just get the Discord app on your phone and enable notifications for your server
|
|
|
03/15/2019, 17:03
|
#2232
|
elite*gold: 0
Join Date: Aug 2017
Posts: 12
Received Thanks: 0
|
Hi Para
Does the starter class script work with the current patch ? since they did streamline leveling by a hell lot.
|
|
|
03/15/2019, 17:40
|
#2233
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
|
Quote:
Originally Posted by Reiido
Hi Para
Does the starter class script work with the current patch ? since they did streamline leveling by a hell lot.
|
I remade the 1-10 script when 6.0 came out, so yes it works very well
|
|
|
03/17/2019, 00:19
|
#2234
|
elite*gold: 0
Join Date: Aug 2017
Posts: 12
Received Thanks: 0
|
Quote:
Originally Posted by Paraly
I remade the 1-10 script when 6.0 came out, so yes it works very well
|
ah ok, another question then. Do you have a script that allow the ability for bidding on stuff ? cuz i really do not like broker fees
|
|
|
03/17/2019, 00:24
|
#2235
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,609
Received Thanks: 1,596
|
Quote:
Originally Posted by Reiido
ah ok, another question then. Do you have a script that allow the ability for bidding on stuff ? cuz i really do not like broker fees
|
Sure, you find the Bid Enabler script inside the Short Script Bundle
|
|
|
Similar Threads
|
Script para todos os Lastchaos - Autohokey
01/29/2012 - Last Chaos - 1 Replies
I got a script that clicks several times with the click right mouse clicks when monster picks up the tarjeta. so he just throws the skill.
I used AutoHotkey program. in AutoHotkey - Free Mouse and Keyboard Macro Program with Hotkeys and AutoText
Needs improvement.
I accept any help.
I'm from Brazil.
------------------------------------------------- --------------------------
|
[Release]Big Script Library
07/25/2010 - SRO PServer Guides & Releases - 0 Replies
I think its a good idea to open this Topic.
I need Your Help.
Sent me your own made Scripts and i upload them here.
It does not matter if there is already a script by the mob.
Only Self made scripts!!!
What To Post?
Post me not the text file.Post me the script!!!
Scorpion 1 by Th3Stalker
|
All times are GMT +1. The time now is 15:02.
|
|