Last active
December 27, 2024 14:40
-
-
Save Au1st3in/ed55e9a256b1f35c14ee48f5f24660de to your computer and use it in GitHub Desktop.
DayZ AutoRun AutoHotKey Script with NumLock Toggle
This file contains hidden or 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 | |
SendMode Input | |
#IfWinActive, DayZ | |
SetNumlockState, off | |
~NumLock:: | |
if (GetKeyState("NumLock", "T")) { | |
Send, {lshift Down} | |
Send, {w Down} | |
} else { | |
Sleep, 50 | |
Send, {lshift up} | |
Send, {w up} | |
} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The real MVP 👍