CS: GO | Burst Script AHK - Any weapon.
Hello everyone, today I'm coming here to you with my first release ever, I think.
It is an AHK script for those who have used triggers they probably know how burst works.
Well, as I've seen triggers start getting detected so fast you can't even enjoy them I created, with some research a Burst Script written in .ahk and which is UNDETECTED.
The great thing about this is that all you need is this:
· Download AHK, use google.
· Install AHK
· Go to your desktop and right click, new text document, and paste the following:
Click to see code.
Code:
/*
This is a non-sense text.
*/
#SingleInstance Force
#MaxThreads, 999999
#MaxThreadsPerHotkey, 99999
SendMode Input
Speed = 90
Bullets = 3
Stat = Bullets %Bullets% Speed %Speed%
return
LButton:: ; Burst fire
{
Loop, %Bullets%
{
sendinput, {LButton}
sleep, %Speed%
}
keywait, LButton
}
return
Ctrl & LButton:: ; Burst fire
{
Loop, %Bullets%
{
sendinput, {LButton}
sleep, %Speed%
}
keywait, LButton
}
return
Shift & LButton:: ; Burst fire
{
Loop, %Bullets%
{
sendinput, {LButton}
sleep, %Speed%
}
keywait, LButton
}
return
; SS
XButton1::Suspend
· Now save it as anythingyouwant.ahk
· Double click it and you're ready to go
* You can edit the following parts at your liking:
You can edit the suspend button "XButton1" to any other button you may want; search ahk key list on google.
You can change the speed of the mouse click aswell the bullets you want to shoot.
Credits to Xtra from a place from google who made the codes and to Axel12399(me) for making it a burst only script to work for all of you without bugs.