WHRobin566 0 Posted May 26, 2005 sleep(60000) $m = 0 hotkeyset("{F1}", "M") hotkeyset("{F2}", "Ma") func M() $m = 1 endfunc func Ma() $m = 0 endfunc while 1 while $m = 1 send("{F4}") sleep(1000) Send("{ENTER}") sleep(500) Send("{ENTER}") sleep(500) Send("{ENTER}") sleep(500) Send("{ENTER}") sleep(500) Send("{ENTER}") sleep(500) Send("{ENTER}") sleep(1000) send("{F4}") sleep(220000) wend wend This works fine in notepad but when i try it on a game it don't do anything. It just sits there is there a way to make it work. I think the game is reseting hotkeys or somthing. Thats why i had it wait so i can start up game. But still it won't work. I did rember to press f1. Witch Hunter Robin Share this post Link to post Share on other sites
Blue_Drache 260 Posted May 26, 2005 CODEsleep(60000)$m = 0hotkeyset("{F1}", "M")hotkeyset("{F2}", "Ma")func M()$m = 1endfuncfunc Ma()$m = 0endfuncwhile 1while $m = 1send("{F4}")sleep(1000)Send("{ENTER}")sleep(500)Send("{ENTER}")sleep(500)Send("{ENTER}")sleep(500)Send("{ENTER}")sleep(500)Send("{ENTER}")sleep(500)Send("{ENTER}")sleep(1000)send("{F4}")sleep(220000)wendwendThis works fine in notepad but when i try it on a game it don't do anything. It just sits there is there a way to make it work. I think the game is reseting hotkeys or somthing. Thats why i had it wait so i can start up game. But still it won't work. I did rember to press f1. <{POST_SNAPBACK}>Have you tried starting it up AFTER you start the game? Or will it not let you alt-tab out?Try twarking with your Opt("SendKeyDownDelay",1) Default is 1, but that may be too fast for the game to pick up on. Try a down delay of 10, 20, or even 50.Also, try clearing the hotkey binds that you want through the game's normal interface. Make sure that F1 and F2 isn't used by the game. Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache Share this post Link to post Share on other sites
WHRobin566 0 Posted May 26, 2005 If you alt tab it quits game. The key delay doesn't work and you can't change or clear binds. Any other ideas? Witch Hunter Robin Share this post Link to post Share on other sites