Red faceOutdatedCS:GO TriggerBot Script

Posts 31–45 of 51 · Page 3 of 4
Quote Originally Posted by Ally View Post


To increase just copy the exe and rename it and run two at the same time Im actually working on new script
Script
idont this window why?
i download autohotkey and when i press MOuse4 or 5 is dont worked
Quote Originally Posted by Osher1234561 View Post
idont this window why?
i download autohotkey and when i press MOuse4 or 5 is dont worked
The Window / picture i posted is my next version im making
Quote Originally Posted by DryUrEyesM8 View Post
I'm having a huge problem getting this to work. If I press alt outside csgo it freezes my mouse but once I pull up csgo it does nothing. Yes I am in windowed mode.
Run as Admin
Quote Originally Posted by DarknzNet View Post


Run as Admin
That's how I fixed it last night. Very crucial. RUN AS ADMIN!
How do triggerbot work? If its supposted to shoot for me it doesnt.......

- - - Updated - - -

WHAT is s cript code for K ??????
What do i have to DO when i started it with AHK. ?
it is running but it isnt working..
how can i change the button i want ''exactly'' pls ~regards

- - - Updated - - -

Quote Originally Posted by CJustusMig View Post
what would be the code for Mouse 5 plz? I'm not used to sripting, sorry.
There is only one thing thas sucks a bit and i hope ure abel to change that , WHEN i shoot example with the desert eagel there comes some smoke up and the deagel react to this smoke start shooting reasonless...
may u change it ? ~ regards! pls answer me !!

- - - Updated - - -

Quote Originally Posted by 4xing View Post
My improved version. After activation script save pixel colour again and makes only 1 shot. In a nutshell: the script works better with ak, m4, etc.
Hold 4th mouse button (If you want other button change every "XButton2")

Code:
Threshold = 20
*~$XButton2::
MouseGetPos, MouseX, MouseY
PixelGetColor, Color1, (MouseX+2), (MouseY+2)
StringSplit, Colorz, Color1
Color1B = 0x%Colorz3%%Colorz4%
Color1G = 0x%Colorz5%%Colorz6%
Color1R = 0x%Color7z%%Colorz8%
Color1B += 0
Color1G += 0
Color1R += 0
while (GetKeyState("XButton2", "P"))
    {
        BlockInput, MouseMove
        sleep 1
        MouseGetPos, MouseX, MouseY
        PixelGetColor, Color2, (MouseX+2), (MouseY+2)
        StringSplit, Colorz, Color2
        Color2B = 0x%Colorz3%%Colorz4%
        Color2G = 0x%Colorz5%%Colorz6%
        Color2R = 0x%Color7z%%Colorz8%
        Color2B += 0
        Color2G += 0
        Color2R += 0
        if (Color1R > (Color2R + Threshold)) or (Color1R < (Color2R - Threshold)) or (Color1G > (Color2G + Threshold)) or (Color1G < (Color2G - Threshold)) or (Color1B > (Color2B + Threshold)) or (Color1B < (Color2B - Threshold))
            {
                send {LButton 1}
MouseGetPos, MouseX, MouseY
PixelGetColor, Color1, (MouseX+2), (MouseY+2)
StringSplit, Colorz, Color1
Color1B = 0x%Colorz3%%Colorz4%
Color1G = 0x%Colorz5%%Colorz6%
Color1R = 0x%Color7z%%Colorz8%
Color1B += 0
Color1G += 0
Color1R += 0
sleep 250
            }
    }
BlockInput, MouseMoveOff
Return

End::
exitapp
return
There is only one thing thas sucks a bit and i hope ure abel to change that , WHEN i shoot example with the desert eagel there comes some smoke up and the deagel react to this smoke start shooting reasonless...
may u change it ? ~ regards! pls answer me !!
why does it my fps go down or it feels really laggy when i use it or hold it down? and how come whenever i aim near a crate it shoots? is there something i can do to fix it? and then when i hold down alt it keeps shooting what do i do?
Quote Originally Posted by Nero View Post
why does it my fps go down or it feels really laggy when i use it or hold it down? and how come whenever i aim near a crate it shoots? is there something i can do to fix it? and then when i hold down alt it keeps shooting what do i do?
The script looping rapidly can cause a small amount of lag, especially when it has to do calculations.
Although you will only notice this if you play on a potato

