Star Trek Online Group
Reply To: Omega-Beta Script
NOTE .. this is for resolution 1680 x 1050
My script:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
^!NumPad5::
KeepLoop=1
CoordMode, pixel,screen
CoordMode, mouse,screen
Loop
{
if (KeepLoop=0)
Return
else
PixelSearch, Px, Py, 818, 464, 832, 701, 0x3497CB, 10, Fast RGB
if !ErrorLevel
{
MouseMove, 883, 489, 0
Sleep, 10
}
else
Sleep, 0
PixelSearch, Px, Py, 818, 464, 832, 701, 0x323C9B, 10, Fast RGB
if !ErrorLevel
{
MouseMove, 883, 552, 0
Sleep, 10
}
else
Sleep, 0
PixelSearch, Px, Py, 818, 464, 832, 701, 0x47E0D2, 10, Fast RGB
if !ErrorLevel
{
MouseMove, 883, 611, 0
Sleep, 10
}
else
Sleep, 0
PixelSearch, Px, Py, 818, 464, 832, 701, 0x6C3FC1, 10, Fast RGB
if !ErrorLevel
{
MouseMove, 883, 668, 0
Sleep, 10
}
else
Sleep, 0
}
return
^!NumPad6::KeepLoop=0
Return