Thread Tools Display Modes
11/27/19, 08:17 AM   #1
Zebular
Join Date: Mar 2014
Posts: 13
Question 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!

Last edited by Zebular : 11/27/19 at 08:34 AM. Reason: LootDrop
  Reply With Quote
11/27/19, 08:40 AM   #2
SuppeFuss165
Join Date: Aug 2019
Posts: 1
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.
  Reply With Quote
11/27/19, 01:37 PM   #3
Zebular
Join Date: Mar 2014
Posts: 13
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.

Last edited by Zebular : 11/27/19 at 01:39 PM.
  Reply With Quote
11/27/19, 01:39 PM   #4
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
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).
  Reply With Quote
11/27/19, 06:34 PM   #5
Zebular
Join Date: Mar 2014
Posts: 13
Originally Posted by Baertram View Post
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.
  Reply With Quote
11/28/19, 12:42 PM   #6
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
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"] =
            {
            },
        },
    },
}

Last edited by Baertram : 11/28/19 at 12:45 PM.
  Reply With Quote

ESOUI » AddOns » AddOn Search/Requests » Settings Transfer Please?

Thread Tools
Display Modes

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