In templates/default/info/styles.css add (about line 124 onwards):
- Code: Select all
.powers .bar .runes { background: url(images/bars/bar-runes.gif); }
.powers .bar .runes:hover { border-color: #00A8FF; }
.powers .bar .runicpower { background: url(images/bars/bar-runicpower.gif); }
.powers .bar .runicpower:hover { border-color: #00A8FF; }
In CharacterProfiler.lua at line 258 change:
- Code: Select all
local UnitPower={"Rage","Focus","Energy","Happiness"};UnitPower[0]="Mana";
To read:
- Code: Select all
local UnitPower={"Rage","Focus","Energy","Happiness","Runes","RunicPower"};UnitPower[0]="Mana";
And at line 1570 change:
- Code: Select all
structStats["Mana"]=UnitManaMax(unit);
To read:
- Code: Select all
structStats["Mana"]=UnitPowerMax(unit);
(As the UnitManaMax was switched to UnitPowerMax as of patch 3.0.2, same with the UnitMana function becoming UnitPower instead)
And finally copy the templates/default/info/images/bars/bar-mana.gif twice and name one bar-runes.gif and the other bar-runicpower.gif and your done.
Course you can upload any of the others if wished, but the blue mana one will suffice for now I guess, :-)
Enjoy.
(And no I'm not dead, I've been most unwell - still am - over the past few months. Which is why no ones seen me around, hehe. Though expect more UniAdmin/UniUploader updates soon as I'm better again!)