Elitist Jerks
Register
Blogs
Forums


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

Closed Thread
 
LinkBack Thread Tools
Old 03/17/08, 6:39 PM   #76
Kyth
Professional Windmill Tilter
 
Kyth's Avatar
 
Kythra
Orc Warlock
 
No WoW Account
Originally Posted by Sajukar View Post
Kyth: You may want to check StatBlocks (StatBlocks: Official Thread), someone has already created a DogTag module for it, not sure how it works (as in how it finds out what's the "Subject" of the DogTag) but it should provide you with the functionality you need.
It doesn't work at all in any way. And since I can just use mHUD right now, I don't have the interest in fixing it.

I'll keep an eye on if Orion or someone else actually makes it work though.

United States Offline
Old 03/17/08, 6:53 PM   #77
Eph
Don Flamenco
 
Eph's Avatar
 
Human Paladin
 
Kil'Jaeden
There is a tag modifier to specify which unit a tag relates to, but I couldn't even find the DogTag module for StatBlocks to test it out. It is an interesting mod though, I'm using it for the clock, latency, and caster stats now, so thanks for the link.

United States Offline
Old 03/17/08, 7:00 PM   #78
Kyth
Professional Windmill Tilter
 
Kyth's Avatar
 
Kythra
Orc Warlock
 
No WoW Account
The "module" is a solitary, drycoded lua from Orion that I couldn't get to work with about 15-20 minutes worth of work. It's attacted as a download on the first or second page. You'll need to create a toc, fix at least one typo (missing comma on line 31(?)), and then start figuring out what else is missing from it.

United States Offline
Old 03/18/08, 10:05 PM   #79
Balroy
Von Kaiser
 
Dwarf Hunter
 
Uldum
Does anyone know what is the dogtag to get your raid group on your unit frame?

Offline
Old 03/18/08, 10:22 PM   #80
Eucharion
Von Kaiser
 
Human Death Knight
 
Moonglade (EU)
Should just be [RaidGroup]. In brackets, would be [RaidGroup:Paren]

At least, if the http://www.wowace.com/wiki/DogTag-1.0/Tags is right.

Offline
Old 03/18/08, 10:30 PM   #81
Eph
Don Flamenco
 
Eph's Avatar
 
Human Paladin
 
Kil'Jaeden
Yeah, its
[Raidgroup]

United States Offline
Old 03/18/08, 10:38 PM   #82
Balroy
Von Kaiser
 
Dwarf Hunter
 
Uldum
thank you very much =D

Offline
Old 03/19/08, 12:09 AM   #83
dinesh
Piston Honda
 
Gnome Rogue
 
Dalaran
Is there any way to see if you have a Weapon buff/aura up using DogTags? e.g. poisons, sharpening stones, etc.

Also, is there any way to determine how many folks of a certain class are in your raid? I'm trying to do some smart buff checking, based on the number of paladins in the raid, but it doesn't look like there's any tag for grabbing a count of pallies.

Last edited by dinesh : 03/19/08 at 12:26 AM.

Offline
Old 03/19/08, 12:13 PM   #84
Ele'
Piston Honda
 
Ele''s Avatar
 
Human Warlock
 
Kirin Tor (EU)
I wanted a tag to show what my target is casting, excepted if this was a deaden. So basically I tried this:
[CastName ~= Text(Deaden)]
The problem is, it's not working and the text "persists" after a cast. For example, if I target player Lambda and he start casting a Soulwell, the text "Ritual of Souls" will stay in the frame as long as I don't select someone else and he don't cast anything else.

Do anyone see what I'm doing wrong here ?

Something else: I would like to have a tag displayed on my raid frames, but only if my current target has a given name. For instance, I would like to modify the following tag to be shown only if my actual target is Naj'Entus:
[CurHP:IsLess(8500)?Text(DANGER)]
Do anyone know how to do that ?


[Edit] I may as well share some usefull tags, while I'm at it...

Here are the basic versions of the tags I use on my UnitFrame to show whenever I can Life Tap of Dark Pact without "overgaining" mana:

[MissingMP#player:IsGreater(1800)?Text(TAP)]
[[MissingMP#player:IsGreater(1800)?CurMP#pet:IsGreater(1800)?Text(PACT)]:Red]
You will have to change 1800 by the amount of mana you would gain from those spells. I'm actually using a much trickier version of this, using a custom tag to replace 1800 by the correct value depending of my stuff. I'd gladly share it but I didn't really understand how (and if) you are supposed to share such custom files using the wowace repository ?

Last edited by Ele' : 03/19/08 at 12:19 PM.

Offline
Old 03/19/08, 1:22 PM   #85
dinesh
Piston Honda
 
Gnome Rogue
 
Dalaran
Originally Posted by Ele' View Post
Something else: I would like to have a tag displayed on my raid frames, but only if my current target has a given name. For instance, I would like to modify the following tag to be shown only if my actual target is Naj'Entus:
[Name#target:IsEqual(Naj'Entus)?CurHP:IsLess(8500)?Text(DANGER)]
I would guess works.

Offline
Old 03/20/08, 6:07 AM   #86
Rawket
Glass Joe
 
Tauren Druid
 
Balnazzar (EU)
Originally Posted by Led ++ View Post
HMm that polymorph dogtag got me wondering.

Would it be possible for Lifebloom, and I mean on my party frames. Just the time left.

example:

Moozart 6 -207 HP

where six would be the time in seconds that is still remaining on lifebloom.
Edit: would it be possible to merge Rejuvenation in it to?

Kudos to justgiz @wowace forums for this one, this is what I'm using, works like a charm!:
[ [Class#player = Text(Druid)] ? HasAura(Regrowth) ? AuraTimeLeft(Regrowth):Floor:Color(99dd99):Bracket]
[ [Class#player = Text(Druid)] ? HasAura(Rejuvenation) ? AuraTimeLeft(Rejuvenation):Floor:Color(00bbff):Bracket]
[ [Class#player = Text(Druid)] ? HasAura(Lifebloom) ? AuraTimeLeft(Lifebloom):Floor:Append([Text(*):Rep([NumAura(Lifebloom)])]):Color(ff88bb):Bracket]

Offline
Old 03/20/08, 6:40 PM   #87
Kebinusan
Glass Joe
 
Human Warlock
 
Shu'halo
Does anyone have a threat dogtag that showed perhaps a percentage of your threat in relation to the person who currently has aggro on the mob?

Showing information relative to MaxThreat doesnt seem quite as useful

Offline
Old 03/20/08, 7:41 PM   #88
Margot
Von Kaiser
 
Human Warrior
 
Argent Dawn
I think you're looking for AggroTargetThreat, which returns the threat of the target's target on it.

Offline
Old 03/20/08, 7:43 PM   #89
Eurytos
Piston Honda
 
Eurytos's Avatar
 
Orc Hunter
 
Zul'Jin
Originally Posted by Ele' View Post
I wanted a tag to show what my target is casting, excepted if this was a deaden. So basically I tried this:
[CastName ~= Text(Deaden)]
The problem is, it's not working and the text "persists" after a cast. For example, if I target player Lambda and he start casting a Soulwell, the text "Ritual of Souls" will stay in the frame as long as I don't select someone else and he don't cast anything else.

Do anyone see what I'm doing wrong here ?

Something else: I would like to have a tag displayed on my raid frames, but only if my current target has a given name. For instance, I would like to modify the following tag to be shown only if my actual target is Naj'Entus:
[CurHP:IsLess(8500)?Text(DANGER)]
Do anyone know how to do that ?


[Edit] I may as well share some usefull tags, while I'm at it...

Here are the basic versions of the tags I use on my UnitFrame to show whenever I can Life Tap of Dark Pact without "overgaining" mana:

[MissingMP#player:IsGreater(1800)?Text(TAP)]
[[MissingMP#player:IsGreater(1800)?CurMP#pet:IsGreater(1800)?Text(PACT)]:Red]
You will have to change 1800 by the amount of mana you would gain from those spells. I'm actually using a much trickier version of this, using a custom tag to replace 1800 by the correct value depending of my stuff. I'd gladly share it but I didn't really understand how (and if) you are supposed to share such custom files using the wowace repository ?
I don't quite understand DogTag syntax yet, but to get that CastName text to go away when the target isn't casting, you could do something like:
If [CurrentTime] < [CastEndTime] AND [CurentTime] < [CastStopTime] AND [CastName] <> Deaden Then
     [CastName]
     Else
     [Text()]
End

Offline
Old 03/20/08, 8:57 PM   #90
Kebinusan
Glass Joe
 
Human Warlock
 
Shu'halo
Originally Posted by Margot View Post
I think you're looking for AggroTargetThreat, which returns the threat of the target's target on it.
That doesnt seem to be a valid dogtag for me

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