The AutoIt-Script itself is clean, I don't know whether the executable itself is though.
But all the script does is clicking on predefined coordinates, it doesn't even use the information it gathers from calling "PixelSearch".
But all the script does is clicking on predefined coordinates, it doesn't even use the information it gathers from calling "PixelSearch".
Code:
$Coordinates = PixelSearch(587, 0, 750, 720, 1932444, 10)
If @ Error = 0 Then
MouseMove(813, 702, 5)
Sleep(2650)
MouseClick("right")
Sleep(1000)
MouseMove(1123, 374)
Sleep(500)
MouseClick("right")
Sleep(100)
MouseMove(1167, 374)
Sleep(500)
MouseClickDrag("left", 1167, 374, 1123, 374)
Sleep(100)
MouseClickDrag("left", 1193, 374, 1123, 374)
Sleep(100)
MouseMove(813, 702, 5)
Sleep(100)
MouseClick("right")
EndIf