Page 1 of 1

Bind arrow keys to WASD keys at the same time?

Posted: 06 Sep 2020, 19:12
by jojjjjjj
Currently, I'm playing a two-player game, where each character is controlled by WASD and the arrow keys. i want to control BOTH characters at the same time, only using the arrow keys. is there a way to set the arrow keys to WASD without removing their original functionality at the same time?

Re: Bind arrow keys to WASD keys at the same time?

Posted: 07 Sep 2020, 03:02
by DyaTactic
I belive you need the tilde prefix. This retains the original function of the key and triggers the hotkey at the same time.

Code: Select all

~Left::a
~Right::d
~Up::w
~Down::s
I am not sure if the wasd-keys are properly held down this way though. Let me know if there is a problem.