View Single Post
03-18-11, 07:33 AM   #7
tinyu
A Molten Giant
 
tinyu's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2006
Posts: 837
Originally Posted by Tiavan75 View Post
The rep bar was no problem selected fifths from the drop down menu. I cannon seem to be able to figure out how to do the same with the basic experience bar. Any suggestions?
in the shared media folder open up SharedMedia.lua in wordpad etc and add this line to the bottom

LSM:Register("statusbar", "nUI", [[Interface\Addons\nUI6\Layouts\Art\nUI_XPRepOverlay]])

for BEB its a bit harder

copy the nUI_XPRepOverlay.blp into the BEB\Textures folder THEN go into BEBOptions and open Localization.lua in wordpad and look for

Code:
BEBOPTIONS.TEXTURES = {
    ["PlainBackdrop"] =                "01Plain Backdrop",
    ["BEB-BarFill-Rounded"] =            "02Rounded bar",
    ["BEB-BarFill-RoundedLight"] =            "03Light rounded bar",
    ["BEB-BarFill-RoundedUp"] =            "04Rounded bar lit from above",
    ["BEB-BarFill-Flat"] =                "05Flat bar",
    ["BEB-ExperienceBarMarkers"] =            "06Default marker artwork",
    ["BEB-ExhaustionTicks"] =            "07Default ticks",
    ["BEB-ExhaustionTicksGlow"] =            "08Default tick glow",
    ["BEB-BarFill-Metal"] =                "09Metallic bar texture",
    ["BEB-BarFill-Wood"] =                "10Wooden bar texture",
and change it to

Code:
BEBOPTIONS.TEXTURES = {
    ["PlainBackdrop"] =                "01Plain Backdrop",
    ["BEB-BarFill-Rounded"] =            "02Rounded bar",
    ["BEB-BarFill-RoundedLight"] =            "03Light rounded bar",
    ["BEB-BarFill-RoundedUp"] =            "04Rounded bar lit from above",
    ["BEB-BarFill-Flat"] =                "05Flat bar",
    ["BEB-ExperienceBarMarkers"] =            "06Default marker artwork",
    ["nUI_XPRepOverlay"] =            "07nUI marker artwork",
    ["BEB-ExhaustionTicks"] =            "08Default ticks",
    ["BEB-ExhaustionTicksGlow"] =            "09Default tick glow",
    ["BEB-BarFill-Metal"] =                "10Metallic bar texture",
    ["BEB-BarFill-Wood"] =                "11Wooden bar texture",
now load up wow and adjust the settings if you get stuck PM me and ill see what i can do.

PS i use notepad++ instead of wordpad.
__________________
"There's no such thing as too many addons."
Lothaer
Titan Dev Team Member.

Last edited by tinyu : 03-19-11 at 06:17 PM.