Hey Leute,
ich hab ein kleines Problem mit AutoHotKey bzw PixelSearch.
Das Script funktioniert einwandfrei, ist allerdings die gesuchte Farbe direkt unter dem Cursor (also ohne dass er diesen bewegen muss) funktioniert es nicht. Kann jemand helfen?
Code
#IfWinActive, Path of Exile
{
v::
MouseGetPos x, y
PixelGetColor color, %x%, %y%
if (color == 0x02F0F0)
{
click %x%, %y%
return
}
else
{
PixelSearch, Px, Py, 8, 34, 1500, 1046, 0x02F0F0, 0, Fast
if ErrorLevel
{
MsgBox Fehler: %ErrorLevel%
}
else
{
Px += 5
Py += 2
click %Px%, %Py%
}
return
}
}
Alles anzeigen