Problems with AHK for RC Bot

11/15/2011 22:17 Arthys#1
I have some problems with creating a bot for rc. I wrote this:

$Alt::Send, {SPACE}3{SPACE}

But this command only works in chat :(
How do I make it work in game ??
Can you write the command so that it works and is run with the key "alt"?
Thx :cool:
11/16/2011 14:58 KiB4#2
Quote:
Originally Posted by Arthys View Post
I have some problems with creating a bot for rc. I wrote this:

$Alt::Send, {SPACE}3{SPACE}

But this command only works in chat :(
How do I make it work in game ??
Can you write the command so that it works and is run with the key "alt"?
Thx :cool:
I dont think that someone will do this for u. Just search on google for some tutorials for ahk.. It is very easy to use.
11/16/2011 15:08 ƒr६६zเภğ#3
PHP Code:
HotKeySet("!","_start")

Func _start()
    
Send("{space}")
    
Send("3")
    
Send("{space}")
EndFunc 
11/16/2011 22:09 Arthys#4
Quote:
Originally Posted by ƒr६६zเภğ View Post
PHP Code:
HotKeySet("!","_start")

Func _start()
    
Send("{space}")
    
Send("3")
    
Send("{space}")
EndFunc 
Your script gives me this error: :(
[Only registered and activated users can see links. Click Here To Register...]
thank you anyway :)
11/17/2011 12:34 Me'#5
This is for [Only registered and activated users can see links. Click Here To Register...] and not to Autohotkey. Sry my English is very bad!
11/17/2011 16:56 mipez#6
AutoHotkey is based on AutoIt, same structure.
So just transcribe it.