WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   nUI: Technical Support (https://www.wowinterface.com/forums/forumdisplay.php?f=92)
-   -   Couple issues with newest release (https://www.wowinterface.com/forums/showthread.php?t=37008)

Marauder_IIc 11-24-10 04:43 PM

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?

Xrystal 11-24-10 04:58 PM

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.

Marauder_IIc 11-24-10 05:05 PM

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?

Xrystal 11-24-10 05:40 PM

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
        },
};


Marauder_IIc 11-27-10 01:34 AM

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?

Xrystal 11-27-10 03:33 AM

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.


All times are GMT -6. The time now is 12:25 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI