comparison amr-constants.lua @ 51:6f1bb8fcf64d v18

AskMrRobot.toc - Added line for new SettingsTab file AskMrRobotUi.lua - Added code for new Settings menu amr-constants.lua - Added instance IDs for all WoD 6.0 5-mans and Raids. - Removed legacy SoO IDs. config.lua - Removed "Interface/Addons" options area, migrated all settings to main addon window. localization/localization.en.lua - Added new strings for new Settings tab and new Raid auto-logging ui/CombatLogTab.lua - Removed legacy SoO code - Added auto-logging settings for Highmaul and Blackrock Foundry. ui/SettingsTab.lua - new main window tab for Minimap and Auction House settings options
author TuhMuffinMan <TuhMuffinMan>
date Fri, 28 Nov 2014 13:09:52 -0600
parents 0e78d6424532
children be5dc6c02f77
comparison
equal deleted inserted replaced
50:af0dc99cbedb 51:6f1bb8fcf64d
98 end 98 end
99 return ret 99 return ret
100 end 100 end
101 101
102 AskMrRobot.instanceIds = { 102 AskMrRobot.instanceIds = {
103 HeartOfFear = 1009, 103 Auchindoun = 1182,
104 MogushanVaults = 1008, 104 BloodmaulSlagMines = 1175,
105 SiegeOfOrgrimmar = 1136, 105 GrimrailDepot = 1208,
106 TerraceOfEndlessSpring = 996, 106 IronDocks = 1195,
107 ThroneOfThunder = 1098 107 ShadowmoonBurialGrounds = 1176,
108 Skyreach = 1209,
109 TheEverbloom = 1279,
110 UpperBlackrockSpire = 1358,
111 Highmaul = 1228,
112 BlackrockFoundry = 1205
108 } 113 }
109 114
110 -- instances that we currently support logging for 115 -- instances that we currently support logging for
111 AskMrRobot.supportedInstanceIds = { 116 AskMrRobot.supportedInstanceIds = {
112 [1136] = true 117 [1182] = true,
118 [1175] = true,
119 [1208] = true,
120 [1195] = true,
121 [1176] = true,
122 [1209] = true,
123 [1279] = true,
124 [1358] = true,
125 [1228] = true,
126 [1205] = true
113 } 127 }
114 128
115 -- returns true if currently in a supported instance 129 -- returns true if currently in a supported instance
116 function AskMrRobot.IsSupportedInstance() 130 function AskMrRobot.IsSupportedInstance()
117 131