Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    Vqnishhh's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    2

    PUBG simple recoil script

    This is a fairly simple no recoil script using ahk
    p Turns it on or off
    u makes recoil lower
    y makes recoil higher
    / suspends dosent turn off just pauses the script
    Here is the script i hope you like it
    dc = 0

    recoil = 6

    Pause::Suspend,Toggle
    /::Suspend
    LButton::
    Loop
    {
    if (dc = 1)
    {
    SetMouseDelay 10
    Click
    DllCall("mouse_event", uint, 1, int, 0, int, 6, uint, 0, int, 0)
    If (GetKeyState("LButton","P")=0)
    Break
    }
    else {
    Click
    Break
    }
    }
    return

    P::
    Loop {
    If(GetKeyState("P", "P")=0)
    {
    if dc = 0
    {
    dc = 1
    ComObjCreate("SAPI.SpVoice").Speak("on")
    }
    else
    {
    dc = 0
    ComObjCreate("SAPI.SpVoice").Speak("off")
    }
    Break
    }
    }
    return


    U::
    Loop {
    If(GetKeyState("U", "P")=0)
    {
    recoil += 1
    ComObjCreate("SAPI.SpVoice").Speak(recoil)
    Break
    }
    }
    return

    Y::
    Loop {
    If(GetKeyState("Y", "P")=0)
    {
    recoil -= 1
    ComObjCreate("SAPI.SpVoice").Speak(recoil)
    Break
    }
    }
    return



    N::
    Loop {
    If(GetKeyState("N", "P")=0)
    {
    send {SHIFT down}
    MouseGetPos, xpos, ypos
    MouseClickDrag, left, xpos, ypos, xpos-200, ypos
    send {SHIFT up}
    MouseMove, xpos, ypos
    Break
    }
    }
    return
    Last edited by Vqnishhh; 09-03-2017 at 02:44 PM.

  2. #2
    KenLaen's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    how to use ?

  3. #3
    jumkiol40's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Copy the code and paste it into a new AHK Script and run then as the page follows
    "p Turns it on or off
    u makes recoil lower
    y makes recoil higher"

    - - - Updated - - -

    You'll probably need a bypass im not sure at this time.

  4. #4
    KenLaen's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    How to make it completely not recoil ?

  5. #5
    Vqnishhh's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by KenLaen View Post
    How to make it completely not recoil ?
    where it says Dll call mouse_ event in that same line where it says in, 6 change it if there is too much then recoil gun goes up the raise if the the number is too high and your gun goes below it then lower it for a alienware mouse mine worked at 9.3

    - - - Updated - - -

    Quote Originally Posted by jumkiol40 View Post
    Copy the code and paste it into a new AHK Script and run then as the page follows
    "p Turns it on or off
    u makes recoil lower
    y makes recoil higher"

    - - - Updated - - -

    You'll probably need a bypass im not sure at this time.
    Actually no bypass its just an ahk script

  6. #6
    Pvplegend's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    For some reason when I have the script on, my gun doesn't shoot like an automatic. Help please.

    Figured it out.
    Last edited by Pvplegend; 09-06-2017 at 11:12 PM.

  7. #7
    necrun's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    19
    Reputation
    10
    Thanks
    4
    My Mood
    Amazed
    Probably is because when you hold down shift or Left Control macro stops, i do have other scripts AHK for shooter games but this one is really well made the other ones just moves my mouse down but seems like shooting at the same time recoil becomes perfect.

    I was wondering if you can give me some feedback how to not disable macro when holding down LCTRL RCtRL or LShift, Rshift been trying to modify it but havent come with a solution, i mean i can set up a macro for loop left click and another macro for moving the mouse down but yours is 2 in one, so please if you can thank you.

    Other questions.

    What does the N do?

    The Y and U keys doesn't seem to change the recoil speed i mean i even change it to -100 or 100 and still trail down same speed.
    Last edited by necrun; 12-10-2017 at 05:20 PM.

  8. #8
    Lt. Nasty Pants's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    How could I edit this script to disable the auto clicking and just have the recoil dampening

  9. #9
    Casiraghi7's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Very nice script but id like to know how to disable the mod wich blocks the recoil script to work when pressing shift.

  10. #10
    Knoin1992's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Just added some Code Line #16 to disable the recoil by pressing "LShift".

    ....
    #16 if (dc = 1 && !GetKeyState("LShift","P")) <--- thats all
    .....

    Code:
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    ; #Warn  ; Enable warnings to assist with detecting common errors.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    ;/ suspends dosent turn off just pauses the script 
    
    dc = 0
    
    recoil = 6
    
    Pause::Suspend,Toggle
    /::Suspend
    LButton::
    Loop
    {
    if (dc = 1 && !GetKeyState("LShift","P"))
    {
    SetMouseDelay 10
    Click
    DllCall("mouse_event", uint, 1, int, 0, int, 6, uint, 0, int, 0)
    If (GetKeyState("LButton","P")=0)
    Break
    }
    else {
    Click
    Break
    }
    }
    return
    
    P::
    Loop {
    If(GetKeyState("P", "P")=0)
    {
    if dc = 0
    {
    dc = 1
    ComObjCreate("SAPI.SpVoice").Speak("on")
    }
    else
    {
    dc = 0
    ComObjCreate("SAPI.SpVoice").Speak("off")
    }
    Break
    }
    }
    return
    
    
    U::
    Loop {
    If(GetKeyState("U", "P")=0)
    {
    recoil += 1
    ComObjCreate("SAPI.SpVoice").Speak(recoil)
    Break
    }
    }
    return
    
    Y::
    Loop {
    If(GetKeyState("Y", "P")=0)
    {
    recoil -= 1
    ComObjCreate("SAPI.SpVoice").Speak(recoil)
    Break
    }
    }
    return
    
    
    
    N::
    Loop {
    If(GetKeyState("N", "P")=0)
    {
    send {SHIFT down}
    MouseGetPos, xpos, ypos
    MouseClickDrag, left, xpos, ypos, xpos-200, ypos
    send {SHIFT up}
    MouseMove, xpos, ypos
    Break
    }
    }
    return

  11. #11
    lefre86's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    undetected? i guess now pubg more anti cheats they can ban u from ahk i got banned last week

  12. #12
    bryanhong's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0
    is it still work?

  13. #13
    uWotM07's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    detected or not?

  14. #14
    pubgt's Avatar
    Join Date
    Jul 2018
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    19
    yes recoil scripts detected, i recommend buying memory cheats, they are very cheap to get and test. instead going for useless scripts that will just get you banned without even helping you.

    i get mine from sirosix at sely btw
    Last edited by pubgt; 07-07-2018 at 07:00 PM.

  15. #15
    putki's Avatar
    Join Date
    Apr 2019
    Gender
    male
    Location
    Earth
    Posts
    38
    Reputation
    10
    Thanks
    6
    My Mood
    Confused
    how to use ?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] PUBG No recoil script (video proof)
    By USAmana in forum PLAYERUNKNOWN'S BATTLEGROUNDS (PUBG) Hacks & Cheats
    Replies: 4
    Last Post: 09-05-2017, 05:45 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. [Help Request] Simple Autoit Script help
    By dalehohn13 in forum MapleStory Help
    Replies: 4
    Last Post: 08-09-2013, 12:49 AM
  4. [Help Request] No recoil script
    By Dybbuk in forum Call of Duty Modern Warfare 3 Help
    Replies: 1
    Last Post: 01-20-2012, 11:45 AM
  5. [Request] Deagle no recoil script
    By jozza7 in forum Call of Duty 4 - Modern Warfare (MW) Hacks
    Replies: 2
    Last Post: 11-01-2011, 09:53 PM