Originally Posted by Malag
Is it possible to do something like:
[HasAura(Power Word: Fortitude) and HasAura(Prayer of Fortitude) = false ? Text(F):White]
?
Of course, I can't get this line to work... but maybe there's something cool I've overlooked.
And yeah, it's for tracking missing debuffs across a raid/party.
|
I use this following code that does the same thing for Arcane Intellect:
[IsMana ? ~Status ? ~HasAura(Arcane Intellect) ? ~HasAura(Arcane Brilliance) ? Text(Int):Color(99ccff)]
It shows "Int" when a target DOESN'T have Arcane Int/Brilliance, I find it more clearer. For you wanting "F" to show when somebody does have the buff, it'll look something like:
[~Status ? HasAura(Power Word: Fortitude) ? HasAura(Prayer of Fortitude) ? Text(F):Color(ffffff)]