#my english is horrible, I'm sorry...i'm not from a English speaking country.
Hey everyone, i have been looking for Dekaron bot (farm, auto skills cast, etc.)
Then i came across a few AutoIt script, some only have skill spamming and some only have everything else. So I just combined a few together and tweaked a little.
If can, please tweak the code to own liking. I know it looks horrifying.
Just download AutoIt and paste the script then run it. It should work on all server.
It contain the following:
Skill spam (i tweak a little so it wouldn't destroy your cpu - low-end pc)
Auto loot
Auto Target with ON/OFF option
*NOTE* for auto target, you can press f6 to enable and f6 again to disable it.
Hey everyone, i have been looking for Dekaron bot (farm, auto skills cast, etc.)
Then i came across a few AutoIt script, some only have skill spamming and some only have everything else. So I just combined a few together and tweaked a little.
If can, please tweak the code to own liking. I know it looks horrifying.
Just download AutoIt and paste the script then run it. It should work on all server.
It contain the following:
Skill spam (i tweak a little so it wouldn't destroy your cpu - low-end pc)
Auto loot
Auto Target with ON/OFF option
*NOTE* for auto target, you can press f6 to enable and f6 again to disable it.
PHP Code:
MsgBox(0,"Spammer","{F5} to toggle spammer,{F6} to target, {F9} to close.")
HotKeySet("{F5}","_toggle")
HotKeySet("{F6}","_target")
HotKeySet("{F9}","_Exit")
ToolTip("Running...",0,0)
Global $key = 3
Global $x = 0
Global $PID = InputBox("Just click ok."&@CRLF&"(Default it 'Dekaron')","Dekaron")
While 1
WEnd
Func _Exit()
Exit
EndFunc
Func _toggle()
$x = $x * -1 + 1
If $x = 1 Then
Call ("spammer")
EndIf
EndFunc
Func _target()
$x = $x * -1 + 1
If $x = 1 Then
Call ("target")
EndIf
EndFunc
Func target()
Do
Controlsend($PID,"","","z")
$key = $key + 1
If $key = 10 Then
$key = 0
EndIf
Until $x = 0
EndFunc
Func spammer()
Do
Controlsend($PID,"","",$key)
Controlsend($PID,"","","{SPACE}") ;<==== Add ; to the beginning of this line to cancel auto loot.
$key = $key + 1
If $key = 10 Then
$key = 0
EndIf
Until $x = 0
EndFunc