Elitist Jerks
Register
Blogs
Urban Rivals
Forums
New Posts


Go Back   Elitist Jerks > Public Discussion > User Interface and AddOns
Elitist Jerks Login

gamerDNA Login

Welcome to Elitist Jerks
We're testing some new features on the site regarding OpenID registration and coordination with gamerDNA. If you experience any issues with registering an account, please take the time to fill out a report and send it to this e-mail address. We would appreciate any assistance you could provide in making sure everything is functioning as intended. Thanks!

If this is your first visit, please be sure to check out the FAQ and the forum rules. Users must register to post and new registrations are subject to a one day "mute" period to get acquainted with the community.

Reply
 
LinkBack (138) Thread Tools
Old 05/11/08, 3:29 PM   4 links from elsewhere to this Post. Click to view. #226
Korvboll
Glass Joe
 
Blood Elf Paladin
 
Shattered Hand (EU)
Thanks, Borona, it did the trick
 
User is offline.
Reply With Quote
Old 05/12/08, 6:40 PM   #227
Kiyathel
Glass Joe
 
Human Mage
 
Uldaman
I'm trying to get a DogTag working that I put together based on a bunch of other tags in this thread, but no matter what I do to it I get a syntax error:

[Outline (if (Class(unit="player") = "Mage") and (HasAura("Arcane Brilliance") then
    ".":Cyan
end) (if (Class(unit="player") = "Mage") and (HasAura("Arcane Intellect") then
    ".":Blue
end) (if (Class(unit="player") = "Priest") and (HasAura("Prayer of Fortitude") then
    ".":White
end) (if (Class(unit="player") = "Priest") and (HasAura("Power Word: Fortitude") then
    ".":Gray
end) (if (Class(unit="player") = "Priest") and (HasAura("Prayer of Shadow Protection") then
    ".":Red
end) (if (Class(unit="player") = "Priest") and (HasAura("Shadow Protection") then
    ".":Fuchsia
end) (if (Class(unit="player") = "Druid") and (HasAura("Gift of the Wild") then
    ".":Yellow
end) (if (Class(unit="player") = "Druid") and (HasAura("Mark of the Wild") then
    ".":Green
end)]
I don't see any reason why it wouldn't work, but it doesn't. Even if I cut it down to just the AB code and no outline, it throws a syntax error. Any ideas?
 
User is offline.
Reply With Quote
Old 05/12/08, 6:52 PM   #228
Soller
Glass Joe
 
Blood Elf Rogue
 
Arygos
I think your problem is you're not closing the conditions properly.


(if (Class(unit="player") = "Mage") and (HasAura("Arcane Brilliance") then
    ".":Cyan
Should be:

(if (Class(unit="player") = "Mage") and (HasAura("Arcane Brilliance")) then
    ".":Cyan
You're just forgetting the second ) on your HasAura conditions
 
User is offline.
Reply With Quote
Old 05/12/08, 7:49 PM   #229
Kiyathel
Glass Joe
 
Human Mage
 
Uldaman
That worked, and, man, do I feel like an idiot now.

Thanks!
 
User is offline.
Reply With Quote
Old 05/14/08, 10:27 PM   #230
Imbar
Piston Honda
 
Imbar's Avatar
 
Blood Elf Paladin
 
Galakrond
Anyone know how to hide a PercentXP tag when the player (me) is max level? Hide(0) doesn't work, and I know there should be a way to use MaxLevel or something similar.

I read Banhammer posts when I'm having a bad day.
 
User is offline.
Reply With Quote
Old 05/15/08, 1:19 AM   #231
Atallicus
Von Kaiser
 
Atallicus's Avatar
 
Blood Elf Mage
 
Ner'zhul
Just need help with a couple dogtags I am having trouble with please. First one I want this to show their name OR dead/offline/afk. Right now it shows Ata...dead.

[ClassColor Name:Truncate(3)] [Offline or AFK or DeadType]

And this second one. I'd like it to show just dead ghost or afk, but for example when dead it says 0DEAD.

[ClassColor(unit="target", value=HP)] [Offline or AFK or DeadType].

Help is appreciated, thankyou. I'm sort of getting the hand of harder tags now, but some still just confuse me.
 
User is offline.
Reply With Quote
Old 05/15/08, 11:56 AM   #232
Gearknight
Don Flamenco
 
Dwarf Hunter
 
Kul Tiras
Originally Posted by Imbar View Post
Anyone know how to hide a PercentXP tag when the player (me) is max level? Hide(0) doesn't work, and I know there should be a way to use MaxLevel or something similar.
Drycoding, but simple enough that it ought to work:

[not IsMaxLevel ? PercentXP]

Originally Posted by Atallicus View Post
Just need help with a couple dogtags I am having trouble with please. First one I want this to show their name OR dead/offline/afk. Right now it shows Ata...dead.

[ClassColor Name:Truncate(3)] [Offline or AFK or DeadType]
[Offline or AFK or DeadType or (ClassColor Name:Truncate(3))]

Originally Posted by Atallicus View Post
And this second one. I'd like it to show just dead ghost or afk, but for example when dead it says 0DEAD.

[ClassColor(unit="target", value=HP)] [Offline or AFK or DeadType].
Similarly,

[Offline or AFK or DeadType or ClassColor(unit="target", value=HP)]
 
User is offline.
Reply With Quote
Old 05/15/08, 3:20 PM   #233
Atallicus
Von Kaiser
 
Atallicus's Avatar
 
Blood Elf Mage
 
Ner'zhul
Works perfect, I guess I don't understand why you have to turn the tag around to put the OR in. I'll figure this out yet. One more question. I have this tag:

[ClassColor Level] [White Name:Truncate(15)] [ClassColor PercentHP:Percent]

It works perfectly, except that any names longer than 15 letters show ... after being truncated. So far example it says:
70 Haggard War Vet...100% Is there any way to get rid of the ...?

Thankyou much for the help.

Also, the tags from my above post. Now if you target a dead player it says BadUnit: Dead. Is there anyway to stop that?

Last edited by Atallicus : 05/15/08 at 4:05 PM.
 
User is offline.
Reply With Quote
Old 05/15/08, 4:53 PM   #234
Gearknight
Don Flamenco
 
Dwarf Hunter
 
Kul Tiras
To remove the ... after a truncated name, use :Truncate(15, nil)

As for your BadUnit problem, I can't reproduce it. Where are you using these tags, on a target frame?
 
User is offline.
Reply With Quote
Old 05/15/08, 5:07 PM   #235
Atallicus
Von Kaiser
 
Atallicus's Avatar
 
Blood Elf Mage
 
Ner'zhul
Originally Posted by Gearknight View Post
To remove the ... after a truncated name, use :Truncate(15, nil)

As for your BadUnit problem, I can't reproduce it. Where are you using these tags, on a target frame?
I actually figured out the badunit issue. It was a problem with my percent tag on my target frame, it didn't include the offline or afk or dead part, so it just showed badunit. It's all fixed though. Thankyou for the help on the truncate, it was driving me crazy seeing all those little dots.
 
User is offline.
Reply With Quote
Old 05/15/08, 5:19 PM   #236
Hiashi
Glass Joe
 
Blood Elf Priest
 
Dethecus
Syntax FTL

Wanted to know if anyone has the new syntax for classes. No longer shows if a mob is elite, boss, or rare mob. Used to show, Elite 72 Humanoid, or Rare 68 Undead, Boss ?? Demon, or for players just 70 Blood Elf Rogue. I would appreciate the help here.

THnx
 
User is offline.
Reply With Quote
Old 05/16/08, 10:37 AM   #237
Ramone
Glass Joe
 
Tauren Hunter
 
Runetotem
Hey folks, i just wanted to bump an unanswered request from earlier in the thread. Is there a way of displaying dynamic attack speed through dogtags? As a Hunter it'd be really useful to know how hasted i am at all times so i can jump between rotations. I currently have to consult the character window 15 times per fight

Thanks in advance.
 
User is offline.
Reply With Quote
Old 05/16/08, 4:09 PM   #238
Borona
Piston Honda
 
Dwarf Warrior
 
Blackrock (EU)
I don't think there is any dogtag that could do this but I would recommend StatsBlocks and the RangedStats plugin.

Links: http://files.wowace.com/StatBlocks/StatBlocks.zip, http://files.wowace.com/StatBlocks_R...angedStats.zip
 
User is offline.
Reply With Quote
Old 05/17/08, 12:04 AM   #239
Ramone
Glass Joe
 
Tauren Hunter
 
Runetotem
Brilliant Borona, thats exactly what i was looking for. Thanks a bunch
 
User is offline.
Reply With Quote
Old 05/17/08, 1:05 PM   #240
Intoxify
Von Kaiser
 
Intoxify's Avatar
 
Blood Elf Paladin
 
Mal'Ganis
Looking for a bit of help to clean up my tags, if anyone's up to the task.

(if HasAura("Polymorph") then
("+ " White AuraDuration("Polymorph"):FormatDuration " ")
end)

I've gotten this working, but I would like it to only display the + if the Polymorph is not mine, but I have no idea on how to do that. I'd also like to change the format of the duration to just time remaining in seconds. Currently, the tag looks like:

+ 00:XX

I would like it to be XX when the polymorph is my own, and + if the polymorph is someone else's.
 
User is offline.
Reply With Quote
Old 05/17/08, 8:41 PM   #241
Houseplant
Oxgoose
 
Houseplant's Avatar
 
Undead Rogue
 
Quel'dorei
Need help with this one
[Classification] [Level:DifficultyColor] [(if (IsEnemy or (IsPet and not IsPlayer)) then
    SmartRace
end):ClassColor] [(if IsPlayer (and not IsPet or IsEnemy)) then 
    SmartRace
end)]

I want it so that if i have an enemy or pet targeted it colors the race the class color, but if i have a player targeted i want it just to have the race.

 
User is offline.
Reply With Quote
Old 05/18/08, 4:57 PM   #242
Loozi
Glass Joe
 
Gnome Mage
 
Grim Batol (EU)
Originally Posted by Sethik View Post
Had a few requests for updated tags for my CowTip styles:



LEFT:

[Level:White] [NameRealm:ClassColor] [Classification:Paren]
[if Guild then Guild:Angle:Green " " GuildRank:Paren:Color("caf6c8") else " " end]
[(if IsPlayer and IsFriend then (if TalentSpec then TalentTree " " TalentSpec:Paren:Gray else "Loading..." end) end) (if IsUnit("pet") then HappyText end)]
[Zone]
[if IsUnit("player", Target) then Red "Targeting << You >>" elseif Target:NameRealm then "Targeting <" Target:NameRealm:ClassColor(Target) ">" end]

RIGHT:

[Faction or SmartRace]
[if Faction then SmartRace end]
[if IsPlayerOrPet then PercentHP:Percent:HPColor elseif InCombat then PercentHP:Percent:HPColor end]
Something I whipped up last night:



And if the CC is your own:



Yes, it is as good as it looks. Works with focus, target, whatever you like. Position is Frame - Edge, Top Middle.

[if HasAura("Freezing Trap Effect") or HasAura("Polymorph") or HasAura("Sap") or HasAura("Gouge") or HasAura("Seduce") or HasAura("Banish") or HasAura("Fear") or HasAura("Howl of Terror") or HasAura("Intimidating Shout") or HasAura("Entangling Roots") or HasAura("Cyclone") or HasAura("Hibernate") or HasAura("Psychic Scream") or HasAura("Blind") or HasAura("Repentance") then
    (Outline "*Crowd Control* " Gray AuraDuration("Freezing Trap Effect"):FormatDuration("s"):Paren AuraDuration("Polymorph"):FormatDuration("s"):Paren AuraDuration("Sap"):FormatDuration("s"):Paren AuraDuration("Gouge"):FormatDuration("s"):Paren AuraDuration("Seduce"):FormatDuration("s"):Paren AuraDuration("Banish"):FormatDuration("s"):Paren AuraDuration("Fear"):FormatDuration("s"):Paren AuraDuration("Howl of Terror"):FormatDuration("s"):Paren AuraDuration("Intimidating Shout"):FormatDuration("s"):Paren AuraDuration("Entangling Roots"):FormatDuration("s"):Paren AuraDuration("Cyclone"):FormatDuration("s"):Paren AuraDuration("Hibernate"):FormatDuration("s"):Paren AuraDuration("Psychic Scream"):FormatDuration("s"):Paren AuraDuration("Blind"):FormatDuration("s"):Paren AuraDuration("Repentance"))
end]
Pseudo code for the above is:

[if HasAura("CC") then (Outline "*Crowd Control* " Gray AuraDuration("CC"):FormatDuration("s"):Paren) end]

Enjoy!
hi i have been trying to get the crowdcontrol dogtag to work , but i cant manage to get it t work , i have pasted the code into pibull->target->texts->other->new one i made. but when i polymorph a target i get big error message with the whole code over the screen.

i would like to know what i am doing wrong , i have as i said only copied and pasted the above code but it doesnt work for me.
 
User is offline.
Reply With Quote
Old 05/18/08, 6:44 PM   #243
MaveN
Von Kaiser
 
Draenei Shaman
 
Uldum
Im curious, what would be the dogtag for pitbull to get your health text like 9000.9000? Instead of the "/" inbetween the health i want a period, i tried a few ways but couldnt get it. Does anyone know? Thanks in advanced!
 
User is offline.
Reply With Quote
Old 05/19/08, 12:26 AM   #244
Evilnes
Glass Joe
 
Undead Warrior
 
Laughing Skull (EU)
Originally Posted by MaveN View Post
Im curious, what would be the dogtag for pitbull to get your health text like 9000.9000? Instead of the "/" inbetween the health i want a period, i tried a few ways but couldnt get it. Does anyone know? Thanks in advanced!
[HP].[MaxHP]

Originally Posted by Hiashi View Post
Wanted to know if anyone has the new syntax for classes. No longer shows if a mob is elite, boss, or rare mob. Used to show, Elite 72 Humanoid, or Rare 68 Undead, Boss ?? Demon, or for players just 70 Blood Elf Rogue. I would appreciate the help here.

THnx
[Classification] [Level] [SmartRace] [IsPlayer ? Class]

Originally Posted by Houseplant View Post
Need help with this one
[Classification] [Level:DifficultyColor] [(if (IsEnemy or (IsPet and not IsPlayer)) then
    SmartRace
end):ClassColor] [(if IsPlayer (and not IsPet or IsEnemy)) then 
    SmartRace
end)]

I want it so that if i have an enemy or pet targeted it colors the race the class color, but if i have a player targeted i want it just to have the race.
[Classification] [Level:DifficultyColor] [IsEnemy | IsPet ? SmartRace:ClassColor] [IsPlayer ? SmartRace]

Last edited by Evilnes : 05/19/08 at 12:54 AM.
 
User is offline.
Reply With Quote
Old 05/19/08, 1:28 PM   #245
Ephilo
Glass Joe
 
Gnome Mage
 
Hakkar (EU)
Originally Posted by Loozi View Post
hi i have been trying to get the crowdcontrol dogtag to work , but i cant manage to get it t work , i have pasted the code into pibull->target->texts->other->new one i made. but when i polymorph a target i get big error message with the whole code over the screen.

i would like to know what i am doing wrong , i have as i said only copied and pasted the above code but it doesnt work for me.
It's format duration the issue

use this:

[if HasAura("Polymorph") then
"Sheep:" AuraDuration("Polymorph"):FormatDuration
end]
 
User is offline.
Reply With Quote
Old 05/19/08, 3:50 PM   #246
Papajan
Piston Honda
 
Gnome Mage
 
Lightbringer
I tried looking over the Wiki for DogTags and searching in this thread, but I came up blank -- would it be possible to redo the combo points display in PitBull with DogTags? The current display is much too small and there isn't a config in PitBull to make it better.
 
User is offline.
Reply With Quote
Old 05/20/08, 5:50 AM   #247
iuron
Glass Joe
 
Night Elf Rogue
 
Kargath (EU)
Alternative display of combo points

Of course you can either disable the standard combo point display and create a new text. Unfortunately it seems as if you can't change the included dog tag in pitbull to modify the data output

But if only size and position is what you want to modify, you can simply use the Pitbull settings (target-->texts-->combos) and change size (scaling) and position. I just use a big number above the target frame in the middle and it made it much easier to watch out for them.

Last edited by iuron : 05/20/08 at 6:26 AM.
 
User is offline.
Reply With Quote
Old 05/21/08, 12:13 PM   #248
Ohi
I have evil ovaries.
 
Ohi's Avatar
 
Gnome Mage
 
Thunderlord
What I'm trying to do is this. I have small grid type boxes for raid frames. I would like the name to be trunc'd to 5, class colored, and when they are AFK/Offline/Dead I would like the name gone, no time, just the AFK/Offline(Off)/Dead written in the box. White for AFK, Blue for Offline(Off), and Red for dead.

Is this at all possible?

I'm so not good at coding, just designing, so if anyone could help me out with this, I would appreciate it so much!
 
User is offline.
Reply With Quote
Old 05/21/08, 1:48 PM   #249
Tecknologik
Glass Joe
 
Orc Shaman
 
Ysondre
Recently I have been in the need of a dogtag that will show buffs/debuff I specify on my focus frame. In particular, I want to see when the target has divine shield, divine illumination, and innervate. Debuffs will be the same code I figure but just be attached to a different anchor but I want to see forbearance and Hypothermia.

The idea behind this is I want to see when my focus target (usually a healer or caster if no healer present) has a buff that helps him regain mana or a debuff that makes him vulnerable to attack.

The basic idea behind it I can figure out as far as displaying the icons. I am getting stuck trying to figure out how to display more then one icon at the same time. For example, if a target has divine shield and divine illumination or forbearance and hypothermia.

I am basically starting with this from a earlier post:
"if HasAura("Polymorph") then
"Interface/Icons/Spell_Nature_Polymorph":Icon"
but I don't believe this will show multiple buffs/debuffs at the same time using a if...else statement.

Anyone have some insight into this? I have not tried yet looking into a mod that might allow me to specify showing only these debuffs since most buff/debuff mods do not have specific spell filtering, more specific type of debuff filtering.
 
User is offline.
Reply With Quote
Old 05/21/08, 2:08 PM   #250
 Adoriele
Ninja baby!
 
Adoriele's Avatar
 
Night Elf Druid
 
Dragonblight
Originally Posted by Tecknologik View Post
Anyone have some insight into this? I have not tried yet looking into a mod that might allow me to specify showing only these debuffs since most buff/debuff mods do not have specific spell filtering, more specific type of debuff filtering.
Have you tried Elkano's Buff Bars yet? It's great at filtering buffs/debuffs (with the caveat that in order to filter them, you must have seen them at least once since you installed it).
 
User is offline.
Reply With Quote
Reply

Go Back   Elitist Jerks > Public Discussion > User Interface and AddOns

Thread Tools


Similar Threads
Thread Thread Starter Forum Replies Last Post
[DogTags] - Share yours! Fulnir User Interface and AddOns 164 03/30/08 2:30 AM