hello, i wanna make bot, which let me send some text when i press some hotkey, like i press crtl+a and it send in mine game client hello, is that possible to do?
Sure that is possible :Quote:
hello, i wanna make bot, which let me send some text when i press some hotkey, like i press crtl+a and it send in mine game client hello, is that possible to do?
HotKeySet("^a","Test")
while 1
sleep(222)
WEnd
Func Test()
Send("Hello")
endfunc