Honestly, I don't quite care anymore at this point. WoWI doesn't seem to send me the requested subscription emails, nor does this site. So yeah, I'll be forgetting it a lot
Honestly, I don't quite care anymore at this point. WoWI doesn't seem to send me the requested subscription emails, nor does this site. So yeah, I'll be forgetting it a lot
I checked out the WoWI forum and wasn't really impressed. Having to start at the top and scroll down to read the new posts (and remember which I'd already read) was enough to make me no longer care. Threaded-view wasn't much help at all since I'd have to scroll through the little thread window as it got larger. Owell.
Can't we all just stick to this one ? I mean, what's wrong with it :)
Oh and i would like a bit of help for this btw, i would like to have my experience bar to show but only when i mouseover it.
I've tried something like the code below but obviously it doesn't work, i know it's wrong but that's all i could come up with and unfortunately i couldn't find any better information on how to do this.
local OnEnter = function(self)
self.Experience_OnEnter(self)
self.Experience:Show()
end
local OnLeave = function(self)
self.Experience_OnLeave(self)
self.Experience:Hide()
end
Hi, I am using oUF_Nivaya and I want to make the health bar to have colors based on class or hostility. Blue for allied mages and red for opposing classes, yellow neutral, green for friendly, etc.
I changed the line 187 in oUF_Nivaya.lua from:
bar:SetStatusBarColor(nivcfgDB.colorHealth.r, nivcfgDB.colorHealth.g, nivcfgDB.colorHealth.b, nivcfgDB.colorHealth.a)
to:
bar:SetStatusBarColor( UnitIsPlayer(unit) and RAID_CLASS_COLORS[select(2, UnitClass(unit))] or UnitReactionColor[UnitReaction(unit, "player")])
which is something I read on this forum earlier, but all it does is set the color to black.
SetStatusBarColor takes a series of numbers as its arguments and you are only feeding it a table. Use unpack or the appropriate r, g, b keys depending on how it is stored in RAID_CLASS_COLORS, memory fails me here.
You might try posting in the dedicated oUF forum over on WoWInterface. The creator of oUF doesnt check this thread anymore, and most people who are writing layouts and plugins for oUF are mainly posting in the new forum.
Anyway, since oUF doesnt include an element to track diminishing returns, creating one wouldnt really be specific to oUF. Youd basically just write a DR tracking addon, and then attach the frames or bars or icons to your oUF frames.
I have tried everything I can find in this massive forum post, and my eyes hurt. What I am trying to do is add a function to my unit frames. I want my player frame to hide.
I want it to ONLY show if
-I am NOT at full health and mana
-I am in a party or raid
-I am in a BG/Arena
I am using Ouf_Drk.
I can get it in the Lua, I just need someone to put it up here so I can cut, and paste it.. I am willing to pay with my first born, OR human blood (Up to 11.7 Litres) .. :P
I checked out the WoWI forum and wasn't really impressed. Having to start at the top and scroll down to read the new posts (and remember which I'd already read) was enough to make me no longer care. Threaded-view wasn't much help at all since I'd have to scroll through the little thread window as it got larger. Owell.
Oh and i would like a bit of help for this btw, i would like to have my experience bar to show but only when i mouseover it.
I've tried something like the code below but obviously it doesn't work, i know it's wrong but that's all i could come up with and unfortunately i couldn't find any better information on how to do this.
How can I colour the health text value by there health status.
So for say 2890 hp or 30% make the text red. Not the bar colour but the text itself.
I currently basically do this atm.
bar.value:SetText("|cff33EE44"..numberize(cur) .."|r.".. d.."%")
Which is Lyns code giving something like this 5000.50%.
Any help greatlt appreciated.
This topic is kinda dead, we moved the discussion over at WoWInterface's forums due to haste's request (the addon author).
I changed the line 187 in oUF_Nivaya.lua from:
bar:SetStatusBarColor(nivcfgDB.colorHealth.r, nivcfgDB.colorHealth.g, nivcfgDB.colorHealth.b, nivcfgDB.colorHealth.a)
to:
bar:SetStatusBarColor( UnitIsPlayer(unit) and RAID_CLASS_COLORS[select(2, UnitClass(unit))] or UnitReactionColor[UnitReaction(unit, "player")])
which is something I read on this forum earlier, but all it does is set the color to black.
Any ideas where I am going wrong?
Thanks in advance, Corey
thxs
You might try posting in the dedicated oUF forum over on WoWInterface. The creator of oUF doesnt check this thread anymore, and most people who are writing layouts and plugins for oUF are mainly posting in the new forum.
Anyway, since oUF doesnt include an element to track diminishing returns, creating one wouldnt really be specific to oUF. Youd basically just write a DR tracking addon, and then attach the frames or bars or icons to your oUF frames.
I want it to ONLY show if
-I am NOT at full health and mana
-I am in a party or raid
-I am in a BG/Arena
I am using Ouf_Drk.
I can get it in the Lua, I just need someone to put it up here so I can cut, and paste it.. I am willing to pay with my first born, OR human blood (Up to 11.7 Litres) .. :P
Edit: WoWI has a whole forum dedicated to oUF, maybe you should ask there for more insight help.