daycrawler
E-Commerce Pro
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
400 XP
It works in any game
VAC - Undetected
Tutorial:
1.Download AutoHotheys
2.Restart your PC if needed
3.Right click on your desktop select "new" and AutoHotkey script
3. Right click and click on Edit script
4.Paste the script that is hidden
5. Save it and then open the file that you made
6.Open Cs:Go in WINDOW or Window fullscrean mode
7. Hold CAPSLock
Now every time that something moves in front of your crosshair you will shoot
If it is not working try pressing home button on your keybord
Remember it can shoot to your teammates and it will also shoot when you move
If somethisg is not working pliss message me. Sorry for my English
Sensitivity:=10 TriggerDelay:=0 TriggerHoldTime:=420 RGBset:=1 ;color split SplitRGBColor(RGBColor, ByRef Red, ByRef Green, ByRef Blue) { Red := RGBColor >> 16 & 0xFF Green := RGBColor >> 8 & 0xFF Blue := RGBColor & 0xFF } SplitBGRColor(BGRColor, ByRef Red, ByRef Green, ByRef Blue) { Red := BGRColor & 0xFF Green := BGRColor >> 8 & 0xFF Blue := BGRColor >> 16 & 0xFF } ;Menu loop loop { GetKeyState, state, Home if state = D { trigger:=true } ;Beta trigger if !GetKeyState("CapsLock") && trigger==true { sleep 50 MouseGetPos, oneX, oneY PixelGetColor, colorone, oneX+RGBset, oneY+RGBset SplitRGBColor(colorone, oneRed, oneGreen, oneBlue) } if GetKeyState("CapsLock") && trigger==true { sleep 1 MouseGetPos, twoX, twoY PixelGetColor, colortwo, twoX+RGBset, twoY+RGBset SplitRGBColor(colortwo, twoRed, twoGreen, twoBlue) if (((oneRed-sensitivity)<=twoRed) && ((oneRed+sensitivity)<=twoRed)) or (((oneRed-sensitivity)>=twoRed) && ((oneRed+sensitivity)>=twoRed)) or (((oneGreen-sensitivity)<=twoGreen) && ((oneGreen+sensitivity)<=twoGreen)) or (((oneGreen-sensitivity)>=twoGreen) && ((oneGreen+sensitivity)>=twoGreen)) or (((oneBlue-sensitivity)<=twoBlue) && ((oneBlue+sensitivity)<=twoBlue)) or (((oneBlue-sensitivity)>=twoBlue) && ((oneBlue+sensitivity)>=twoBlue)) { sleep TriggerDelay DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0) sleep TriggerHoldTime DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0) } } }
VAC - Undetected
Tutorial:
1.Download AutoHotheys
2.Restart your PC if needed
3.Right click on your desktop select "new" and AutoHotkey script
3. Right click and click on Edit script
4.Paste the script that is hidden
5. Save it and then open the file that you made
6.Open Cs:Go in WINDOW or Window fullscrean mode
7. Hold CAPSLock
Now every time that something moves in front of your crosshair you will shoot
If it is not working try pressing home button on your keybord
Remember it can shoot to your teammates and it will also shoot when you move
If somethisg is not working pliss message me. Sorry for my English
Sensitivity:=10 TriggerDelay:=0 TriggerHoldTime:=420 RGBset:=1 ;color split SplitRGBColor(RGBColor, ByRef Red, ByRef Green, ByRef Blue) { Red := RGBColor >> 16 & 0xFF Green := RGBColor >> 8 & 0xFF Blue := RGBColor & 0xFF } SplitBGRColor(BGRColor, ByRef Red, ByRef Green, ByRef Blue) { Red := BGRColor & 0xFF Green := BGRColor >> 8 & 0xFF Blue := BGRColor >> 16 & 0xFF } ;Menu loop loop { GetKeyState, state, Home if state = D { trigger:=true } ;Beta trigger if !GetKeyState("CapsLock") && trigger==true { sleep 50 MouseGetPos, oneX, oneY PixelGetColor, colorone, oneX+RGBset, oneY+RGBset SplitRGBColor(colorone, oneRed, oneGreen, oneBlue) } if GetKeyState("CapsLock") && trigger==true { sleep 1 MouseGetPos, twoX, twoY PixelGetColor, colortwo, twoX+RGBset, twoY+RGBset SplitRGBColor(colortwo, twoRed, twoGreen, twoBlue) if (((oneRed-sensitivity)<=twoRed) && ((oneRed+sensitivity)<=twoRed)) or (((oneRed-sensitivity)>=twoRed) && ((oneRed+sensitivity)>=twoRed)) or (((oneGreen-sensitivity)<=twoGreen) && ((oneGreen+sensitivity)<=twoGreen)) or (((oneGreen-sensitivity)>=twoGreen) && ((oneGreen+sensitivity)>=twoGreen)) or (((oneBlue-sensitivity)<=twoBlue) && ((oneBlue+sensitivity)<=twoBlue)) or (((oneBlue-sensitivity)>=twoBlue) && ((oneBlue+sensitivity)>=twoBlue)) { sleep TriggerDelay DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0) sleep TriggerHoldTime DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0) } } }