Elitist Jerks
Register
Blogs
Forums


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

Closed Thread
 
LinkBack Thread Tools
Old 03/12/08, 10:41 AM   #46
Joetest
Glass Joe
 
Joetest's Avatar
 
Human Priest
 
Ner'zhul
Does the mod developer have to create support ofr Dogtags for his addon in order for users to add in strings etc? if so, is there a list out there of all the addons that support Dogtags?

Offline
Old 03/12/08, 11:01 AM   #47
Dietrich
Glass Joe
 
Dwarf Death Knight
 
Dragonmaw
Originally Posted by Delita View Post
Enhancer is a shaman mod that displays how far you are away from your totems, and in green says if you're in range, and red out of range, and this takes into account your talent spec, so there is a way, I just don't know it.
Enhancer tracks your x,y,z location when you drop your totem and your current x,y,z location. Since totems don't move (unlike mobs and players), this is a workable solution.

Offline
Old 03/12/08, 11:20 AM   #48
Joetest
Glass Joe
 
Joetest's Avatar
 
Human Priest
 
Ner'zhul
if you actually want to read into an addon that does distance and ranges very well for every class etc you may want to check out Distance2. I'm sure somewhere in there you can find something to tie into to list ranges with dogtags.

Offline
Old 03/13/08, 1:09 PM   #49
Shinwei
Von Kaiser
 
Shinwei's Avatar
 
Draenei Shaman
 
Lightbringer
Does anyone know how to remove the time display from the AFK and DND dogtags?

e.g. I want my Pitbull frames to display if someone is AFK or DND or Dead or Ghost status but I don't want to know how long they've been that way because it takes up too much space.

Offline
Old 03/13/08, 1:55 PM   #50
clairecakes
Von Kaiser
 
clairecakes's Avatar
 
Orc Death Knight
 
Thunderlord
Originally Posted by Shinwei View Post
Does anyone know how to remove the time display from the AFK and DND dogtags?

e.g. I want my Pitbull frames to display if someone is AFK or DND or Dead or Ghost status but I don't want to know how long they've been that way because it takes up too much space.
[AFKDND]
instead of

[AFKDND:Angle]

Offline
Old 03/13/08, 2:39 PM   #51
vaff
Von Kaiser
 
Murloc Mage
 
Boulderfist (EU)
Originally Posted by clairecakes View Post
[AFKDND]
instead of

[AFKDND:Angle]
Hmn no, that doesnt change it .... that would just make it look like this xx <afk x.xx> instead of xx af x.xx

Offline
Old 03/13/08, 5:09 PM   #52
Delita
Von Kaiser
 
Blood Elf Paladin
 
Sargeras
Try truncating the AFKDND tag to 3 letters.

Offline
Old 03/13/08, 7:21 PM   #53
Ajuga
Piston Honda
 
Ajuga's Avatar
 
Undead Mage
 
Jaedenar (EU)
Originally Posted by Shinwei View Post
Does anyone know how to remove the time display from the AFK and DND dogtags?

e.g. I want my Pitbull frames to display if someone is AFK or DND or Dead or Ghost status but I don't want to know how long they've been that way because it takes up too much space.
[Dead?Text(Dead)!Offline?Text(Offline)!AFK?Text(AFk)]
Copied off of Caithlyn's UI - just add DND to it.

Offline
Old 03/13/08, 9:18 PM   #54
Balroy
Von Kaiser
 
Dwarf Hunter
 
Uldum
Is there anyway to -delete- dogtags that your not using? All i can find is the "enable" option, anyone know how to delete the ones you dont want?

Offline
Old 03/14/08, 7:01 AM   #55
finduluin
Von Kaiser
 
Night Elf Rogue
 
Sargeras (EU)
Originally Posted by Balroy View Post
Is there anyway to -delete- dogtags that your not using? All i can find is the "enable" option, anyone know how to delete the ones you dont want?
- delete the DogTag line or the part you don't want;
- uncheck 'enable' to disable the DogTag.
- or be clearer on what you want to ask.

Save a forum,
Read a post-it.

Finduluin UI@Curse.com

Offline
Old 03/14/08, 7:34 AM   #56
Malag
Von Kaiser
 
Orc Shaman
 
Grim Batol (EU)
Is it possible to do something like:

[HasAura(Power Word: Fortitude) and HasAura(Prayer of Fortitude) = false ? Text(F):White]
?

Of course, I can't get this line to work... but maybe there's something cool I've overlooked.
And yeah, it's for tracking missing debuffs across a raid/party.

Offline
Old 03/14/08, 7:41 AM   #57
Beska
Von Kaiser
 
Beska's Avatar
 
Human Mage
 
The Venture Co (EU)
Originally Posted by Malag View Post
Is it possible to do something like:

[HasAura(Power Word: Fortitude) and HasAura(Prayer of Fortitude) = false ? Text(F):White]
?

Of course, I can't get this line to work... but maybe there's something cool I've overlooked.
And yeah, it's for tracking missing debuffs across a raid/party.
I use this following code that does the same thing for Arcane Intellect:

[IsMana ? ~Status ? ~HasAura(Arcane Intellect) ? ~HasAura(Arcane Brilliance) ? Text(Int):Color(99ccff)]
It shows "Int" when a target DOESN'T have Arcane Int/Brilliance, I find it more clearer. For you wanting "F" to show when somebody does have the buff, it'll look something like:

[~Status ? HasAura(Power Word: Fortitude) ? HasAura(Prayer of Fortitude) ? Text(F):Color(ffffff)]

Offline
Old 03/14/08, 8:05 AM   #58
Malag
Von Kaiser
 
Orc Shaman
 
Grim Batol (EU)
Thank you Beska, much love and happiness

And yeah, I did want it to show only when the buff was not present (hence the 'false' I tried to squeeze in, hehe)

Offline
Old 03/14/08, 8:37 AM   #59
Beska
Von Kaiser
 
Beska's Avatar
 
Human Mage
 
The Venture Co (EU)
Originally Posted by Malag View Post
Thank you Beska, much love and happiness

And yeah, I did want it to show only when the buff was not present (hence the 'false' I tried to squeeze in, hehe)
Oh, in which case just add a "~" before the "HasAura" and it'll only show the text when a player doesn't have the buff!

Offline
Old 03/14/08, 10:12 AM   #60
Lionus
Von Kaiser
 
Human Paladin
 
Turalyon (EU)
I've been trying to get this to work
[HasDebuffType(Mortal Strike) ? Text(MS)] but it doesn't show up on the targetframe.

It doesn't give errors though. When i did other dogtags wrong, an error would show up on the frame.

Offline
Closed Thread

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

Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
I thought I would share the best site ever just in wow Public Discussion 7 12/27/05 11:46 AM