diff options
| author | Vincent-Michael <Vincent_Michael@gmx.de> | 2015-08-08 00:01:00 +0200 |
|---|---|---|
| committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2015-08-08 00:01:00 +0200 |
| commit | 32284d3e9ca55ad906fab8eb360da555dc1cfbb3 (patch) | |
| tree | 633813a5d2dd7ef79f4d53c45ddd00ce2af4969f /src/server/game/Quests | |
| parent | 7732ad5153783ca31d32c6812f21c2b723fd589a (diff) | |
Core/Quests: Update QuestFailedReason enum for 6.2.0
Diffstat (limited to 'src/server/game/Quests')
| -rw-r--r-- | src/server/game/Quests/QuestDef.h | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/src/server/game/Quests/QuestDef.h b/src/server/game/Quests/QuestDef.h index a2a61cc5da0..ca743f0c597 100644 --- a/src/server/game/Quests/QuestDef.h +++ b/src/server/game/Quests/QuestDef.h @@ -52,19 +52,20 @@ namespace WorldPackets enum QuestFailedReason { - INVALIDREASON_DONT_HAVE_REQ = 0, - INVALIDREASON_QUEST_FAILED_LOW_LEVEL = 1, // You are not high enough level for that quest. - INVALIDREASON_QUEST_FAILED_WRONG_RACE = 6, // That quest is not available to your race. - INVALIDREASON_QUEST_ALREADY_DONE = 7, // You have completed that quest. - INVALIDREASON_QUEST_ONLY_ONE_TIMED = 12, // You can only be on one timed quest at a time. - INVALIDREASON_QUEST_ALREADY_ON = 13, // You are already on that quest. - INVALIDREASON_QUEST_FAILED_EXPANSION = 16, // This quest requires an expansion enabled account. - INVALIDREASON_QUEST_ALREADY_ON2 = 18, // You are already on that quest. - INVALIDREASON_QUEST_FAILED_MISSING_ITEMS = 21, // You don't have the required items with you. Check storage. - INVALIDREASON_QUEST_FAILED_NOT_ENOUGH_MONEY = 23, // You don't have enough money for that quest. - INVALIDREASON_DAILY_QUESTS_REMAINING = 26, // You have already completed 25 daily quests today. - INVALIDREASON_QUEST_FAILED_CAIS = 27, // You cannot complete quests once you have reached tired time. - INVALIDREASON_DAILY_QUEST_COMPLETED_TODAY = 29 // You have completed that daily quest today. + QUEST_ERR_NONE = 0, + QUEST_ERR_FAILED_LOW_LEVEL = 1, // "You are not high enough level for that quest."" + QUEST_ERR_FAILED_WRONG_RACE = 6, // "That quest is not available to your race." + QUEST_ERR_ALREADY_DONE = 7, // "You have completed that daily quest today." + QUEST_ERR_ONLY_ONE_TIMED = 12, // "You can only be on one timed quest at a time" + QUEST_ERR_ALREADY_ON1 = 13, // "You are already on that quest" + QUEST_ERR_FAILED_EXPANSION = 16, // "This quest requires an expansion enabled account." + QUEST_ERR_ALREADY_ON2 = 18, // "You are already on that quest" + QUEST_ERR_FAILED_MISSING_ITEMS = 21, // "You don't have the required items with you. Check storage." + QUEST_ERR_FAILED_NOT_ENOUGH_MONEY = 23, // "You don't have enough money for that quest" + QUEST_ERR_FAILED_CAIS = 24, // "You cannot complete quests once you have reached tired time" + QUEST_ERR_ALREADY_DONE_DAILY = 26, // "You have completed that daily quest today." + QUEST_ERR_FAILED_SPELL = 28, // "You haven't learned the required spell." + QUEST_ERR_HAS_IN_PROGRESS = 30 // "Progress Bar objective not completed" }; enum QuestShareMessages |
