CSGO (Counter Strike Global Offensive) auto reload on low bullets !

Post gaming related scripts
DamdarBilla
Posts: 10
Joined: 07 Feb 2022, 00:22

CSGO (Counter Strike Global Offensive) auto reload on low bullets !

Post by DamdarBilla » 09 Feb 2022, 16:44

HOW IT WORKS : This Script Auto reloads guns in CSGO (Counter Strike Global Offensive) by checking the color of the bullet icon on the bottom right of the screen turning from white to red this script will auto press the "r" button when it detects red color in the specific pixel so the bullets get reloaded when they turn low !

Note : I have 1920X1080 screen resolution with . This works by using pixel location. That means Screen Resolution is very important for it to work !

Keys :
F1 = Run Script
ALT + x = Quit

Code: Select all


 IfWinExist, CS:GO
{

IfWinActive, CS:GO
{

*F1::

AUTORELOAD := !AUTORELOAD

LOOP:

PixelSearch, Px, Py, 1881, 1053, 1881, 1053, 0xFF0000, 0, FAST, RGB)

If (ErrorLevel == 1)
{
sleep 5
goto, LOOP
}

else 

{send, r
sleep 5
goto, LOOP
}
return

}
return

}
return


^x::ExitApp

Jester
Posts: 10
Joined: 26 Mar 2022, 16:41

Re: CSGO (Counter Strike Global Offensive) auto reload on low bullets !

Post by Jester » 26 Mar 2022, 17:12

But cs go already have autoreload system...

Post Reply

Return to “Gaming Scripts (v1)”