I have a general question. Is there a new tag to replace old [Outline] tag? I checked the wiki and I didn't find any info how to outline text in DogTag-3.0.
Very useful Text for Raid Frames.. Works like the Sraidframe unit frames.
[if IsStealthed then
"Stealthed"
end] [if HasIceBlock then
"Iceblock"
end] [if HasInvisibility then
"Invis"
end] [if HasAura("Vanish") then
"Vanished"
end] [if HasAura("Cloak of Shadows") then
"Cloak of Shadows"
end] [if HasAura("Divine Shield") then
"DivineShield"
end] [if HasAura("Power Infusion") then
"Infused"
end] [if HasAura("Intervene") then
"Intervene"
end] [if HasAura("Fear Ward") then
"Fear Ward"
end] [if HasAura("Bloodlust") then
"Bloodlust"
end] [if HasAura("Heroism") then
"Heroism"
end] [if IsShadowform then
"Shadow":Fuchsia
end] [if HasSoulstone then
"Soulstone":Fuchsia
end] [if IsFeignedDeath then
"Feign":Green
end] [if HasMisdirection then
"MisDirection":Green
end] [if HasShieldWall then
"ShieldWall":Red
end] [if HasLastStand then
"LastStand":Red
end] [if HasDivineIntervention then
"Intervention":Red
end] [if HasAura("Food") then
"Eat":Red
end] [if HasAura("Drink") then
"Drink":Red
end] [if HasAura("Seduced") then
"Seduced":Red
end] [if HasAura("Sapped") then
"Sapped":Red
end] [if HasAura("Spirit of Redemption") then
"Spirit of Redem":Red
end] [if HasAura("Blessing of Protection") then
"Blessing of Prot":Red
end] [if HasAura("Innervate") then
"Innervating":Yellow
end] [if HasAura("Evasion") then
"Evading":Yellow
end] [if HasAura("Nature's Grasp") then
"Grasp":Yellow
end] [if HasMagicDebuff then
"Magic":Red
end] [if HasCurseDebuff then
"Cursed":Fuchsia
end] [if HasPoisonDebuff then
"Poisoned":Green
end] [if HasDiseaseDebuff then
"Disea":Yellow
end]
It's still [Outline]. Look in the dogtag help in-game.
Awesome, thanks Seerah. I haven't switched to DogTag-3.0 yet and I recall a post saying there was no outline tag sometime ago. I guess I don't have the excuse to avoid it any longer 8)
I already posted in another topic, but I think it was the wrong one.
I was wondering : It is possible to know how much debuffs you have on a target with DogTag ( [NumDebuffs] ).
But when it comes down to stackable raid debuffs, it seems that multiple stacks of the same debuff are considered as only one debuff.
For example, I would like to know how much arcane buffet debuff stacks are on a specific player during the Kalecgos encounter. Is it possible to get such information with the use of DogTags?
Is there a tag that can return the number of stacks of a specific debuff?
If not, I think it could be a great addition !
[HasAura("Arcane Buffet")? "BUFFET! x " NumAura("Arcane Buffet")]
Should show the text 'Buffet! x 5' for a stack of 5 etc...
Works really nicely. Just tested by duelling a mage with the improved scorch debuff and it works like a charm :)
Just need to edit the text zone to make it work with Lady Sacrolash's Dark Touched and Grand Warlock Alythess' Flame Touched =)
I asked this in another thread, but this looks to be the right place to ask it. Is there a tag for displaying the combat text, similar to what is usually displayed in a unit frame portrait area (shows all incoming damage/heals)?
I asked this in another thread, but this looks to be the right place to ask it. Is there a tag for displaying the combat text, similar to what is usually displayed in a unit frame portrait area (shows all incoming damage/heals)?
I asked this in another thread, but this looks to be the right place to ask it. Is there a tag for displaying the combat text, similar to what is usually displayed in a unit frame portrait area (shows all incoming damage/heals)?
If you are wanting this for PitBull, then there is an actual Combat Text module for this. If not, then no.
If you are wanting this for PitBull, then there is an actual Combat Text module for this. If not, then no.
Any chance of adding it? I'd like to be able to place the text somewhere other than in/near the unit frame. I suppose I could work around it by placing a custom Parrot or MSBT frame, but I was hoping to avoid a kludge.
I'm having an issue with one of my tags and hope someone can point out the problem. I broke the full sequence into separate lines for easy reading:
First line: Shows pinkish period when missing MoW or GoW
Second line: Show brown period when missing Thorns and is Protection specced.
3rd & 4th lines: Show's innervate icon for Holy/Reso specs when mana is under 35%.
Problem I have is with second line. It only seems to work for Paladins. It never shows up for Warriors even though in the tooltip it shows them as Protection.
[(~(HasAura("Mark of the Wild") or HasAura("Gift of the Wild")) ? " . ":Color("F58CBA"))
((TalentTree = "Protection") ? ~HasAura("Thorns") ? " . ":Color("C79C6E"))
(TalentTree:IsIn("Holy", "Restoration") ? (PercentMP < 35) ? ~Dead ? ~HasAura("Innervate") ?
"Interface\Icons\Spell_Nature_Lightning.blp":Icon(15))]
I seem to remember, pre-2.4, that when I used HPColor to color text it would use the colors I set in my health gradient option instead of just green > yellow > red like it does now. Was this functionality removed? I use a deep blue color for my max health frames and the green stands out like a sore thumb!
I have a general question. Is there a new tag to replace old [Outline] tag? I checked the wiki and I didn't find any info how to outline text in DogTag-3.0.
Thanks Oak
Very useful Text for Raid Frames.. Works like the Sraidframe unit frames.
Awesome, thanks Seerah. I haven't switched to DogTag-3.0 yet and I recall a post saying there was no outline tag sometime ago. I guess I don't have the excuse to avoid it any longer 8)
Is there a tag that can return the number of stacks of a specific debuff?
If not, I think it could be a great addition !
eg. [NumAura("Arcane Buffet"):RED]
[HasAura("Arcane Buffet")? "BUFFET! x " NumAura("Arcane Buffet")]
Should show the text 'Buffet! x 5' for a stack of 5 etc...
is it possible with dogtag that i can make the name of the pary/ raid member shorter? that only 4 or 5 letters are shown?
:Truncate(x) where x is the number of letters u want.
i personally use :Truncate(x, ellipses=false) to match the rest of my code.
["myname":Truncate(4)] will show: myna...
["myname":Truncate(4,nil)] will show: myna
Works really nicely. Just tested by duelling a mage with the improved scorch debuff and it works like a charm :)
Just need to edit the text zone to make it work with Lady Sacrolash's Dark Touched and Grand Warlock Alythess' Flame Touched =)
Nope, no combat text tag.
You can see all the available tags on the Wiki: http://forum.wowace.com/wiki/LibDogTag-3.0
If you are wanting this for PitBull, then there is an actual Combat Text module for this. If not, then no.
Any chance of adding it? I'd like to be able to place the text somewhere other than in/near the unit frame. I suppose I could work around it by placing a custom Parrot or MSBT frame, but I was hoping to avoid a kludge.
First line: Shows pinkish period when missing MoW or GoW
Second line: Show brown period when missing Thorns and is Protection specced.
3rd & 4th lines: Show's innervate icon for Holy/Reso specs when mana is under 35%.
Problem I have is with second line. It only seems to work for Paladins. It never shows up for Warriors even though in the tooltip it shows them as Protection.
So something like this:
11.7k / 15.4k - 80%
In pitbull i think thats one of the presets.
i can look it up once i get my wow back online.
but it sould be something simple along the lines of: