NumLock is bound to backslash: \
Created
November 8, 2016 01:08
-
-
Save selimb/ce81876afa3a63241f0abb6e319223a0 to your computer and use it in GitHub Desktop.
Fixing shift modified with Razer Naga for World of Warcraft
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetNumLockState, Off | |
NumLock::\ | |
NumpadEnd::Numpad1 | |
NumpadDown::Numpad2 | |
NumpadPgDn::Numpad3 | |
NumpadLeft::Numpad4 | |
NumpadClear::Numpad5 | |
NumpadRight::Numpad6 | |
NumpadHome::Numpad7 | |
NumpadUp::Numpad8 | |
NumpadPgUp::Numpad9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment