• We just launched and are currently in beta. Join us as we build and grow the community.

MY s1mple custom aimcontrol/antirecoil/autofireburst/ AHK SCRIPT VAC SAFE

Scrin

Profit Scaling Expert
S Rep
0
0
0
Rep
0
S Vouches
0
0
0
Vouches
0
Posts
156
Likes
29
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 500 XP
Simple AHK code mashed together by me works well re tweaked autofire time's plus recoil draw down speeds
hope it helps its all i need now.
CODE:
Simple AHK code mashed together by me works well re tweaked autofire time's plus recoil draw down speeds hope it helps its all i need now.
CODE: #NoEnv
SendMode Input
; AIMPRECISION By CPL Net
Sensitivity := 6 ; PUT YOuR SENSITIVITY WINDOWS HERE ! DON'T FORGET TO REMOVE (RAW INPUT = ENTRY BRUTE) IN MOUSE GAME OPTION !!!
loop
{
GetKeyState, state, F3
if state = D
{
SLOW:=true
FAST:=false
}
GetKeyState, state, F4
if state = D
{
SLOW:=false
FAST:=true
}
}
*~$LButton::
;SLOW
while SLOW==true && GetKeyState("LButton")
{
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 10.5, UInt, 0)
sleep 99
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 10, UInt, 0)
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
sleep 99
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 9.5, UInt, 0)
sleep 99
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 9, UInt, 0)
sleep 99
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 8.5, UInt, 0)
sleep 99
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 8, UInt, 0)
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
}
;FAST
while FAST==true && GetKeyState("LButton")
{
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 17, UInt, 0)
sleep 99
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 17.5, UInt, 0)
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
sleep 99
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 18, UInt, 0)
sleep 99
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 18.5, UInt, 0)
sleep 99
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 19, UInt, 0)
sleep 99
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, 19.5, UInt, 0)
sleep 99
GetKeyState, state, LButton
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
if state = U
DllCall("SystemParametersInfo", UInt, 0x71, UInt, 0, UInt, Sensitivity, UInt, 0)
}
return
DEL::Exit
_auto := true
~LButton::autofire()
~Numlock::_auto := ! _auto
~Up::Suspend
F10::ExitApp
autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
SendInput {LButton DownTemp}
Sleep 75
mouseXY(0, 9)
Sleep 75
SendInput {LButton Up}
Sleep 45
}
else
break
} ;; loop
} ;; if
} ;; autofire()
mouseXY(x,y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}
SAVE as .AHK have to install AHK first if not already google it for download. NumLock antirecoil+autofire on/off toggle DElete = Exit script F3 F4 HF
Edited by deanrjh, 20 February 2018 - 05:11 AM.
 

422,212

310,551

310,560

Top