Quote:
Originally Posted by Flylower
For the follower script, how would i get it to use word of instigation? I see "ID" 's by numerous skills, but not sure if that is of pertinence. Another thing I noticed, is the program doesn't follow me at all, just once during the program loop. On the chanter, he keeps turning his mantras off every other cycle. I could be doing it incorrectly, not sure. Thanks in advance
|
copy this above the "WORD OF PROTECTION" part
Code:
_IFMemPtrRead=%TargetBase,0x378/0x44,BYTE,>0;
#IF=%Timer=1908,60000; <-- Word of Instigation
#DO=650;
UseID=1908;
_UNTILMemRead=0x1573070,WORD,=1908;
_IFMemRead=0x1573070,WORD,=1908;
CreateTimer=1908;
MemWrite=0x1573070,0,WORD;
#DO=700;
Delay=50;
_UNTILMemPtrRead=%PlayerBase,0x378/0x1588,DWORD,>0;
#DO=300;
Delay=50;
_UNTILMemPtrRead=%PlayerBase,0x378/0x1588,DWORD,=0;
#ENDIF
Which class are you playing?
You could try to close all Aion clients and delete the "Chat.log" file inside your Aion dir, and try the script again.
Quote:
Originally Posted by baileyerw
I wanted to make the follower script a little smarter. Rather than /follow target id like for it to go to the master whenever he is > than say 10m away.
so if _IFMemPtrRead=%TargetBase,0x378/0x44,BYTE is the masters health, what is the masters position?
I dont have an updated offset list, I know how to use CE and get the values that I want, but as you know, building a complete Cheat Table from scratch is a pain in the ass.
|
You should use /attack then instead of /follow
Code:
#IF=%TargetDistance,<10;
Command=/attack;
#ELSE
SendKey=0x41;<- Sends the key "A" to stop movement
#ENDIF