[Request]

11/03/2010 23:11 gimpy14#1
i've been having trouble making a successful bot and its got me depressed for today, i was wondering if someone could help me out by telling me a so that it pushes tab then 4 seconds later it pushes 1 and repeats the pattern :D

or give me one similar so i can use something as reference, thank you :rolleyes:
11/04/2010 00:11 ~De@dly Silence~#2
Quote:
Originally Posted by gimpy14 View Post
i've been having trouble making a successful bot and its got me depressed for today, i was wondering if someone could help me out by telling me a so that it pushes tab then 4 seconds later it pushes 1 and repeats the pattern :D

or give me one similar so i can use something as reference, thank you :rolleyes:
You want only this two keys? Then it could be...

Code:
While 1
send("{TAB}")
sleep(4000)
send("1")
WEnd
11/04/2010 05:10 gimpy14#3
hm i had something along the lines but i dont know exactly how to implement it into the game what i had was, any ideas on putting it in game


Quote:
; Script Start - Add your code below here
HotKeySet("{F12}","Start")
HotKeySet("{ESC}", "Terminate")

While 1

WEnd

Func Start()
While 1
Sleep(1000)
Send("{TAB}")
Sleep(1500)
Send("1")
Sleep(10000)
Wend
EndFunc

Func Terminate()
Exit 0
EndFunc