I've seen in some posts that to track when your magma totem is missing, you go to "Status -Totem... so one so forth) but that doesn't appear to be an option. In the Spell > Totem trigger options, the only option I see is remaining time. Problem is "missing" is technically "remaining time < 3" (which Im using as a warning currently) but if it's flat out missing, it doesn't trigger. Please advise?
#How to track missing magma totem?
13 messages · Page 1 of 1 (latest)
Thanks that's very helpful. Is there a way to do the same thing without a name, but with the totem number? In other words to display an aura if totem 2 or 3, etc is missing?
i figured out how to display the timers permanently, so they're empty if the totem isn't down, but I'd like to only display if that particular totem number is missing
Is this for Classic/BC/Wrath or Retail? Because totem # isn't reliable for a fire totem in Retail.
wrath
See "Totem Number" and Inverse for totem missing.
I don't think you get an inverse option on the number actually... IIRC
If you want to check whether your fire totem, of any description is missing, then copy the above trigger for every fire totem you can cast, remove the inverse tick, and add each fire totem by name.
Then make a custom trigger activation that's
function(t)
return not (t[1] or t[2] or t[3] or t[4] or t[5])
end
For how many fire totems you have
Well you don't need a custom activation for all "or`, you'd use "Any".
But if you wanted to check for any missing fire then you'd make a single trigger for the totem number and an always active trigger then invert in custom activation probably.
Yeah you want "not all" / any