The Gold Road Chapter – which includes the Scribing system – and Update 42 is now available to test on the PTS! You can read the latest patch notes here: https://forums.elderscrollsonline.com/en/discussion/656454/
Maintenance for the week of April 22:
• PC/Mac: NA and EU megaservers for patch maintenance – April 22, 4:00AM EDT (08:00 UTC) - 9:00AM EDT (13:00 UTC)
• Xbox: NA and EU megaservers for patch maintenance – April 24, 6:00AM EDT (10:00 UTC) - 12:00PM EDT (16:00 UTC)
• PlayStation®: NA and EU megaservers for patch maintenance – April 24, 6:00AM EDT (10:00 UTC) - 12:00PM EDT (16:00 UTC)

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.