guten tag und danke im vorraus
Problem
pixelsearch klickt unerwünschte pixel/farbe an (obwohl die PixelID nicht übereinstimmt)
€nglish
Pixelsearch is clicking random pixels,even if the PixelID is wrong
Problem
pixelsearch klickt unerwünschte pixel/farbe an (obwohl die PixelID nicht übereinstimmt)
€nglish
Pixelsearch is clicking random pixels,even if the PixelID is wrong
Code:
Func Start() ;^^
$pxt = 0xff6969
$x1 = 379
$y1 = 234
$x2 = 1603
$y2 = 943
While 1
$pxt = PixelSearch($x1, $y1, $x2, $y2,$pxt, 0)
If Not @error Then
mousemove($pxt[0],$pxt[1])
mouseclick("left")
Sleep ( 2000 )
Endif
WEnd
EndFunc