simple script for skill spam, loot and target

04/08/2014 00:13 thanhluu#1
#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.
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
   
If $x 1 Then
      Call 
("spammer")
   EndIf
EndFunc

Func _target
()
   
$x $x * -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 
04/08/2014 00:28 guesswho-.-#2
post it in the release section, this is just the discussion forum.
you should also mention that it spams "z" for target, and "u" is the default target key,
it will only work when there's 1 dekaron.exe running, if there's more it might mess it up and work on the other client instead of the desired one, you could also make it get the PID from process name, there's a UDF on autoit forums on how to do this.

also you might want to add some sleeps, otherwise it'll send all of they keys in an instant and it will feel as if the loop never existed.
04/08/2014 06:45 shinitenshi#3
ill get patched supper quick xD
10/11/2014 00:41 deathlost#4
Hi, thanks for this, but for me its not working, its not pressing skills, i wanna ask if i have a code and it closes, can i obsfuscate it to run? whats the best idea to run it?
Any of you have a solution for spam?
I made one on blue eye macro and works great, but licence expired, and im using win 8.1 so no crack for it, i would like any idea, thank you very much. ^^
10/23/2014 02:36 Neyil#5
Run it as admin.