Hi Leute wie kann ich 2 oder mehr Farben gleichzeitig suchen ?
mein Aktuelles Script,
mein Aktuelles Script,
Code:
HotKeySet ("{F1}", "Start")
HotKeySet ("{F2}", "_Exit")
While 1
Sleep(250)
WEnd
Func Start()
While 1
$pxs = PixelSearch(3,9,1277,882, 0x9C0200)
If isArray($pxs) then
MouseMove($pxs[0],$pxs[1], 0)
MouseClick("Left")
EndIf
WEnd
EndFunc
Func _Exit()
Exit
EndFunc