Jump to content

Recommended Posts

Posted

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?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...