Skip to content

Instantly share code, notes, and snippets.

@Au1st3in
Last active September 1, 2023 17:03
Show Gist options
  • Save Au1st3in/ed55e9a256b1f35c14ee48f5f24660de to your computer and use it in GitHub Desktop.
Save Au1st3in/ed55e9a256b1f35c14ee48f5f24660de to your computer and use it in GitHub Desktop.
DayZ AutoRun AutoHotKey Script with NumLock Toggle
#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
@tolsadus
Copy link

The real MVP 👍

@verkro
Copy link

verkro commented Sep 11, 2022

great

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment