Hello!!
This is what i actually did..
Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Triggerbot paused!',0,0)
WEnd
ToolTip("")
EndFunc
While 1
PixelSearch(600,315,790,700,0xE75E5F,5)
If Not @error Then
MouseClick("left")
EndIf
WEnd
So.. Is there any way to add multiple colors with pixelsearch? If not.. Is there any way to make sure that it doesn't press left click if an exact color appears?
Thanks for your help!