Btw... nother fighter type almost 5 lvls above me couldn't get aggro off me when i ran this.
Works sweet. I am going to make the same thing for doing bandages, and such
oh yeah..the code. lol almost forgot:
Code: Select all
#include routines.mac
#event HitsYou "YOU for"
Sub Main
:Start
/if n $target(id)==$char(id) /endmacro
/doevents
| RestUp
/if "$combat"=="TRUE" /stand
/if "$combat"=="TRUE" /call DoAbilities
/if n $target(id)==0 /delay 5
/goto :Start
Sub DoAbilities
/if n $char(ability,taunt)>0 /doability taunt
/if n $char(ability,kick)>0 /doability kick
| /if n $char(ability,begging)>0 {
| /attack off
| /doability begging
| /attack on }
/return
sub Event_HitsYou
/if "$combat"=="FALSE" {
/stand
/attack on
/face nopredict
}
/return 
