Would be overjoyed to see this converted: http://macroquest2.com/phpBB2/viewtopic.php?t=2786
Thanks in advance. :)
Moderator: MacroQuest Developers


Code: Select all
sub Main
/if $target()=="FALSE" {
/varset HasTarget 0
/return
}
/attack on
:combatloop
/face fast nopredict
/call Flyingkick
/call Disarm
/if n $target(distance)>13 {
/sendkey down up
/goto :combatloop
}
/if n $target(distance)<=13 /sendkey up up
/face fast nopredict
/if n $target(id)==0 /varset TargetDead 1
/if n @TargetDead!=1 /goto :combatloop
/delay 1s
/target corpse @MobToHunt
/delay 2s
/return
Sub Flyingkick
/if n $char(ability,"Flying Kick")!=-2 {
/if $target()=="TRUE" {
/face fast nopredict
/doability "Flying Kick"
}
}
/return
Sub Disarm
/if n $char(ability,"Disarm")!=-2 {
/if $target()=="TRUE" {
/face fast nopredict
/doability "Disarm"
}
}
/return