ESOUI

ESOUI (https://www.esoui.com/forums/index.php)
-   AddOn Search/Requests (https://www.esoui.com/forums/forumdisplay.php?f=165)
-   -   Settings Transfer Please? (https://www.esoui.com/forums/showthread.php?t=8872)

Zebular 11/27/19 08:17 AM

Settings Transfer & LootDrop
 
Howdy,

Just back online from a multi-year internet hiatus. I used to use iterations of "Joviex's Addon Settings Transfer" when I last played but have found that they all seem to have been abandoned or no longer work. Is there a working settings profiler/transfer addon out there or could someone fix whatever is broken in Joviex's Addon Settings Transfer (Updated)?

Also, I used Lootdrop, Continued (All in One). It seems that one has been abandoned as well. Any working addon that does what this does or could someone update it?

Thanks for your time and happy holidays!

SuppeFuss165 11/27/19 08:40 AM

I think it has fewer options to choose what you want to transfer, but I use "Synced Account Settings" von Jodynn to transfer the game settings. It doesn't work for addons, but the ones I'm using have the option to use the same settings account wide, so it isn't really a problem for me. Then I also run Votan's Keybinder for the keys (you can toggle the account wide usage of every single key on and off direktly in the settings).

Not sure if that helps, but they are both updated and work without problems for me. Since I never looked for other similar addons after I found them, I don't know if there are any others.

Zebular 11/27/19 01:37 PM

Thanks! Not too worried about game settings, just addon settings. I also use Votan's Keybinder, love that addon! @votan really should make an addon settings profiler/xfer addon, because then you'd know it would rock. :)

Baertram 11/27/19 01:39 PM

Server settings
Votans Keybinder for the keybindings
Settings Profiler
Synced Account Settings

SavedVariables
JoviexsAddonSettingsTransferUpdated
https://www.esoui.com/downloads/info...erUpdated.html

If this does not work anymore (check the comments if there are posted fixes) you need to manually copy the SavedVariables files and manipulate them to use your @account and character name or character ids.


LootDrop is not needed anymore imo as the base game vanilla loot does show more than before. If you need morei nformation you should try the other loot addons (simply search for "loot" in the addons section).

Zebular 11/27/19 06:34 PM

Quote:

Originally Posted by Baertram (Post 39792)
Server settings
Votans Keybinder for the keybindings
Settings Profiler
Synced Account Settings

SavedVariables
JoviexsAddonSettingsTransferUpdated
https://www.esoui.com/downloads/info...erUpdated.html

If this does not work anymore (check the comments if there are posted fixes) you need to manually copy the SavedVariables files and manipulate them to use your @account and character name or character ids.


LootDrop is not needed anymore imo as the base game vanilla loot does show more than before. If you need morei nformation you should try the other loot addons (simply search for "loot" in the addons section).

Thanks. I'm just now noticing that about LootDrop. Looks like I'll have to go that manual route with the savedvars as I did a long while ago before any addon settings mods were available.

Baertram 11/28/19 12:42 PM

JoviexsAddonSettingsTransferUpdated is not working anymore?
For no addons or only some?

Most addons are not using the "character names" anymore (which is good as the settings will be usable even after a character name change now) in the settings file so you need to check for the unique character IDs! The last known character name of the characterId is shown in the table's sub-entry ["$LastCharacterName"] then!

Hope the following helps:

These different SavedVariables structures exist:

Server independent, Account dependent settings
Code:

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

Server dependent, Account dependent settings
Code:

AddonSavedVars =
{
    ["NA MegaServer"] =
    {
        ["@AccountName"] =
        {
            ["$AccountWide"] =
            {
            },
        },
    },
}

Server dependent, Account independent settings (all accounts are the same)
Code:

AddonSavedVars =
{
    ["NA MegaServer"] =
    {
        ["AllAccounts or any other "no-account name" variable like "AllTheSame" etc.] =
        {
            ["$AccountWide"] =
            {
            },
        },
    },
}


Server independent, character ID dependent settings
Code:

AddonSavedVars =
{
    ["Default"] =
    {
        ["@AccountName"] =
        {
            ["1234567890123456"] =
            {
                ["$LastCharacterName"] = "The last known name of this character with the uniqueId 12345678901234567890"
            },
        },
    },
}

Server dependent, character ID dependent settings
Code:

AddonSavedVars =
{
    ["NA MegaServer"] =
    {
        ["@AccountName"] =
        {
            ["1234567890123456"] =
            {
                ["$LastCharacterName"] = "The last known name of this character with the uniqueId 12345678901234567890"
            },
        },
    },
}


OLD/OBSOLETE/Should not be used anymore but many addons still do:
Server independent, character NAME dependent settings
Code:

AddonSavedVars =
{
    ["Default"] =
    {
        ["@AccountName"] =
        {
            ["Your characters name"] =
            {
            },
        },
    },
}

Server dependent, character NAME dependent settings
Code:

AddonSavedVars =
{
    ["NA MegaServer"] =
    {
        ["@AccountName"] =
        {
            ["Your characters name"] =
            {
            },
        },
    },
}



All times are GMT -6. The time now is 05:32 AM.

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