Razorwynd 1 Report post Posted May 2, 2017 Maybe this a question better suited for @modernist or @gashole but how can I change the default mana bar color? the blue is a bit too dark when dark mode is enabled. 0 Share this post Link to post Share on other sites
gashole 7 Report post Posted May 4, 2017 On 5/1/2017 at 11:45 PM, Razorwynd said: Maybe this a question better suited for @modernist or @gashole but how can I change the default mana bar color? the blue is a bit too dark when dark mode is enabled. Copy/paste this into a new or existing AddOn's .lua file and change the values. ManaBarColor[0].r = 0.00 ManaBarColor[0].g = 0.00 ManaBarColor[0].b = 1.00 0 Share this post Link to post Share on other sites
Razorwynd 1 Report post Posted May 4, 2017 maybe I am doing something wrong but it doesn't seem to work 0 Share this post Link to post Share on other sites
gashole 7 Report post Posted May 4, 2017 25 minutes ago, Razorwynd said: maybe I am doing something wrong but it doesn't seem to work Here, try this. ManaBarColor[0].r = 0.50 ManaBarColor[0].g = 0.50 ManaBarColor[0].b = 1.00 0 Share this post Link to post Share on other sites
Razorwynd 1 Report post Posted May 5, 2017 6 hours ago, gashole said: Here, try this. ManaBarColor[0].r = 0.50 ManaBarColor[0].g = 0.50 ManaBarColor[0].b = 1.00 I tried pasting that into the the following files with the following results... World of Warcraft 1.12\Interface\AddOns\UnitFramesImproved_Vanilla\UnitFramesImproved_Vanilla.lua {no effect} World of Warcraft 1.12\Interface\AddOns\modui-TallHealthBar\core.lua {no effect} World of Warcraft 1.12\Interface\AddOns\modui\unitframe\unit.lua {no effect} World of Warcraft 1.12\Interface\AddOns\modui\unitframe\extramana.lua {druid bar mana color changes} World of Warcraft 1.12\Interface\AddOns\DebuffTimers\debufftimers.lua {no effect} Looking around all of this code it seems that nothing else uses these variables other than druid bar... 0 Share this post Link to post Share on other sites
gashole 7 Report post Posted May 5, 2017 4 hours ago, Razorwynd said: I tried pasting that into the the following files with the following results... World of Warcraft 1.12\Interface\AddOns\UnitFramesImproved_Vanilla\UnitFramesImproved_Vanilla.lua {no effect} World of Warcraft 1.12\Interface\AddOns\modui-TallHealthBar\core.lua {no effect} World of Warcraft 1.12\Interface\AddOns\modui\unitframe\unit.lua {no effect} World of Warcraft 1.12\Interface\AddOns\modui\unitframe\extramana.lua {druid bar mana color changes} World of Warcraft 1.12\Interface\AddOns\DebuffTimers\debufftimers.lua {no effect} Looking around all of this code it seems that nothing else uses these variables other than druid bar... ManaBarColor is a global table to get the color for mana, rage, energy, etc. One of your AddOns could be changing it. Paste the code into modui/globals/colour.lua and turn off all AddOns except for modui. Figure out which AddOn is causing the problem. 0 Share this post Link to post Share on other sites
Razorwynd 1 Report post Posted May 5, 2017 It was pfUI... I would have never thought that Shagu would redefine these global tables... Thanks for the help! 0 Share this post Link to post Share on other sites
Aura 0 Report post Posted July 10, 2017 How to turn off mobhealth 3 which is included now? Please help me with that. 0 Share this post Link to post Share on other sites