hi, this is a script i got from coder i try to make it work on my game i changed values
Global $Paused
HotKeySet("{Home}", "TogPause")
HotKeySet("{END}", "TogExit")
WinWaitActive("CABAL2 - DX9")
WinMove("CABAL2 - DX9","",0,0)
$r=0
Do
auto_attack()
find_monster()
Until $r=1
While 1
Sleep(100)
WEnd
Func TogPause()
$Paused = Not $Paused
While $Paused
Sleep(100)
ToolTip('Script is "Paused"', 0, 0)
WEnd
ToolTip("")
EndFunc
Func TogExit()
Exit 0
EndFunc
Func auto_attack()
If PixelGetColor(999, 482) == 0xFFA800 Then ;Mob Attack HP full/Dying Mob
Do
Send("{1 down}")
Sleep(100)
Send("{1 up}")
Sleep(100)
Send("{1 down}")
Sleep(100)
Send("{1 up}")
Sleep(100)
Send("{3 down}")
Sleep(100)
Send("{3 up}")
Sleep(100)
Until PixelGetColor(999, 482) <> 0x700E03 ;Mob Attack HP Down
EndIf
EndFunc
Func find_monster()
If PixelGetColor(999, 482) <> 0x700E03 Then ;TAB No More Mob/Hp Down
Do
Send("{TAB down}")
Sleep(100)
Send("{TAB up}")
Sleep(100)
Until PixelGetColor(999, 482) == 0xFFA800 ;Change this for Specific Mob
EndIf ;TAB
EndFunc
it just spam tab and never attacks






