Hi, trying to get used to this program as i can see the power it has. I'm very impressed and can see this becoming much more useful in the future once i learn the syntax
My request is wanting to move the arrow keys to the wsad keys for moving the map around. This gives me more control and better reach for the hotkeys.
I am then planning to move the hotkeys for the abilities to the qerf keys so they're under easy reach of the fingers.
The problem is with the wsad keys instead of the arrow keys. I have this code:
Code:
w::Send, {up}
s::Send, {down}
a::Send, {left}
d::Send, {right}
*enter::
Hotkey, w, toggle
Hotkey, s, toggle
Hotkey, a, toggle
Hotkey, d, toggle
Send, {enter}
return
This means that if i try and type then i can turn off the hotkeys. This looks like it should work but it doesn't, the map doesnt move. I have tested this code in notepad and it works fine but not in WC3.
If i type:
Code:
w::up
s::down
a::left
d::right
Then this works but i get an error when i press the enter button.
Can anyone shed some light on this situation?