comparison Constants.lua @ 485:5e5ddb69f845 7.0.3-3

Added full world quest data recording support.
author MMOSimca <mmosimca@gmail.com>
date Tue, 06 Sep 2016 09:37:07 -0400
parents 679e2846ff88
children 5f20a696cecf
comparison
equal deleted inserted replaced
484:679e2846ff88 485:5e5ddb69f845
29 -- Map of Garrison Cache object names to Garrison Cache object IDs 29 -- Map of Garrison Cache object names to Garrison Cache object IDs
30 private.GARRISON_CACHE_OBJECT_NAME_TO_OBJECT_ID_MAP = { 30 private.GARRISON_CACHE_OBJECT_NAME_TO_OBJECT_ID_MAP = {
31 ["Garrison Cache"] = 236916, 31 ["Garrison Cache"] = 236916,
32 ["Full Garrison Cache"] = 237722, 32 ["Full Garrison Cache"] = 237722,
33 ["Hefty Garrison Cache"] = 237723, 33 ["Hefty Garrison Cache"] = 237723,
34 }
35
36 -- List of WorldMapIDs to try to get World Quests for
37 private.WORLD_QUEST_MAP_IDS = {
38 1014, -- Dalaran (new)
39 1015, -- Azsuna
40 1017, -- Stormheim
41 1018, -- Val'sharah
42 1024, -- Highmountain
43 1033, -- Suramar
44 1096, -- Eye of Azshara (uninstanced)
34 } 45 }
35 46
36 -- Mapping of items that, when right-clicked, fire a spell (which can fail, so we have to check success). 47 -- Mapping of items that, when right-clicked, fire a spell (which can fail, so we have to check success).
37 -- They reward loot via loot toast popups upon completion of that spell. 48 -- They reward loot via loot toast popups upon completion of that spell.
38 -- SHOW_LOOT_TOAST can be used to track loot. 49 -- SHOW_LOOT_TOAST can be used to track loot.