Originally Posted by ghepip
Hey, im trying to make/find a dogtag that, when i used "incinerate" it will reduce "x" by one and when "x" are used it will simply reset.
is that possible?
|
I don't think so. But if you are trying to count the number of incinerates left in your rotation before refreshing Immolate, I think you could do it by dividing AuraTimeLeft(Immolate) with the cast time of your incinerate.
[Edit] I would try something like this (disclaimer: not tested
at all, may need some tweaking:
[if AuraTimeLeft(Immolate) <= 1.5 then
"Immolate":RED
else
Floor((AuraTimeLeft(Immolate)-1.5)/2.25) :ORANGE
]
It needs to be adapted to the "real" cast time of your Incinerate/Immolates, depending of your spec and your haste rating.