lolop99 Posted May 9, 2014 Posted May 9, 2014 anyone know 100% safe virus free auto hotkeyer?macro program? i need it for a game every 4 minutes hit two times the "home" key
Eliot Posted May 9, 2014 Posted May 9, 2014 http://www.autohotkey.com/ This may help, it would also be easy to make yourself!
Swizzbeat Posted May 9, 2014 Posted May 9, 2014 www.osbot.org I heard it has some decent scripts for rs but idk
lolop99 Posted May 9, 2014 Author Posted May 9, 2014 ? this not for rs another game,create me one: every 4 minutes hit 2x times the "home" key
ItzMe Posted May 9, 2014 Posted May 9, 2014 (edited) i don't know how to set up xd You serious? Go to download and use the installer. Then for the script it will be something like this: +Esc:: ;Press Shift + esc to stop BreakLoop = 1 return +F1:: ;Press Shift + F1 to start Loop { if(BreakLoop = 1) break send {Home} sleep 50 send {Home} sleep 240000 } BreakLoop = 0 return I really don't know what the home key ID is, you'll have to find that out on your own and replace HOMEKEY with whatever it is, but this is what it will end up looking like. Apparently it's just Home. Edited May 9, 2014 by ItzMe
lolop99 Posted May 9, 2014 Author Posted May 9, 2014 You serious? Go to download and use the installer. Then for the script it will be something like this: +Esc:: ;Press Shift + esc to stop BreakLoop = 1 return +F1:: ;Press Shift + F1 to start Loop { if(BreakLoop = 1) break send {Home} sleep 50 send {Home} sleep 240000 } BreakLoop = 0 return I really don't know what the home key ID is, you'll have to find that out on your own and replace HOMEKEY with whatever it is, but this is what it will end up looking like. Apparently it's just Home. this code is for every 4 minutes 2x times home ?