Page 1 of 3 123 LastLast
Results 1 to 15 of 36
  1. #1
    Fortune-Miss's Avatar
    Join Date
    Oct 2019
    Gender
    female
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic

    Exclamation Recoil reduction script

    Does anyone have a script to decrease recoil and want to share? Some Logitech script.

  2. #2
    RedFeather's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    180
    Reputation
    10
    Thanks
    19
    My Mood
    Busy
    #NoEnv
    #InstallKeybdHook
    #InstallMouseHook
    #UseHook
    #SingleInstance, Force






    version = 1.0
    traytip, MPGH %version%, Running in background!, 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, MPGH %version%
    Menu, tray, Add, Help, info
    Info:
    Msgbox, 0, MPGH %version%, /////F3 Toggles On|Off\\\\\/////End ExitsApp\\\\\ ----------Made by RedManMosh---------



    F3::Toggle:=!Toggle


    SetBatchLines, -1

    End::
    SoundBeep, 600
    KeyWait, End, P
    SoundBeep, 550
    ExitApp
    Return


    ~$*LButton::

    Loop
    {
    If (Toggle)
    {
    While Toggle and GetKeyState("LButton","P")
    {
    SetMouseDelay 40
    mouseXY(0, 6)
    Click
    }
    }Else{
    break
    }
    }



    mouseXY(x,y)
    {
    DllCall("mouse_event", "UInt", 0x01, "UInt", x, "UInt", y)
    }
    Return

    ;--//Change SetMouseDelay & the (x,y). If you dont want RapidFire take away the Click\\----
    Last edited by RedFeather; 03-09-2020 at 10:31 PM.

  3. The Following 2 Users Say Thank You to RedFeather For This Useful Post:

    NoNameAvenue (04-12-2020),Zorkanne (03-31-2020)

  4. #3
    Brebro's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    2
    My Mood
    Inspired
    Quote Originally Posted by RedFeather View Post
    #NoEnv
    #InstallKeybdHook
    #InstallMouseHook
    #UseHook
    #SingleInstance, Force...
    Just wondering, this looks like an AHK script. Is there some special way to launch it to not get banned? Last I heard, scripts were detectable. I heard someone being able to run in through a vm but I don't know which one or how, if you know could you let me know? Tanks!

  5. #4
    RedFeather's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    180
    Reputation
    10
    Thanks
    19
    My Mood
    Busy
    Quote Originally Posted by Brebro View Post
    Just wondering, this looks like an AHK script. Is there some special way to launch it to not get banned? Last I heard, scripts were detectable. I heard someone being able to run in through a vm but I don't know which one or how, if you know could you let me know? Tanks!
    Ive been using a version of this my self for months now, if compiled they are fine. The VM Protection is just to protect source code, when i use that it flags my .exe as a virus. Compile it and your all good.

  6. #5
    Brebro's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    2
    My Mood
    Inspired
    Ok, cool. I'm guessing when it says to change the mouse x y and the mousedelay is based on which gun?
    Edit: and by vompile do you mean AHK's own ahk -> exe? or just right click and compile?
    Last edited by Brebro; 03-10-2020 at 09:30 PM.

  7. #6
    RedFeather's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    180
    Reputation
    10
    Thanks
    19
    My Mood
    Busy
    Right change the x,y and SetMouseDelay based on your gun. I use the ahk2exe compiler, I like the custom icons you can give a .exe
    Last edited by RedFeather; 03-11-2020 at 08:50 AM.

  8. #7
    RedFeather's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    180
    Reputation
    10
    Thanks
    19
    My Mood
    Busy
    ;-----FOR THOSE WHO ONLY WANT ANTI-RECOIL------


    #NoEnv
    #InstallKeybdHook
    #InstallMouseHook
    #UseHook
    #SingleInstance, Force






    version = 1.0
    traytip, MPGH %version%, Running in background!, 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, MPGH %version%
    Menu, tray, Add, Help, info
    Info:
    Msgbox, 0, MPGH %version%, /////F3 Toggles On|Off\\\\\/////End ExitsApp\\\\\ ----------Made by RedManMosh---------



    F3::Toggle:=!Toggle


    SetBatchLines, -1

    End::
    SoundBeep, 600
    KeyWait, End, P
    SoundBeep, 550
    ExitApp
    Return


    ~$*LButton::

    Loop
    {
    If (Toggle)
    {
    While Toggle and GetKeyState("LButton","P")
    {
    Sleep 10
    mouseXY(0, 6)
    ;Click
    }
    }Else{
    break
    }
    }



    mouseXY(x,y)
    {
    DllCall("mouse_event", "UInt", 0x01, "UInt", x, "UInt", y)
    }
    Return

    ;--//Change the (x,y) based on how much recoil compensation you need\\--
    Last edited by RedFeather; 03-20-2020 at 09:33 AM.

  9. The Following User Says Thank You to RedFeather For This Useful Post:

    cuhris (03-24-2020)

  10. #8
    cuhris's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    126
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by RedFeather View Post
    -
    Could you make it so the script only works when ADS (right click)? (so we don't have recoil reduction when hipfiring)

    I use toggle ADS not hold btw if that makes a difference

  11. #9
    Lightbrand's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    6
    Change F3 to RMouse or some shit

  12. #10
    BrevinB's Avatar
    Join Date
    Mar 2020
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by RedFeather View Post
    ;-----FOR THOSE WHO ONLY WANT ANTI-RECOIL------


    #NoEnv
    #InstallKeybdHook
    #InstallMouseHook
    #UseHook
    #SingleInstance, Force






    version = 1.0
    traytip, MPGH %version%, Running in background!, 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, MPGH %version%
    Menu, tray, Add, Help, info
    Info:
    Msgbox, 0, MPGH %version%, /////F3 Toggles On|Off\\\\\/////End ExitsApp\\\\\ ----------Made by RedManMosh---------



    F3::Toggle:=!Toggle


    SetBatchLines, -1

    End::
    SoundBeep, 600
    KeyWait, End, P
    SoundBeep, 550
    ExitApp
    Return


    ~$*LButton::

    Loop
    {
    If (Toggle)
    {
    While Toggle and GetKeyState("LButton","P")
    {
    Sleep 10
    mouseXY(0, 6)
    ;Click
    }
    }Else{
    break
    }
    }



    mouseXY(x,y)
    {
    DllCall("mouse_event", "UInt", 0x01, "UInt", x, "UInt", y)
    }
    Return

    ;--//Change the (x,y) based on how much recoil compensation you need\\--
    how do you know what to set mouse delay and xy to? just trial and error?

  13. #11
    leafranger's Avatar
    Join Date
    Mar 2020
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0

    Unhappy

    don't know you guys but it got detected

  14. #12
    RedFeather's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    180
    Reputation
    10
    Thanks
    19
    My Mood
    Busy
    Quote Originally Posted by BrevinB View Post
    how do you know what to set mouse delay and xy to? just trial and error?
    Right. Just experiment and see what works for you..

  15. #13
    Prosinecki's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by RedFeather View Post
    #NoEnv
    #InstallKeybdHook
    #InstallMouseHook
    #UseHook
    #SingleInstance, Force






    version = 1.0
    traytip, MPGH %version%, Running in background!, 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, MPGH %version%
    Menu, tray, Add, Help, info
    Info:
    Msgbox, 0, MPGH %version%, /////F3 Toggles On|Off\\\\\/////End ExitsApp\\\\\ ----------Made by RedManMosh---------



    F3::Toggle:=!Toggle


    SetBatchLines, -1

    End::
    SoundBeep, 600
    KeyWait, End, P
    SoundBeep, 550
    ExitApp
    Return


    ~$*LButton::

    Loop
    {
    If (Toggle)
    {
    While Toggle and GetKeyState("LButton","P")
    {
    SetMouseDelay 40
    mouseXY(0, 6)
    Click
    }
    }Else{
    break
    }
    }



    mouseXY(x,y)
    {
    DllCall("mouse_event", "UInt", 0x01, "UInt", x, "UInt", y)
    }
    Return

    ;--//Change SetMouseDelay & the (x,y). If you dont want RapidFire take away the Click\\----


    So, I'm new to this kind of hack/script, what I'm supposed to do with this?

  16. #14
    Lightbrand's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    56
    Reputation
    10
    Thanks
    6
    I'm just curious how does your rapid fire + anti recoil script work on an auto gun if you don't turn rapid fire off? Does it fire the same or different?

  17. #15
    RedFeather's Avatar
    Join Date
    Nov 2019
    Gender
    male
    Posts
    180
    Reputation
    10
    Thanks
    19
    My Mood
    Busy
    - - - Updated - - -

    Quote Originally Posted by Prosinecki View Post
    So, I'm new to this kind of hack/script, what I'm supposed to do with this?
    Compile it

    - - - Updated - - -

    Quote Originally Posted by Lightbrand View Post
    I'm just curious how does your rapid fire + anti recoil script work on an auto gun if you don't turn rapid fire off? Does it fire the same or different?
    The same way it does if you leave the rapid fire on........... it just wont fire automatically

Page 1 of 3 123 LastLast

Similar Threads

  1. [Request] FAL rapid fire/ recoil reduction script
    By only_zuul in forum Call of Duty 16 - Modern Warfare
    Replies: 14
    Last Post: 12-15-2020, 10:29 PM
  2. [Release] AHK Scripts | Super Simple Recoil Reduction |
    By Vendetta773 in forum Counter-Strike 2 Scripts
    Replies: 21
    Last Post: 12-22-2015, 08:52 AM
  3. [Release] Anti-Recoil/Burst Script
    By tom0101 in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 106
    Last Post: 10-11-2013, 09:52 AM
  4. [Request] BF3 Recoil Mouse Script [REQ/HELP]
    By kwai in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 0
    Last Post: 12-09-2012, 09:49 PM
  5. [Source Code] Small anti-recoil, Aim script , 3D bounding boxes, Team check, Nade ESP
    By rocked in forum All Points Bulletin Reloaded Hacks
    Replies: 11
    Last Post: 01-26-2012, 08:45 PM