Maintenance for the week of December 16:
• PC/Mac: No maintenance – December 16
• NA megaservers for patch maintenance – December 17, 4:00AM EST (9:00 UTC) - 12:00PM EST (17:00 UTC)
• EU megaservers for patch maintenance – December 17, 9:00 UTC (4:00AM EST) - 17:00 UTC (12:00PM EST)
The issues on the North American megaservers have been resolved at this time. If you continue to experience difficulties at login, please restart your client. Thank you for your patience!

any way to copy/paste add-on settings account wide?

Redn3ck
Redn3ck
looking for an addon that does what the title asks. I know Wykkyd (or however its spelled) will do it for its own adds on, but im looking for a way to copy all settings across my account.
  • Tankerbells
    Try "Joviex's Addon Settings Transfer", it's on minion..
    PC/NA, DC - CP861 - StamDK (PVP), MagDK (PVE), and Tank
  • ViciousBunnii
    ViciousBunnii
    ✭✭✭
    Graesyn wrote: »
    Try "Joviex's Addon Settings Transfer", it's on minion..

    I just found this addon the other day! It doesn't seem to work for every little addon (simple things like something isn't moved exactly where it should of been, etc), but it is way better than having to set up each and every character manually!
    PC/NA

    Forever salty about the Shadow Rider Senche
  • Baertram
    Baertram
    ✭✭✭✭✭
    You could manually add the SavedVariables file of the addons.
    The data is stored on your harddrive at c:\users\windows user name\documents\Elder Scrolls Online\live\SavedVariables

    !!!YOU NEED TO LOGOUT BEFORE OR THE FILE WILL BE OVERWRITTEN IF YOU LOGOUT!!!


    If the addon name is let's say "Destinations" then there should be a file called Destinations.lua

    Make a backup and edit it with a text editor.

    There is a structure in there like this:

    AddOns_SavedVariables =
    {
    ["Default"] =
    {
    ["@AccountName"] =
    {
    ["CharacterName"] =
    {
    [data] = value,
    [data1] = value1,
    ...
    },
    }
    }
    }

    Create a new entry [$AccountWide] at the level of the CharacterName:

    AddOns_SavedVariables =
    {
    ["Default"] =
    {
    ["@AccountName"] =
    {
    ["$AccountWide"] =
    {
    },
    }
    }

    Copy the stuff between the { } of the CharacterName, e.g.
    [data] = value
    [data1] = value1
    ...

    between the {} of the [$AccountWide] entry.
    Should look like this afterwards:

    AddOns_SavedVariables =
    {
    ["Default"] =
    {
    ["@AccountName"] =
    {
    ["CharacterName"] =
    {
    [data] = value,
    [data1] = value1,
    ...
    },
    ["$AccountWide"] =
    [data] = value
    [data1] = value1
    ...
    {
    }
    }
    }

    Be sure there is an , after the closing } of the CharacterName surrounding { }, !

    Login and tets if the settings are available for every character then.
    If not, the addon is not supporting account wide settings, or you made a mistake and should rollback your backuped SavedVariables file!
Sign In or Register to comment.