Skip to content

Instantly share code, notes, and snippets.

@kudorgyozo
Last active February 12, 2023 21:38
Show Gist options
  • Save kudorgyozo/f979a372fb8ab580a7ec6623f1b000d3 to your computer and use it in GitHub Desktop.
Save kudorgyozo/f979a372fb8ab580a7ec6623f1b000d3 to your computer and use it in GitHub Desktop.
shake of zombies in RE1
#Requires AutoHotkey v2.0
~g::
{
slp := 6
del := 3
while GetKeyState("g")
{
Send "{w down}"
sleep slp
Send "{w up}"
sleep del
Send "{d down}"
sleep slp
Send "{d up}"
sleep del
Send "{s down}"
sleep slp
Send "{s up}"
sleep del
Send "{a down}"
sleep slp
Send "{a up}"
sleep del
Send "{space down}"
sleep slp
Send "{space up}"
sleep del
Send "{Numpad8 down}"
sleep slp
Send "{Numpad8 up}"
sleep del
Send "{Numpad4 down}"
sleep slp
Send "{Numpad4 up}"
sleep del
Send "{Numpad5 down}"
sleep slp
Send "{Numpad5 up}"
sleep del
Send "{Numpad6 down}"
sleep slp
Send "{Numpad6 up}"
sleep del
}
}
#SuspendExempt
^`::Suspend ; Ctrl+`
#SuspendExempt False
;Resident Evil / biohazard HD REMASTER
;RE_BHD
/*
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment