this is my first script (for mq) so bear with me if it's garbage; then again it's so short that if i messed something up maybe i should be berated....
anyways, all it does is simply watch for any mob in the area to enrage and does "/pet back off"... wanted this for myself since I don't wanna be totally automated, but I hate losing pets 50% of the time a mob enrages cuz i'm typing something or debuffing a 2nd mob, etc, etc.
Here's the code:
Code: Select all
#turbo
#include routines.mac
#Event Enraged "has become ENRAGED"
Sub main
:pet
/delay 5
/doevents
/goto :pet
/return
Sub Event_Enraged
/pet back off
/return




