Enchantrix/Data Format
Från Norganna's AddOns
How Enchantrix stores data
Enchantrix has several sets of disenchanting data, stored in different formats.
EnxConstants.lua\Enchantrix.Constants.baseDisenchantTable{}
This holds the master disenchanting rules, gathered from disenchants by many users on many servers.
EnxNonDisenchant.lua\NonDisenchantables{}
A list of item numbers that do not disenchant. This is constantly being updated as new items are found (especially PvP rewards), and some items are fixed so that they do disenchant.
SavedVariables\Enchantrix.lua EnchantedLocal{}
This holds results from disenchants you have performed, stored in format1 (more detail, gets specific item data).
This data is just a record of your disenchants, used to help verify the accuracy of the disenchanting tables (mostly by developers).
SavedVariables\Enchantrix.lua EnchantedItemTypes{}
This holds the same data as EnchantedLocal, but grouped by item type and level (more useful for the final tables).
This is also used as a record only, to verify the accuracy of the disenchanting tables (mostly by developers).
SavedVariables\Enchantrix.lua NonDisenchantablesLoca{}l
This is a list of items which you have discovered to be non-disenchantable, recorded as item numbers.
How to read format1
From http://norganna.org/discuss/discussion/2525/enchantrix-todo-suggestionscomments-wanted/#Item_8
|
[15346] = "11138:21:21:0;11134:52:64:0;11083:839:3134:0" What this means is that item #15346 (whatever that happens to be) has the following DE results: 21 times, it has become one or more #11138 (Small Glowing Shard), and in those 21 times, you've gotten a total of 21 Small Glowing Shards. 52 times, it has become one or more #11134 (Lesser Mystic Essence), and in those 52 times, you've gotten a total of 64 Lesser Mystic Essences. 839 times, it has become one or more #11083 (Soul Dust), and in those 839 times, you've gotten a total of 3134 Soul Dusts.
|