Hi everybody.
There is one question is wondering me: can i get VAC using WinGetPos in AHK?
I got ban for a script, but i didnt figure out for what i got VAC, because there are no functions RPM/WPM.
P.S. This was a color trigger
Code:
WinGetPos, uselessx, uselessy, widthX, heightX, Counter-Strike: Global Offensive
*~$LAlt::PixelGetColor, Color1, ((widthX/2)+1), ((heightX/2)-1)
StringSplit, Colorz, Color1
Blue1 = 0x%Colorz3%%Colorz4%
while (GetKeyState("LAlt", "P"))
{
PixelGetColor, Color2, ((widthX/2)+1), ((heightX/2)-1)
StringSplit, Colorz, Color2
Blue2 = 0x%Colorz3%%Colorz4%
if (abs(Blue1 - Blue2) > 15)
{
send {LButton 3}
sleep 200
}
}