Para's Script Library

08/18/2019 20:51 xcc80#2341
hello paral i have resat my pc and now my hack not working i have my old ID and the new ID how i seand you that?
08/20/2019 09:49 MiraFLo#2342
I'm the only one who falls down the stairs sometimes?[Only registered and activated users can see links. Click Here To Register...]
08/28/2019 01:32 mezorr#2343
hello any good script for lvl up tapping
08/28/2019 23:04 Diavolakos#2344
Quote:
Originally Posted by MiraFLo View Post
I'm the only one who falls down the stairs sometimes?[Only registered and activated users can see links. Click Here To Register...]
No that was a slight problem with the opening of the door, the character would walk way too front and he would fall down and then nothing else worked as intended, no aether would be used for turrets or anything else.

This is where most likely the problem occurs:

Code:
SendKey=0x43;
Delay=15;
SendKey=0x43;
Delay=125;
MoveSmooth=230,186; <-- this is what makes you fall
Delay=500;
#ENDIF
#UNTIL=%Position,230/186/x;
So change the script with this:
Code:
SendKey=0x43;
Delay=15;
SendKey=0x43;
Delay=125;
MoveSmooth=230,184; change 186 to 184
Delay=500;
#ENDIF
#UNTIL=%Position,230/184/x; and change this 186 to 184 as well
Now I haven't tested it completely, I have done my code for this part which requires a lot more to be altered later so for now just change the 186 to 184 and it should be enough.

Also give it a check when you run the script, I mean keep an eye on one character that goes in and see if the new position is good enough. If not put it to 183 and recheck.
08/31/2019 14:14 Paraly#2345
I added a new command to the Script Editor called _MemPattern

Code:
_MemPattern=[Pattern],[Offset],[Global],[Only Game.dll][custom start/end];
It searches for a Pattern/Array of Bytes in the memory of Aion, so knowledge about how to get these is required.

In the first argument comes the Byte Pattern
The second argument tells the offset it should take from the found pattern
The third argument either tells if it should find multiple results or stop at the first result, results get saved as dynamic variable like this
Code:
%Var[PatternRet_1]
%Var[PatternRet_2]
%Var[PatternRet_3]
%Var[PatternRet_4]
...
The fourth argument either tells if it should only search within the Game.dll area (True) or a certain distance like 0x1F000000/0x3F000000


Example

Code:
_MemPattern=C90134DF0A9307577896ECFBBE,13; // Kinah Server Pattern
_MemReadVar=%Var[PatternRet_1],DWORD,1;
WaitForResponse=Kinah: %Var1;
09/03/2019 01:48 mezorr#2346
how add fly on combat wizard?
09/05/2019 18:48 Shimizu20#2347
Quote:
Originally Posted by mezorr View Post
how add fly on combat wizard?
Code:
How to add a flight transporter:

1. At recording the return path go to the teleporter
2. Make sure Aion is in windowed mode and resized to the smallest window size possible
3. Target the teleporter, hit the "Delete" key
4. talk to the teleporter
5. hover your mouse over the teleport button, hit the "Delete" key
6. click on the teleport button
7. hover your mouse over the destination, hit the "Delete" key
8. click on the destination
9. hover your mouse over the OK button, hit the "Delete" key
10. click on OK
11. wait till you arrived at the destination, hit the "Delete" key
12. continue recording
09/19/2019 10:25 thangio119#2348
is there any script help me buy bundle from NPC legion seller in Larkrum fortress when I'm not from the Legion took the Fort?
09/19/2019 10:28 Paraly#2349
Quote:
Originally Posted by thangio119 View Post
is there any script help me buy bundle from NPC legion seller in Larkrum fortress when I'm not from the Legion took the Fort?
This should work for such cases
[Only registered and activated users can see links. Click Here To Register...]

However several people tried it already for the legion only NPC in lakrum fort and seems it doesn't work for any of them.
09/19/2019 10:57 thangio119#2350
Quote:
Originally Posted by Paraly View Post
This should work for such cases
[Only registered and activated users can see links. Click Here To Register...]

However several people tried it already for the legion only NPC in lakrum fort and seems it doesn't work for any of them.
Thanks, it seem doesn't work for me now, can't force the NPC sell item .
10/05/2019 12:57 xerofaith0#2351
Is there going to be a Stellin Laboratory script? There are enchantment stones in chests in the instance every run guaranteed. However, it requires four characters to open each time to spawn box. @[Only registered and activated users can see links. Click Here To Register...]
10/14/2019 03:20 lordhack3r#2352
Has a script been written for the HERLYN MINE dungeon yet? FROZEN MONOLITH and the new BASTION OF SOULS?

:D
11/23/2019 00:29 beakman13#2353
Any script for Herelym Mine solo?
11/23/2019 07:58 vklove#2354
i have a script to autodps the boss in primeths forge while floating in the air to avoid damage. The boss goes invisible and removes selection every so often. What do I add to the script to automatically to re-target the boss whenever she goes invisible, and to pause the script and stop attacking when she does this?
11/24/2019 10:35 Paraly#2355
Quote:
Originally Posted by vklove View Post
i have a script to autodps the boss in primeths forge while floating in the air to avoid damage. The boss goes invisible and removes selection every so often. What do I add to the script to automatically to re-target the boss whenever she goes invisible, and to pause the script and stop attacking when she does this?
Do you fight with the _AC combat system?

There's nothing to re-target inside the _AC combat system but you could do a loop

Code:
#DO=1200000;
Command=/select BossName;
Delay=55;
_AutoCombat=True;
_SetVar=temp,0;
_IFMemPtrRead=%TargetBase,%OffsetName,WCHAR[64],=BossName;
_Calc[temp]=%Var[temp]+1;
#ENDIF
_IFMemPtrRead=%TargetBase,%OffsetHP,DWORD,=0;
_Calc[temp]=%Var[temp]+1;
#ENDIF
#UNTIL=%Var[temp],>1;