Moderator: MacroQuest Developers
Code: Select all
sub main
:loop
/if ${Me.Feigning} /stand
/goto :loop
/return
Code: Select all
Sub Main
:loop
/delay 5
/if (${Me.State.Equal[FEIGN]}) /stand
/goto :loop
/return
Code: Select all
Sub Main
:loop
/delay 99999m ${Me.Feigning}
/stand
/goto :loop
Code: Select all
Sub Main
:loop
/delay 5
/if (!=${Me.State.Equal[standing]}) /stand
/goto :loop
/return
try !${Me.Standing}, though that will also get sitting and ducking so it's not the best thing to use in this case. OP was looking for something to stand when feigned.Pugs wrote:Code: Select all
Sub Main :loop /delay 5 /if (!=${Me.State.Equal[standing]}) /stand /goto :loop /return