Better Rapid Fire (AHK Script)
Use at your OWN risk. I've used this in CSGO, but I personally wouldn't use it in H1Z1.
Code:
RapidFire = 0
F13::
RapidFire := !RapidFire
;SoundPlay, %A_ScriptDir%\AnyMP3.mp3
Hotkey, *~$LButton
return
*~$LButton::
While RapidFire{
loop {
GetKeyState, state, LButton, P
if state = U
break
Click
}
}
return
Toggles on and off. Change F13 to whatever you wish.
Requires AHK to be downloaded. Put this script in a .ahk file, and run. I advise against using an .exe Could you elaborate why is this better?