PUBG simple recoil script

Posts 115 of 19 · Page 1 of 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
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.
How to make it completely not recoil ?
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
For some reason when I have the script on, my gun doesn't shoot like an automatic. Help please.

Figured it out.
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.
How could I edit this script to disable the auto clicking and just have the recoil dampening
Very nice script but id like to know how to disable the mod wich blocks the recoil script to work when pressing shift.
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
undetected? i guess now pubg more anti cheats they can ban u from ahk i got banned last week
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
how to use ?
Posts 115 of 19 · Page 1 of 2
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?