Page 1 of 1

Stupid Question: RB Assist: Loop ingame macro?

Posted: Tue Mar 08, 2011 12:44 am
by Ascendency4
i was working on a 1 on 1 rogue/priest party bot who's sole purpose is to follow around my other characters in stealth and heal them should there heal go down.


im attempting to use the RB Assist waypoint but ive run into some difficulty.


im using a ingame macro to follow my non-botting character and monitor its health and i need to cast this macro aprox. every second.

im 95% sure theres a very simple very obvious way to force the bot to push this macro every second or so. but digging around i couldnt find it.

any tips?

Re: Stupid Question: RB Assist: Loop ingame macro?

Posted: Tue Mar 08, 2011 5:44 am
by Administrator
You could add this to the onLoad event:

Code: Select all

function pressSomeKey()
  keyboardPress(key.VK_1); -- press the 1 key
end
registerTimer("timedkeypress", secondsToTimer(1), pressSomeKey);