Hi guys im back
To debug the legendary ****up try run this code while running the bot and see if it acts and messages you when attacking / looting in the dank cellar.
I know it will act while in town, solution is to get another color code for legendary, that arent picked up other places while in dank cellar.
That will fix the legendary false counts.
Code:
AdlibRegister("Counter", 10)
While 1
sleep(10)
Local $coord = PixelSearch(0, 0, @DesktopWidth, @DesktopHeight, 0xBF642F, 0); <- Legendary pickup color
If Not @error Then
MsgBox(0, "X and Y are:", $coord[0] & "," & $coord[1])
MouseMove($coord[0],$coord[1])
EndIf
WEnd
; Set the counter
$i = 0
; The Adlib function
Func Counter()
$mPos = MouseGetPos()
ToolTip("x: " & $mPos[0] & @CRLF & "y: " & $mPos[1])
Sleep(10)
EndFunc