At first you need to find the right pixel colour...
We will do it with the AutoIT Tool:
AutoIT Window Info
When we found the pixel we need to add that your ship moves:
Now we will add that it search the pixel:
Code Explanation:
This is an small but working pixelbot...
You need to add that it will work for all Resolutions and these things :)
You can add much more things but this will help you for the start :)
We will do it with the AutoIT Tool:
AutoIT Window Info
When we found the pixel we need to add that your ship moves:
Code:
Opt("MouseCoordMode", 2)
MouseMove(int(Random(1018, 1255)), int(Random(788, 927)), 1)
MouseClick("left")
Code:
While 1
Opt("MouseCoordMode", 2)
MouseMove(int(Random(1018, 1255)), int(Random(788, 927)), 1)
MouseClick("left")
$Bonusbox = PixelSearch(24, 85, 1238, 916, 0xFCFFCD)
IF IsArray($Bonusbox) Then
MouseMove($Bonusbox[0], $Bonusbox[1], 1)
MouseClick("left")
Sleep(1600)
WEnd
EndIf
This is an small but working pixelbot...
You need to add that it will work for all Resolutions and these things :)
You can add much more things but this will help you for the start :)