Recommendation: Wireless Numpad + AutoHotKey (to remap the keys)

ewigpfad

Newbie
May 4, 2020
29
52
137
plus this type of thing:

gallery-02.png
Usually controls become bothersome whenever I play a game that requires more than just a mouse. And that happens quite often as I play mostly RPGM games.
Using a Numpad with AHK solved that problem.

AutoHotKey let's you freely remap all keys. I turn the Numpad sideways for better comfort.
You customize the keymapping by basically writing simple text files. I just use Windows Notepad.
But don't use it with Num Lock on! That will cause issues.

This is what my files for most RPGM MV & MZ games look like:

*Backspace::Esc
*NumpadRight::SendEvent('{Left down}')
*NumpadRight up::SendEvent('{Left up}')
*NumpadUp::SendEvent('{Up down}')
*NumpadUp up::SendEvent('{Up up}')
*NumpadMult::SendEvent('{Right down}')
*NumpadMult up::SendEvent('{Right up}')
*NumpadPgUp::SendEvent('{Down down}')
*NumpadPgUp up::SendEvent('{Down up}')
*NumpadLeft::F4
*NumpadEnd::F5
*NumpadAdd::LShift
*NumpadSub::LCtrl

 
Last edited:
  • Like
Reactions: hitob86140