ESOUI

ESOUI (https://www.esoui.com/forums/index.php)
-   AddOn Help/Support (https://www.esoui.com/forums/forumdisplay.php?f=164)
-   -   Looking for a way to copy addon settings to other characters (https://www.esoui.com/forums/showthread.php?t=493)

Lilith 04/02/14 09:59 AM

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.

skyraker 04/02/14 11:16 AM

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.

Aalwein 04/02/14 09:43 PM

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.

Lilith 04/03/14 02:32 AM

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).

Aalwein 04/03/14 09:18 AM

Quote:

Originally Posted by Lilith (Post 2467)
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.

Joviex 04/19/14 10:39 PM

Quote:

Originally Posted by Lilith (Post 2328)
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!


All times are GMT -6. The time now is 01:37 AM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2014 - 2022 MMOUI