Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;CS:GO NoRecoil & Burst-Fire Script
- ;By: Insightful
- ;Random sleep times for more human-like inputs
- #SingleInstance Force
- #MaxThreads, 999999
- #MaxThreadsPerHotkey, 99999
- SendMode Input
- ; Delay & Bullet Control
- Speed = 90
- Bullets = 3
- Stat = Bullets %Bullets% Speed %Speed%
- return
- ; Burst-Fire
- Shift & LButton::
- {
- Loop, %Bullets%
- {
- sendinput, {LButton}
- sleep, %Speed%
- }
- keywait, LButton
- }
- return
- ; NoRecoil
- ~LButton::
- while GetKeyState("LButton") & NoRecoilActive
- {
- DllCall("mouse_event", uint, 1, int, -1, int, 1, uint, 0, int, 0)
- RandSleep(15,16)
- DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
- RandSleep(5,6)
- }
- return
- ; Random Sleep
- RandSleep(x,y)
- {
- Random, rand, %x%, %y%
- Sleep %rand%
- }
- return
- ; Close script
- Insert:: ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement