View Single Post
07/23/20, 03:18 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,989
Nope.

Some addons got included settings to port them to other chars or servers, but some don't.
And it's not possible to create addons to port all addon settings as some are old and use character names, others are newer and use the meanwhile "correct and rename safe" characterIds. Some do not even use standard structures of ZOs ZO_SavedVariables but their own structures.

All you can do is edit the SavedVariables files and manipulate them manually, copy whole subtables starting with $AccountWide and exchange your @AccountName with the new @AccountNameNew, and copy whole CharacterName subtables exchanging your CharacterName with the other CharacterNameNew.
If it's using the characterId number (number in "" like "81234567890123") you'd need to copy this whole subtable and exchange the number with the uniqueId of your other character (you are able to get the id of the currently logged in Character via this script in the chat:
Code:
/script GetCurrentCharacterId()
).

Tabloes in the SV lua files start with { and end with } so always find the matching { and } to get "a whole table".
Subtables = tables in a table:
Lua Code:
  1. ["SavedVariablesName"]
  2. {--starting main table
  3.  ...
  4.    ["$AccountWide"]
  5.    { --starting subtable1
  6. ...
  7.       ["Data1_1"]
  8.       { --starting subtable1_1
  9. ...
  10.       }, --ending subtable1_1
  11.    }, --ending subtable1
  12. ...
  13.    ["CharacterName1"]
  14.    { --starting subtable2
  15. ...
  16.       ["Data2_1"]
  17.       { --starting subtable2_1
  18. ...
  19.       }, --ending subtable2_1
  20.       ["Data2_2"]
  21.       { --starting subtable2_2
  22. ...
  23.       }, --ending subtable2_2
  24.    }, --ending subtable2
  25.  
  26.    ["812345678901234"] --Unique characterId
  27.    { --starting subtable3
  28. ...
  29.       ["Data3_1"]
  30.       { --starting subtable3_1
  31. ...
  32.       }, --ending subtable3_1
  33.       ["Data3_2"]
  34.       { --starting subtable3_2
  35. ...
  36.       }, --ending subtable3_2
  37.    }, --ending subtable3
  38. }-- ending main table
There are other threads here in the forum about manipulating SavedVariables, just search for them please.

Last edited by Baertram : 07/23/20 at 02:34 PM.
  Reply With Quote