Code: Select all
#turbo
#event Heal "Taunting attacker, Master."
#event Dead "You gain experience!!"
#event Death "You have entered Plane of Knowledge"
#event Burnout "Your pet's Burnout V spell has worn off."
Sub Main
/goto :loophole
:loopey
/press 2
/delay 10
/press 5
/delay 600
/call Main
:loophole
/delay 100
/target npc radius 80 zradius 10
/if $target(class)==warrior {
/goto :loopey
} else {
/goto :loophole
}
Sub Event_Heal
/goto :loopsave
:heal
/delay 5
/cast 3
/delay 70
/goto :loop2
:loopsave
/delay 50
/if $spawn($spawn($group(0),pet),hp,cur)>=80 {
/goto :loopsave
} else /if $spawn($spawn($group(0),pet),hp,cur)<=80 {
/goto :heal
}
Sub Event_Dead
/delay 10
/press 1
/call Main
Sub Event_Death
/delay 750
/press 1
/delay 15
/camp desktop
Sub Event_Burnout
/press 2
/delay 10
/cast 7
/delay 60
/press 1
/call Main


