Hey, this is the script that i am trying to use, tho its not working. Trying to change to WASD for movement, also Numpad0 witch usually activates the map i want as q instead, easier to reach. Also A witch is attack as you go change it to Capslock instead of A.
#IfWinActive, Company Of Heroes
a::
Send, {Left down}
Keywait, a ; send once
Send, {Left up}
return
s::
Send, {Down down}
Keywait, s ; send once
Send, {Down up}
return
d::
Send, {Right down}
Keywait, d ; send once
Send, {Right up}
return
^!z::
WinSet, Style, -0xC40000, a
WinMove, a, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
`::Suspend
Return
When i start the game, i press CTRL + ALT + Z. The border disappears, but the hotkeys dont activate. Anyone care to either help or share a hotkey set similar?
I also tried this
#IfWinActive, Company Of Heroes
w::up
a::left
s::down
d::right
capslock::a
q::Numpad0
^!z::
WinSet, Style, -0xC40000, a
WinMove, a, , 0, 0, % A_ScreenWidth, % A_ScreenHeight
`::Suspend
Return
I am no coder, but i read about this in other forums and reddit. Thanks for the help.