Stand Up macro?

Have a macro idea but not sure where to start? Ask here.

Moderator: MacroQuest Developers

Paradigm68
a hill giant
a hill giant
Posts: 275
Joined: Wed Dec 08, 2004 4:37 pm

Stand Up macro?

Post by Paradigm68 » Fri Mar 17, 2006 8:48 pm

There are a few mobs in the game that proc/cast an Feign Death. Are there any macros out there that will automatically stand the toon up once they are FD?

I did a search, but nothing came up.

Thanx

Harden
a hill giant
a hill giant
Posts: 244
Joined: Thu Aug 25, 2005 8:23 pm

Post by Harden » Fri Mar 17, 2006 8:53 pm

Code: Select all

sub main
   :loop
      /if ${Me.Feigning} /stand
   /goto :loop
/return
something like that should work.
-Harden
I wanna be a Macro Writer when I grow up!

DeeGee
a ghoul
a ghoul
Posts: 116
Joined: Wed Sep 22, 2004 4:51 pm

Post by DeeGee » Fri Mar 17, 2006 9:00 pm

Code: Select all

Sub Main
	:loop
	/delay 5
	/if (${Me.State.Equal[FEIGN]}) /stand
	/goto :loop
/return

Paradigm68
a hill giant
a hill giant
Posts: 275
Joined: Wed Dec 08, 2004 4:37 pm

Post by Paradigm68 » Sat Mar 18, 2006 6:45 pm

You guys rock - thanks for taking the time to do that for me!

Gameross
a lesser mummy
a lesser mummy
Posts: 46
Joined: Mon May 03, 2004 10:11 am

Post by Gameross » Tue Apr 18, 2006 4:54 am

As short and cpu effiecient as it gets.

Code: Select all

Sub Main

:loop
/delay 99999m ${Me.Feigning}
/stand
/goto :loop

Pugs
a lesser mummy
a lesser mummy
Posts: 41
Joined: Tue May 11, 2004 11:38 pm

Post by Pugs » Tue Apr 18, 2006 10:54 am

Code: Select all

Sub Main
   :loop
   /delay 5
   /if (!=${Me.State.Equal[standing]}) /stand
   /goto :loop
/return

User avatar
fearless
Not a Psychic
Posts: 2684
Joined: Wed Mar 10, 2004 3:52 pm

Post by fearless » Tue Apr 18, 2006 11:03 am

Pugs wrote:

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.
Reading . . . it's not just for me.

[url=http://www.catb.org/~esr/faqs/smart-questions.html]How To Ask Questions The Smart Way[/url]
[quote="Ccomp5950"]Fearless showed me the light, you too shall learn.[/quote]

xyilla
naggy
naggy
Posts: 27391
Joined: Sun Feb 23, 2025 5:36 am

Re: Stand Up macro?

Post by xyilla » Wed Jul 09, 2025 6:12 pm


xyilla
naggy
naggy
Posts: 27391
Joined: Sun Feb 23, 2025 5:36 am

Re: Stand Up macro?

Post by xyilla » Wed Jul 09, 2025 6:49 pm


xyilla
naggy
naggy
Posts: 27391
Joined: Sun Feb 23, 2025 5:36 am

Re: Stand Up macro?

Post by xyilla » Wed Jul 09, 2025 6:50 pm


xyilla
naggy
naggy
Posts: 27391
Joined: Sun Feb 23, 2025 5:36 am

Re: Stand Up macro?

Post by xyilla » Wed Jul 09, 2025 6:52 pm


xyilla
naggy
naggy
Posts: 27391
Joined: Sun Feb 23, 2025 5:36 am

Re: Stand Up macro?

Post by xyilla » Wed Jul 09, 2025 6:53 pm


xyilla
naggy
naggy
Posts: 27391
Joined: Sun Feb 23, 2025 5:36 am

Re: Stand Up macro?

Post by xyilla » Wed Jul 09, 2025 6:54 pm


xyilla
naggy
naggy
Posts: 27391
Joined: Sun Feb 23, 2025 5:36 am

Re: Stand Up macro?

Post by xyilla » Wed Jul 09, 2025 6:56 pm


xyilla
naggy
naggy
Posts: 27391
Joined: Sun Feb 23, 2025 5:36 am

Re: Stand Up macro?

Post by xyilla » Wed Jul 09, 2025 6:57 pm