Skip to content

Instantly share code, notes, and snippets.

@matrixfox
Created August 20, 2015 18:19
Show Gist options
  • Save matrixfox/7e56be4e162f0521edcf to your computer and use it in GitHub Desktop.
Save matrixfox/7e56be4e162f0521edcf to your computer and use it in GitHub Desktop.
AutoHotkey RapidFire
#NoEnv
#SingleInstance force
SendMode Input
Numpad0::Suspend ;
Lbutton::
Loop
{
GetKeyState, state, Lbutton, P
if state=U
break
Sendinput {Click down}
Sleep 35
Sendinput {Click up}
Sleep 35
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment