Here is the code.
I Only want that my character click on the Monsters nothing else. i want an colour code or even better Image code but i dont know how it wordks can somebody give me just a simple coding. i dont have that much brain.exeQuote:
HotKeySet ("{ENTER}", "Start")
HotKeySet ("{ESC}", "_Exit")
While 1
Sleep(250)
WEnd
Func Start()
While 1
$pxs = PixelSearch(281,95,1085,695,0xFFFFFF)
If isArray($pxs) then
MouseMove($pxs[0],$pxs[1], 0)
MouseClick("Left")
EndIf
WEnd
EndFunc
Func _Exit()
Exit
EndFunc






