DeadAdm1n 0 Posted August 29, 2010 (edited) Ok, im trying to write me a little bot for a game, what it is supposed to do, is hold my "2" key down for 30 seconds, release it, then wait 2 seconds, then send the "4" key 4x times I can get it to send the "2" key 2x times, then it hits the "4" key 4x times, it doenst hold the "2" down for 30 seconds then send the "4" key Here is my code so far. AutoItSetOption("WinTitleMatchMode", 4) $hwnd = WinGetHandle("classname=D3D Window") If @Error Then MsgBox(0, "LAWL", "It would help to open the program....") Else EndIf While 1 = 1 ControlSend($hwnd, "", "", "{2 down}") Sleep(30000) ControlSend($hwnd, "", "", "{2 down}") Sleep(2000) ControlSend($hwnd, "", "", "{4 down}") ControlSend($hwnd, "", "", "{4 down}") ControlSend($hwnd, "", "", "{4 down}") ControlSend($hwnd, "", "", "{4 down}") Wend any help is appreciated and thanks in advance(from most of the tutorials i have read, in the past 3 hours this is what i have gotten) The TOS Says no afk Splash, i wont be afk, i will be duel screening, and playing another game... so technically im not "AFK" Edited August 29, 2010 by DeadAdm1n Share this post Link to post Share on other sites
DeadAdm1n 0 Posted August 29, 2010 i think i may have found what im looking for but, can someone explain this code to me a little bit? $TimeStamp = TimerInit() ;Create timestamp While TimerDiff($TimeStamp) < 2000 ;While the timestamp is less than 2 seconds old, do this Send("x") WEnd Share this post Link to post Share on other sites
Fubarable 1 Posted August 29, 2010 Ok, im trying to write me a little bot for a game,...Have you read the forum FAQ and sticky notes? This one regarding game bots may apply to this thread: Game Bot Sticky NoteMuch luck! Share this post Link to post Share on other sites
DeadAdm1n 0 Posted August 29, 2010 (edited) Have you read the forum FAQ and sticky notes? This one regarding game bots may apply to this thread: Game Bot Sticky NoteMuch luck!yes i actually did read that sticky, you must have not have read the rest of my post, it says no AFK... i will be at my computer, i will be watching it. my time off = computer, when im away from the computer its off...Plus at least i was being honest... Edited August 29, 2010 by DeadAdm1n Share this post Link to post Share on other sites
DeadAdm1n 0 Posted August 29, 2010 never mind i got it to work, just the code is really really really sloppy check it out if u want http://pastebin.com/Cx6WquUd Share this post Link to post Share on other sites