From c673199f194fb683a88eb531e9642a49f1ed1b35 Mon Sep 17 00:00:00 2001 From: Shauren Date: Thu, 5 Nov 2020 19:52:36 +0100 Subject: Core/Quests: Define new quest objective types --- src/server/game/Quests/QuestDef.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/server/game/Quests/QuestDef.h b/src/server/game/Quests/QuestDef.h index b61a8edbe22..6c662c87b31 100644 --- a/src/server/game/Quests/QuestDef.h +++ b/src/server/game/Quests/QuestDef.h @@ -248,7 +248,10 @@ enum QuestObjectiveType QUEST_OBJECTIVE_CRITERIA_TREE = 14, QUEST_OBJECTIVE_PROGRESS_BAR = 15, QUEST_OBJECTIVE_HAVE_CURRENCY = 16, // requires the player to have X currency when turning in but does not consume it - QUEST_OBJECTIVE_OBTAIN_CURRENCY = 17 // requires the player to gain X currency after starting the quest but not required to keep it until the end (does not consume) + QUEST_OBJECTIVE_OBTAIN_CURRENCY = 17, // requires the player to gain X currency after starting the quest but not required to keep it until the end (does not consume) + QUEST_OBJECTIVE_INCREASE_REPUTATION = 18, // requires the player to gain X reputation with a faction + QUEST_OBJECTIVE_AREA_TRIGGER_ENTER = 19, + QUEST_OBJECTIVE_AREA_TRIGGER_EXIT = 20 }; enum QuestObjectiveFlags -- cgit v1.2.3