Thread Tools Display Modes
04/02/14, 09:59 AM   #1
Lilith
Join Date: Apr 2014
Posts: 2
Looking for a way to copy addon settings to other characters

Hi,

I like to tinker and play around with multiple characters (classes/races) in a new game.
I've got all these shiny addons and ingame on 1 character I set all the settings juuuuust the way I like it.

But the next char I logged on had all the settings defaulted

How can I copy my addon settings from 1 char to others?
I tried looking for folders or lua files with my character name in it, but it doesn't seem to work that way.
  Reply With Quote
04/02/14, 11:16 AM   #2
skyraker
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 154
The same folder that contains the folder where addons are placed has a folder called SavedVariables. This stores all the saved info from addons. The format uses nested tables. If you view it you can tell where the settings for each character are listed for each character. Then it is simply a matter of copying the settings for one character and pasting them over the ones for the other character.

Code:
MS_SavedVars =
{
    ["Default"] = 
    {
        ["@ACCOUNT_NAME"] = 
        {
            ["CHAR_1_NAME"] = 
            {
                ["BagSpace"] = true,
                ["Zone"] = false,
                ["Gold"] = true,
                ["BankGold"] = false,
                ["Time"] = false,
                ["SkillPoints"] = true,
                ["Mail"] = false,
                ["FPS"] = false,
                ["EXP"] = false,
                ["version"] = 3,
                ["Location"] = true,
                ["AP"] = false,
            },
            ["CHAR_2_NAME"] = 
            {
                ["BagSpace"] = true,
                ["Zone"] = false,
                ["Gold"] = true,
                ["AchievePoint"] = false,
                ["RepairCost"] = false,
                ["EXP"] = true,
                ["SkillPoints"] = true,
                ["Mail"] = false,
                ["FPS"] = false,
                ["VP"] = false,
                ["BankMoney"] = false,
                ["Time"] = false,
                ["version"] = 10,
                ["AP"] = false,
                ["Location"] = true,
            },
I substituted where my account and character names were, but this should make the point.
  Reply With Quote
04/02/14, 09:43 PM   #3
Aalwein
Join Date: Feb 2014
Posts: 6
Is there a way to copy over ALL settings, not just addons?

PS. Someone should make an addon that can copy settings from one toon to another - something like RIFT had.
  Reply With Quote
04/03/14, 02:32 AM   #4
Lilith
Join Date: Apr 2014
Posts: 2
Thanks @Skyraker. You're a lifesaver.

@Aalwein: Check out the ZO_Ingame.lua
That has some settings that I saw regarding chat and hopefully also the other settings I have to set each time using the Settings ui (like turning profanity filter off, always show healthbars on enemies etc).
  Reply With Quote
04/03/14, 09:18 AM   #5
Aalwein
Join Date: Feb 2014
Posts: 6
Originally Posted by Lilith View Post
Thanks @Skyraker. You're a lifesaver.

@Aalwein: Check out the ZO_Ingame.lua
That has some settings that I saw regarding chat and hopefully also the other settings I have to set each time using the Settings ui (like turning profanity filter off, always show healthbars on enemies etc).
It did copy over a few settings but doesn't cover the time consuming ones, like chat colors. Bummer.
  Reply With Quote
04/19/14, 10:39 PM   #6
Joviex
 
Joviex's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 42
Originally Posted by Lilith View Post
Hi,

I like to tinker and play around with multiple characters (classes/races) in a new game.
I've got all these shiny addons and ingame on 1 character I set all the settings juuuuust the way I like it.

But the next char I logged on had all the settings defaulted

How can I copy my addon settings from 1 char to others?
I tried looking for folders or lua files with my character name in it, but it doesn't seem to work that way.
http://www.esoui.com/downloads/info3...sTransfer.html

It is my first 100% original, literally just posted.

It will let you copy non-global settings, per addon, in bulk, from a master character to all other selected characters.

Test away!
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » Looking for a way to copy addon settings to other characters


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off