Monk FD training macro?
Posted: Wed Jun 07, 2006 12:26 am
is there any macro that can help a monk to train up Feign Death skills while i am sleeping? thx
Need to talk about MacroQuest to other MacroQuest users?
https://mq64.org/phpBB3/
Code: Select all
Sub Main
:foreverloop
|If I am not standing, try to stand
/if (!${Me.Standing}) /stand
|Wait until I am standing before proceeding
/delay 60000 ${Me.Standing}
|Make sure I am standing and that Feign Death is ready
|If so, go ahead and Feign Death
/if (${Me.Standing} && ${Me.AbilityReady[Feign Death]}) /doability "feign death"
|Wait until Feign Death is ready before proceeding
/delay 60000 ${Me.AbilityReady[Feign Death]}
|Restart the loop
/goto :foreverloop
That's all I get? I take a whole 9.5 minutes out of my day to give you a good example of a macro and all you can say is "thx"? You can't even spell it out?mansonshum wrote:thx~
Code: Select all
Sub Main
:foreverloop
/delay 200606081524 ${Me.AbilityReady[Feign Death]}
/doability "feign death"
/goto :foreverloop
/endBasically the delay doesn't really matter. As soon as FD is ready it will release from the delay and continue on just like the good little conditional delay it is.IRC wrote:[10:30] EQUser2002_: Is /delay 60000 what you meant to type? ;)
[10:32] Griffin: ?
[10:32] fearless: yes
[10:33] EQUser2002_: Sorry, that was for fearless... 60000 seemed like a bit of a long delay to use for FD training... ;)
[10:33] Griffin: 60000ms? 6 seconds?
[10:33] EQUser2002_: Oh, it's a unit thing... Nm, I thought he was screwing with the guy.
[10:33] fearless: if you stick yourself under a table and you can't stand up it's not good to keep trying to stand up every 5ms . .. looks a bit funky
[10:33] aebard|work: I bet the guy is actually running what you wrote
[10:34] fearless: 60000 is 60000 s
[10:34] EQUser2002_: So you were... I thought so. 8)
[10:35] fearless: I'm not really screwing with the guy, it will work lickity split as long as he's out in the open
[10:35] fearless: the two delays will actually ONLY delay until you are standing up, and until FD is ready again . .. if either of those fail then the macro won't continue for a REALLY long time
[10:36] aebard|work: basically 16 2/3 hours ;)
[10:36] aebard|work: i think REALLY was an understatement
[10:37] fearless: okay . . . that may be a bit long
just a little gmt for ya.Rezo wrote:hehe. Nice edit.
Code: Select all
Sub Main
:loop
/if (${Me.AbilityReady[Feign Death]}) /doability "Feign Death"
/delay 30
/if (${Me.AbilityReady[Mend]}) /doability "Mend"
/delay 10
/if (${Me.AbilityReady[Sneak]}) /doability "Sneak"
/delay 10
/doability Sneak
/delay 10
/goto :loop