comparison Constants.lua @ 535:4a7989584ae8 7.2.0-5

Rewrote World Quest recording to use a less-stateful (continent-based) method of gathering World Quests.
author MMOSimca
date Tue, 18 Apr 2017 20:30:31 -0400
parents ba48723702c0
children b7f2e3b03853
comparison
equal deleted inserted replaced
534:31d084e76340 535:4a7989584ae8
37 -- Map of Garrison Cache object names to Garrison Cache object IDs 37 -- Map of Garrison Cache object names to Garrison Cache object IDs
38 private.GARRISON_CACHE_OBJECT_NAME_TO_OBJECT_ID_MAP = { 38 private.GARRISON_CACHE_OBJECT_NAME_TO_OBJECT_ID_MAP = {
39 ["Garrison Cache"] = 236916, 39 ["Garrison Cache"] = 236916,
40 ["Full Garrison Cache"] = 237722, 40 ["Full Garrison Cache"] = 237722,
41 ["Hefty Garrison Cache"] = 237723, 41 ["Hefty Garrison Cache"] = 237723,
42 }
43
44 -- List of WorldMapIDs to try to get World Quests for
45 private.WORLD_QUEST_MAP_IDS = {
46 1014, -- Dalaran (new)
47 1015, -- Azsuna
48 1017, -- Stormheim
49 1018, -- Val'sharah
50 1021, -- Broken Shore
51 1024, -- Highmountain
52 1033, -- Suramar
53 1096, -- Eye of Azshara (uninstanced)
54 } 42 }
55 43
56 -- Mapping of items that, when right-clicked, fire a spell (which can fail, so we have to check success). 44 -- Mapping of items that, when right-clicked, fire a spell (which can fail, so we have to check success).
57 -- They reward loot via loot toast popups upon completion of that spell. 45 -- They reward loot via loot toast popups upon completion of that spell.
58 -- SHOW_LOOT_TOAST can be used to track loot. 46 -- SHOW_LOOT_TOAST can be used to track loot.