comparison Core.lua @ 161:35612aee8e15

Added junk list.
author yellowfive
date Mon, 06 May 2019 14:08:03 -0700
parents df1596b1a744
children 3be9cc6f7d20
comparison
equal deleted inserted replaced
160:d670336e8c89 161:35612aee8e15
50 BagItems = {}, -- list of item info for bags 50 BagItems = {}, -- list of item info for bags
51 BankItems = {}, -- list of item info for bank 51 BankItems = {}, -- list of item info for bank
52 BagItemsAndCounts = {}, -- used mainly for the shopping list 52 BagItemsAndCounts = {}, -- used mainly for the shopping list
53 BankItemsAndCounts = {}, -- used mainly for the shopping list 53 BankItemsAndCounts = {}, -- used mainly for the shopping list
54 GearSetups = {}, -- imported gear sets 54 GearSetups = {}, -- imported gear sets
55 JunkData = {}, -- imported data about items that can be vendored/scrapped/disenchanted
55 ExtraEnchantData = {}, -- enchant id to enchant display information and material information 56 ExtraEnchantData = {}, -- enchant id to enchant display information and material information
56 Logging = { -- character logging settings 57 Logging = { -- character logging settings
57 Enabled = false, -- whether logging is currently on or not 58 Enabled = false, -- whether logging is currently on or not
58 LastZone = nil, -- last zone the player was in 59 LastZone = nil, -- last zone the player was in
59 LastDiff = nil, -- last difficulty for the last zone the player was in 60 LastDiff = nil, -- last difficulty for the last zone the player was in
64 minimap = { -- minimap hide/show and position settings 65 minimap = { -- minimap hide/show and position settings
65 hide = false 66 hide = false
66 }, 67 },
67 window = {}, -- main window position settings 68 window = {}, -- main window position settings
68 shopWindow = {}, -- shopping list window position settings 69 shopWindow = {}, -- shopping list window position settings
70 junkWindow = {}, -- junk list window position settings
69 options = { 71 options = {
70 autoGear = false, -- auto-equip saved gear sets when changing specs 72 autoGear = false, -- auto-equip saved gear sets when changing specs
73 junkVendor = false, -- auto-show junk list at vendor/scrapper
71 shopAh = false, -- auto-show shopping list at AH 74 shopAh = false, -- auto-show shopping list at AH
72 disableEm = false, -- disable auto-creation of equipment manager sets 75 disableEm = false, -- disable auto-creation of equipment manager sets
73 uiScale = 1 -- custom scale for AMR UI 76 uiScale = 1 -- custom scale for AMR UI
74 }, 77 },
75 Logging = { -- global logging settings 78 Logging = { -- global logging settings
243 hide = "Hide", 246 hide = "Hide",
244 show = "Show", 247 show = "Show",
245 toggle = "Toggle", 248 toggle = "Toggle",
246 equip = "EquipGearSet", 249 equip = "EquipGearSet",
247 version = "PrintVersions", 250 version = "PrintVersions",
251 junk = "ShowJunkWindow",
248 --wipe = "Wipe", 252 --wipe = "Wipe",
249 --undowipe = "UndoWipe", 253 --undowipe = "UndoWipe",
250 reset = "Reset", 254 reset = "Reset",
251 test = "Test" 255 test = "Test"
252 } 256 }