View Single Post
01-21-10, 01:03 PM   #6
ravagernl
Proceritate Corporis
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 1,176
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
  Reply With Quote