Results 1 to 15 of 48

Threaded View

  1. #1
    digi7al's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    15
    My Mood
    Drunk

    BO2 Rapid Fire + Antirecoil - UNDETECTED [AutoHotkey Script]

    This is my first post (and release) to MPGH, but I am not new to the game.

    This is an undetectable Rapid Fire + Antirecoil script for AutoHotkey. If you don't know what AutoHotkey is, it's a powerful mouse and keyboard macro program that is free... Google it, and install it.

    After you have installed AutoHotkey create a new file in Notepad and paste the code below. Save the file as an .ahk file. It can be named whatever you want. (Example: BO2RF.ahk)

    Code:
    ; BO2 Rapid Fire + Antirecoil by Digi7aL
    
    #NoEnv
    SendMode Input
    
    _auto := true
    
    ~LButton::autofire()
    Numlock::_auto := ! _auto
    F1::ExitApp
    
    autofire()
    {
    global _auto
    if _auto
    {
    Loop
    {
    if GetKeyState("LButton", "P")
    {
    SendInput {LButton DownTemp}
    Sleep 25
    mouseXY(0, 0)
    SendInput {LButton Up}
    Sleep 25
    }
    else
    break
    } ;; loop
    } ;; if
    } ;; autofire()
    
    mouseXY(x,y)
    {
    DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
    }
    Simply double click your newly created file to run it in AutoHotkey.

    NumLock will toggle the script on and off.

    By default, Antirecoil is not activated. To increase Antirecoil, edit the second 0 in the line "mouseXY(0, 0)"

    Example:
    mouseXY(0, 0) = Stock recoil
    mouseXY(0, 1) = Low Antirecoil
    mouseXY(0, 2) = Moderate Antirecoil
    mouseXY(0, 3) = High Antirecoil

    If you find that the Rapid Fire is causing your weapon to lock up or jam (it shouldn't but you never know), try increasing the number by 5 on both lines that say "Sleep 25" until you get a smooth Rapid Fire.

    Example:
    Sleep 25
    Sleep 30
    Sleep 35

    ect...

  2. The Following 14 Users Say Thank You to digi7al For This Useful Post:

    -Panda- (11-30-2012),blazerrazer (02-03-2013),Derp13377 (10-09-2015),icomiics (09-28-2019),keyuchu (11-30-2012),LiteFang (02-19-2013),Louissss (03-07-2018),Manupunk163 (07-29-2014),moin54321 (10-25-2018),Soranger (11-30-2012),SpaceGray_ (12-11-2018),thebabykapz (04-14-2013),wasweissichamk (08-04-2019),Weho (12-02-2012)

Similar Threads

  1. [Release] New Rapid Fire Script with Source Code
    By DahInternetz in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 8
    Last Post: 08-24-2011, 05:10 PM
  2. [Request] Rapid Fire script
    By Mentally in forum Alliance of Valiant Arms (AVA) Discussions
    Replies: 0
    Last Post: 01-17-2011, 12:54 PM
  3. [Release] ULTIMATE RAPID FIRE NO INSTAL UNDETECTABLE
    By craniac in forum Call of Duty 6 - Modern Warfare 2 (MW2) Hacks
    Replies: 7
    Last Post: 04-08-2010, 03:16 PM
  4. Simple AutoHotKey Pistol Rapid Fire
    By .:AsianTim:. in forum Combat Arms Hacks & Cheats
    Replies: 74
    Last Post: 09-27-2009, 10:07 PM
  5. Simple AutoHotKey Rapid Fire
    By .:AsianTim:. in forum Combat Arms Hacks & Cheats
    Replies: 16
    Last Post: 08-17-2009, 02:52 AM