• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Check if a mob is undead type, how to do??? (1 Viewer)

Crystane

Well-known member
Joined
Oct 9, 2005
RedCents
736¢
Heya,

I searched and read alot and tried some stuff,
but am unable to find out how to check with a macro
if a mob is undead.
If anyone knows pls let me know.

I want to programm a line like: If mob x = undead ---->cast nuke against undead.

Thx in advance.
 
something like /if ${Target[ID].Body}==Undeath or something like that ...

/echo ${Target[ID].Body} gives the right answer Undeath but how can i put this into an /if ;) ?

i now it every time only to 50% ;) im to stupid to understand the structs
of MQ ...

Maybe someone can explain it ?

army ? godfather of tradeskillmacros :) ?
 
Heya, thx for reply.

First I cant access the topic linked to the MQ boards.....

But the Command lines with the TLO and refference types helped.

Sturmbringer (Kommste aus dt.?)
/if (${Select[${Target.Body},Undead]}) {
/cast "YourSpell"
}
Works just fine,
however my line will look like this
Rich (BB code):
/if (${Target.Body.Equal[Undead]}) /cast ${nukeundead} gem8 3s

I will of course fool around a bit with this select option thingy, seams it offers some neat options.

Thx you 2 for quick answer.
 
Rich (BB code):
/if (${Select[${Target.Body},Undead]}) {
/cast "YourSpell"
}

With this option I can with ease expand the types of body to check like e. g.

Rich (BB code):
/if (${Select[${Target.Body},Undead,Humanoid]}) {
/cast "YourSpell"
}

In this case it would cast the spell on Humanoid and Undead.

Thx I learned more then just one thing on just one question hehe.... and of course my macros will become more sofisticated now... tho I guess I cant spell that word yet haha.
 
Check if a mob is undead type, how to do???

Users who are viewing this thread

Back
Top