my version of auto follow
Posted: Mon Dec 01, 2014 3:15 am
I searched a few times for follow.mac but for whatever reason I came up empty handed
so I made my own version it's not pretty nor elegant but it works
although I wish I knew how to turn it off once the target is gone
this is the first time I made a script instead of just twisting one around
I hope someone can find this helpful
and possibly tell me what to add to make the script stop once the target is gone
so I made my own version it's not pretty nor elegant but it works
although I wish I knew how to turn it off once the target is gone
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 :Run
:Loop
/face fast
/if (${Target.Distance}>10) /goto :Start
/if (${Target.Distance}<15) /goto :Stop
/if (${Target.ID}) /goto :Loop
:Stop
/face fast
/keypress down
/goto :Loop
/return
I hope someone can find this helpful
and possibly tell me what to add to make the script stop once the target is gone