Better Rapid Fire (AHK Script)

Posts 18 of 8 · Page 1 of 1
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?
Quote Originally Posted by ragecrysux View Post
Could you elaborate why is this better?
Because the script the other guy made hasn't got a toggle. Pressing LMB would always rapid fire, whereas this script allows you to turn it off when you don't want it on.

Also, "*~$LButton::" makes it so the key will function when the rapid fire is off. I've used Mouse4 before for a script and while it was running (but lets say it was bound to rapid fire) mouse4 wouldn't function for normal use, such as going back a page on chrome even though (rapid fire or some other function) wasn't enabled to function when pressing Mouse4.
and why do you advice against using an .exe ?
Isnt the gaming searchin for exe's
I think that this is much more safer
What's' the $L Button?
Posts 18 of 8 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?