Skip to content

Instantly share code, notes, and snippets.

@hym3242
Created March 31, 2024 20:50
Show Gist options
  • Save hym3242/7fd22b21cbf2267a22ea70c4a60cc099 to your computer and use it in GitHub Desktop.
Save hym3242/7fd22b21cbf2267a22ea70c4a60cc099 to your computer and use it in GitHub Desktop.
PressSpace.ahk for plane grabbing in Battlefield 1
#Persistent
SetTimer, PressSpaceIfBF1, 7
Return
PressSpaceIfBF1:
IfWinActive, ahk_exe bf1.exe
{
Send, {Space down}
Sleep, 10
Send, {Space up}
}
Return
Numpad0::Pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment