Results 1 to 8 of 8
  1. #1
    Le3chX's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    57
    Reputation
    10
    Thanks
    118

    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
    Last edited by Le3chX; 10-11-2015 at 06:27 PM.

  2. #2
    ragecrysux's Avatar
    Join Date
    Dec 2012
    Gender
    female
    Posts
    202
    Reputation
    10
    Thanks
    6
    Could you elaborate why is this better?

  3. #3
    Le3chX's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    57
    Reputation
    10
    Thanks
    118
    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.
    Last edited by Le3chX; 10-19-2015 at 09:04 AM.

  4. #4
    lasiniai's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    Alk
    Posts
    21
    Reputation
    10
    Thanks
    1
    My Mood
    Asleep
    #NoEnv
    #InstallMouseHook
    #InstallKeybdHook

    home::Suspend
    LButton::
    Loop
    {
    SetMouseDelay 14
    Click
    If (GetKeyState("LButton","P")=0)
    Break
    }

    i think it much better. delay chose on your own

  5. #5
    teo_ciber_clop's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    4
    My Mood
    Relaxed
    and why do you advice against using an .exe ?

  6. #6
    TesterS0nic's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Location
    Pullach im Isartal
    Posts
    87
    Reputation
    10
    Thanks
    5
    My Mood
    Relaxed
    Isnt the gaming searchin for exe's
    I think that this is much more safer

  7. #7
    BronzyFuT's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    0
    What's' the $L Button?

  8. #8
    jhowzao2's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    it's working?

Similar Threads

  1. [Release] ** BHOP AND RAPID FIRE ** [AHK SCRIPT] - UNDETECTED!
    By artzyhswag in forum Counter-Strike 2 Coding & Resources
    Replies: 26
    Last Post: 12-19-2017, 02:26 PM
  2. [Solved] Rapid Fire AHK Detectable?
    By jamay18 in forum Counter-Strike 2 Help
    Replies: 1
    Last Post: 07-24-2015, 03:00 AM
  3. [Release] CSGO Rapid Fire AHK SCRIPT
    By Versecious in forum Counter-Strike 2 Coding & Resources
    Replies: 1
    Last Post: 06-07-2015, 12:41 PM
  4. AWP QuickShot/Rapid Fire AHK
    By TheLittleRaven in forum Counter-Strike 2 Discussions
    Replies: 0
    Last Post: 08-03-2014, 02:23 PM
  5. MW2 Rapid fire hacks/script not working....
    By Mocklee in forum Call of Duty Modern Warfare 2 Help
    Replies: 1
    Last Post: 07-21-2012, 05:12 PM