I am using this code to try and autofight deicide online
<CODE>
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.0.0
Author: Daxle
#
#
#
#
#
Script Function:
Template AutoIt script.
CODE#ce ----------------------------------------------------------------------------
;Deicide Online Hack
HotKeySet("{ESC}", "Terminate")
Sleep(20000)
$a = 5
While $a = 5
$monster = PixelSearch(0,0,1023,767,0xFFDFF38)
if IsArray ($monster) then
MouseClick("right", $monster[0], $monster[1], 2)
sleep (5000)
$gold = PixelSearch(0,0,1023,767,0x18160C)
if IsArray ($gold) then
MouseClick("right", $gold[0], $gold[1], 2)
sleep (5000);
EndIf
Endif
WEnd
Func Terminate()
Exit 0
EndFunc
</CODE>
and it doesnt seem to be searching within deicide online for a pixel, because as soon as i exit deicide the pixelsearch will click something with the same color on my desktop. Any ideas?