Originally Posted by Aeshai
I am looking for some dog-tags that work similar to the crowd control tag I have seen featured here. Bascially, instead of showing all the debuff auras on a raid frame, I would like my tag to say something like Magic Debuff or Disease, so I can quickly use my mouse over macro to cure or dispell. Is anyone able to help me?
|
I use the following on my raid frames:
[Outline][(if (Class("player") = "Mage") then
(if HasCurseDebuff then
"CURSE":Color("8000FF")
end)
elseif (Class("player") = "Shaman") then
(if HasAura("Fel Rage") then
"HEAL":Color("FF0000")
elseif (HasCurseDebuff or HasDiseaseDebuff or HasPoisonDebuff) then
"CURE":Color("FF0000") (if HasCurseDebuff then
" C":Color("8000FF")
end) (if HasDiseaseDebuff then
" D":Color("8C2600")
end) (if HasPoisonDebuff then
" P":Color("00FF00")
end)
end)
end)]
Basically, if on my mage, it will show a big purple "CURSE" over the raidmember who has the curse. If on my shaman, it will show "CURE" in red if it has any curse/disease/poison, followed by the type of debuff as a single letter. Purple "C" for curse, brown "D" for disease, and green "P" for poison. That dogtag also has some custom Bloodboil code reminding me which target has Fel Rage which you probably dont need.