this is a travel macro I made
Posted: Sun Dec 14, 2014 8:23 pm
As a person that 2-boxes quite a bit I was tired of changing windows
all the time going from one zone to another just to tell the toon to follow
so I modified the auto follow macro to where now all I do is run through the zone (as in neriak with all the gates) and the person that I want to follow will auto lock onto me and resume following
I hope that whoever uses this macro finds it as useful as I did
just change where it says whoever to the person you wish to follow
enjoy
all the time going from one zone to another just to tell the toon to follow
so I modified the auto follow macro to where now all I do is run through the zone (as in neriak with all the gates) and the person that I want to follow will auto lock onto me and resume following
Code: Select all
#turbo
Sub Main
:Start
/keypress up
/goto :Run
:Run
/face fast
/keypress up hold
/if (${Target.Distance}<15) /goto :Stop
/if (!${Target.ID}) /goto :Aquire
/if (${Target.ID}) /goto :Run
:Loop
/face fast
/if (!${Target.ID}) /goto :Aquire
/if (${Target.Distance}>10) /goto :Start
/if (${Target.Distance}<15) /goto :Stop
/goto :Loop
:Stop
/keypress down
/goto :Loop
:Aquire
/target whoever
/if (!${Target.ID}) /delay 5
/if (${Target.ID}) /goto :Loop
/goto :Aquire
/return
just change where it says whoever to the person you wish to follow
enjoy