You can add a sleep ro make it run slower, but it won't work as good as it normally does
ty but how come it shoots rapidly when near a crate/ mostly everywhere ?
Quote Originally Posted by Nero View Post
ty but how come it shoots rapidly when near a crate/ mostly everywhere ?
Its prob just computer or some shit like that
Besides it shouldnt do that
Quote Originally Posted by Nero View Post
ty but how come it shoots rapidly when near a crate/ mostly everywhere ?
Low fps/tearing.
Light backgrounds tend to work better

I have not used this script but I assume that it is similar to the one I made.
Sometimes, it auto-fires even tho there had been no color interference. It also fires very slowly after a color change and usually misses the player if attempting to use the script at long/mid on dust2. Adjusting the sensitivity make the script better on hitting shots but more likely to autofire. Any possible fix?
Quote Originally Posted by AxisForces View Post
Sometimes, it auto-fires even tho there had been no color interference. It also fires very slowly after a color change and usually misses the player if attempting to use the script at long/mid on dust2. Adjusting the sensitivity make the script better on hitting shots but more likely to autofire. Any possible fix?
If you have bad pc. Delay will be bigger.
Quote Originally Posted by AxisForces View Post
Sometimes, it auto-fires even tho there had been no color interference. It also fires very slowly after a color change and usually misses the player if attempting to use the script at long/mid on dust2. Adjusting the sensitivity make the script better on hitting shots but more likely to autofire. Any possible fix?
Best fix: New pc, optimize csgo, overclock your shit.
Quote Originally Posted by 4xing View Post
My improved version. After activation script save pixel colour again and makes only 1 shot. In a nutshell: the script works better with ak, m4, etc.
Hold 4th mouse button (If you want other button change every "XButton2")

Code:
Threshold = 20
*~$XButton2::
MouseGetPos, MouseX, MouseY
PixelGetColor, Color1, (MouseX+2), (MouseY+2)
StringSplit, Colorz, Color1
Color1B = 0x%Colorz3%%Colorz4%
Color1G = 0x%Colorz5%%Colorz6%
Color1R = 0x%Color7z%%Colorz8%
Color1B += 0
Color1G += 0
Color1R += 0
while (GetKeyState("XButton2", "P"))
    {
        BlockInput, MouseMove
        sleep 1
        MouseGetPos, MouseX, MouseY
        PixelGetColor, Color2, (MouseX+2), (MouseY+2)
        StringSplit, Colorz, Color2
        Color2B = 0x%Colorz3%%Colorz4%
        Color2G = 0x%Colorz5%%Colorz6%
        Color2R = 0x%Color7z%%Colorz8%
        Color2B += 0
        Color2G += 0
        Color2R += 0
        if (Color1R > (Color2R + Threshold)) or (Color1R < (Color2R - Threshold)) or (Color1G > (Color2G + Threshold)) or (Color1G < (Color2G - Threshold)) or (Color1B > (Color2B + Threshold)) or (Color1B < (Color2B - Threshold))
            {
                send {LButton 1}
MouseGetPos, MouseX, MouseY
PixelGetColor, Color1, (MouseX+2), (MouseY+2)
StringSplit, Colorz, Color1
Color1B = 0x%Colorz3%%Colorz4%
Color1G = 0x%Colorz5%%Colorz6%
Color1R = 0x%Color7z%%Colorz8%
Color1B += 0
Color1G += 0
Color1R += 0
sleep 250
            }
    }
BlockInput, MouseMoveOff
Return

End::
exitapp
return
What would I replace XButton2 with?
Just replace X with say Alt?
Posts 31–45 of 51 · Page 3 of 4
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?