Thread Tools Display Modes
11-24-10, 04:43 PM   #1
Marauder_IIc
A Fallenroot Satyr
Join Date: Dec 2009
Posts: 28
Question Couple issues with newest release

Hello,
my soul shard bar always shows I have shards, whether I do or not.

Since the patch before yesterdays, my UI scale will randomly shrink down to something I can hardly see and definitly cant read. Sometimes when I log in its fine, others it isn't. More an annoyance than anything else.

The last one happened last night in an instance, and this one is killin me. I got feared and my HUD bars moved. Now my mana bar is opposite side of my health bar, I am not sure how to change it back. Previously, my bars were on the left, target was on the right, now its all HP on left and mana on the right, and its a pain to try and keep track during a fight.

Side question about HUD. Can I change bars colors, so they scale? Like when its below 35% it turns yellow, below 25% it turns red?
 
11-24-10, 04:58 PM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,937
The Player/Target to Health/Power HUD bars sounds like the hud button has been accidently pressed somehow .. check what it says and try it out if it doesn't say Player/Target.

I haven't played my warlock recently but it should be reacting the same way the paladin bar does and that is working fine .. I'll try and spend some time on it and see if I can get it to go wrong and figure out why.

You might want to take a look at the Layouts folder. Depending on which bars exactly you are talking about would define which file and folder to change. But there will be a color setting in there showing r,g,b values.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
11-24-10, 05:05 PM   #3
Marauder_IIc
A Fallenroot Satyr
Join Date: Dec 2009
Posts: 28
WOW, that's all it was..... ok, now that I made myself sound like a tard in the forum, THANKS!!

Is there any way to do what I was asking about scaling color changes in the hud?
 
11-24-10, 05:40 PM   #4
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,937
Ah here we go .. just remembered what I found last time someone asked me the question ..

It's a change with the main code so make sure you keep a copy of what you changed..

Folder: \Interface\AddOns\nUI\Units
File: nUI_UnitHealth.lua

Section near the top showing this block:

Code:
nUI_DefaultConfig.BarColors.Health =
{
	["min"] = { r = 1, g = 0, b = 0, a = 1 },	-- empty bar color
	["mid"] = { r = 1, g = 1, b = 0, a = 1 },	-- bar color at 50%
	["max"] = { r = 0, g = 1, b = 0, a = 1 },	-- full bar color
};
Folder: \Interface\AddOns\nUI\Units
File: nUI_UnitPower.lua

And this section :

Code:
nUI_DefaultConfig.BarColors.Power =
{
	["Mana"] =
	{
		["min"] = { r = 1, g = 0, b = 1, a = 1 },	-- empty bar color
		["mid"] = { r = 0, g = 0.5, b = 1, a = 1 },	-- bar color at 50%
		["max"] = { r = 0, g = 0.5, b = 1, a = 1 },	-- full bar color
	},	
	["Rage"] =
	{
		["min"] = { r = 1, g = 0, b = 0, a = 1 },	-- empty bar color
		["mid"] = { r = 1, g = 0, b = 0, a = 1 },	-- bar color at 50%
		["max"] = { r = 1, g = 0, b = 0, a = 1 },	-- full bar color
	},	
	["Energy"] =
	{
		["min"] = { r = 1, g = 1, b = 0, a = 1 },	-- empty bar color
		["mid"] = { r = 1, g = 1, b = 0, a = 1 },	-- bar color at 50%
		["max"] = { r = 1, g = 1, b = 0, a = 1 },	-- full bar color
	},	
	["Focus"] =
	{
		["min"] = { r = 1, g = 0.35, b = 0, a = 1 },	-- empty bar color
		["mid"] = { r = 1, g = 0.35, b = 0, a = 1 },	-- bar color at 50%
		["max"] = { r = 1, g = 0.35, b = 0, a = 1 },	-- full bar color
	},
	["Runes"] =
	{
		["min"] = { r = 0.5, g = 0.5, b = 0.5, a = 1 },	-- empty bar color
		["mid"] = { r = 0.5, g = 0.5, b = 0.5, a = 1 },	-- bar color at 50%
		["max"] = { r = 0.5, g = 0.5, b = 0.5, a = 1 },	-- full bar color
	},
	["RunicPower"] =
	{
		["min"] = { r = 0, g = 0.82, b = 1, a = 1 },	-- empty bar color
		["mid"] = { r = 0, g = 0.82, b = 1, a = 1 },	-- bar color at 50%
		["max"] = { r = 0, g = 0.82, b = 1, a = 1 },	-- full bar color
	},
};
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
11-27-10, 01:34 AM   #5
Marauder_IIc
A Fallenroot Satyr
Join Date: Dec 2009
Posts: 28
Thanks!
I will look into implimenting as soon as I am not swamped with Holiday weekend stuffs.

Request: Can a UI option for the HUD be added to your (nUI team, not you personally) to-do list? Not for right now, just down the road a bit?
 
11-27-10, 03:33 AM   #6
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,937
There is currently 2 optional plugins that give you access to most if not all of the available nUI slash commands to manipulate the addon.

nUI_Config_GUI by Kodewulf
http://www.wowinterface.com/download...ConfigGUI.html

nUI_Config_LDB by myself
http://www.wowinterface.com/download...ConfigLDB.html

I am assuming that is what you meant by a HUD GUI.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Technical Support » Couple issues with newest release


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off