View Single Post
01-22-10, 03:57 AM   #7
ormjaevel
An Aku'mai Servant
AddOn Compiler - Click to view compilations
Join Date: May 2009
Posts: 38
Originally Posted by mrruben5 View Post
Let me get this straight... You want nMainbars enabled for your character only? If so, just disable it for your other characters.

If you want to change a configuration variable for a different character, then you can do so like this:
Code:
local name = UnitName('player')

local somevar = true
if name =="Yourcharname" then
    somevar = false
end
Well.. I want nMainbar for both my characters, but I want the "multileft" and "multiright"-bar to show ONLY for my alt.

Code:
    multiBarBottomLeft = {
        mouseover           = false,
        alpha               = 0,
    },
    
    multiBarBottomRight = {
        mouseover           = false,
        alpha               = 0,
    },
Thats for my main

and I want this for my alt:
Code:
    multiBarBottomLeft = {
        mouseover           = false,
        alpha               = 1,
    },
    
    multiBarBottomRight = {
        mouseover           = false,
        alpha               = 1,
    },
  Reply With Quote