question in autoit

04/08/2010 23:17 Matic^#1
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?
04/09/2010 10:41 Shadow992#2
Quote:
Originally Posted by Matic^ View Post
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 :
PHP Code:
HotKeySet("^a","Test")

while 
1
    sleep
(222)
WEnd

Func Test
()
Send("Hello")
endfunc 
04/09/2010 16:36 Matic^#3
wow that awesome, one more thing how to make it after he write that "hello" he press enter, and send like some lines of text?
04/09/2010 18:06 Banana.Crafts#4
Send("{ENTER}")
04/09/2010 18:40 Shadow992#5
Quote:
Originally Posted by Matic^ View Post
wow that awesome, one more thing how to make it after he write that "hello" he press enter, and send like some lines of text?
PHP Code:
HotKeySet("^a","Test")

while 
1
    sleep
(222)
WEnd

Func Test
()
    
Send("Hello{Enter}")
endfunc