View Single Post
09/03/19, 06:11 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,913
You can check this info about the SavedVariables on the wiki:
https://wiki.esoui.com/Circonians_Sa...ables_Tutorial

There is written what SavedVariabls are and how they work and how to implement them.

Solution:
Search in the addon for ZO_SavedVars and check if it's ZO_SavedVars:NewCharacterIdSettings or ZO_SavedVars:New (obsolete! Not name change save, should be changed to: ZO_SavedVars:NewCharacterIdSettings) and change it to

ZO_SavedVars:NewAccountWide


Be sure to logout before, and make a backup of your SavedVariables files.
You could also prepare the the SavedVariables file to use your old character settings as accountwide settings:
Rename the table with the ["CharacterName"] or ["1212431312312"] (characterId) below the ["$AccountName"] to "$AccountWide":

Code:
MyAddonName_SavedVariablesName = 
{ 
  ["default"] = 
    ["$AccountName"] = {
         ["CharatcerName" or "121231231232" here] =     <- Rename this to "$AccountWide"
         { 
             ...        ---Don't touch! This is your SavedVariables contents

          },-- ["CharatcerName" or "121231231232" here] = 

     }, -- $AccountName

  } --default

} -- MyAddonName_SavedVariablesName

Last edited by Baertram : 09/03/19 at 08:49 AM.
  Reply With Quote