x_min := xpos := 675
x_max := 1000
y_min := ypos := 350
y_max := 1000
Home::
Loop
{
xpos++
if (xpos >= x_max) {
xpos := x_min
ypos++
}
if (ypos >= y_max)
break
PixelGetColor, color, xpos, ypos
if (color == 0x4441CD) ; Цвет пикселя в формате 0xRGB
{
MouseClick, Left, xpos, ypos
Sleep 500
Msgbox, X: %xpos% `t Y: %ypos%.`nPixelColor: %color%
break
}
}
return