I was wondering if anyone had or could make a macro that casted feign death if your hp dropped below a certain percentage, then waited untill the mob was out of a set radius, then mounted you.
Because this would be really nice as a necro. Thanks.
Moderator: MacroQuest Developers
Not really sure that's something I would want in a macro.....Sarr wrote: then mounted you.
It's easily something I could do myself, so I don't quite understand the problem.LrdDread wrote:Not really sure that's something I would want in a macro.....Sarr wrote: then mounted you.
necro023, "Ok, they are all gone... go for it, do me MQ!"
Code: Select all
Sub Main
:mainloop
/if (${Me.PctHPs}<20) {
/cast Feign Death
}
/if (${Target.Distance}>200 && ${Me.Feigning}) /stand
/goto :mainloop
/returnThanks a lot Methodx.methodx wrote:LrdDread: HAHA /if (${Me.Ass.Lubed}) /mount
NE-way:
The problem with this is that if you're moving, you will interrupt the cast... so not really much use unless you stop in time... I dont have any ideas... if you use MQ2MoveUtils that will stop you when you cast, doesnt always work though.Code: Select all
Sub Main :mainloop /if (${Me.PctHPs}<20) { /cast Feign Death } /if (${Target.Distance}>200 && ${Me.Feigning}) /stand /goto :mainloop /return
Rather than feigning, if you're somewhere along and quiet you could always do a /keypress instant_camp -- I'm not sure how detectable that is however, could be a 1way ticket to ban land.