diff options
| author | Shauren <shauren.trinity@gmail.com> | 2011-05-30 22:12:17 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2011-05-30 22:12:17 +0200 |
| commit | 5256b5abfeacc4e7d89d90bd085bca303419bebe (patch) | |
| tree | eb3307cef2c961bf4032fc2e7d4ead0df9d2454b | |
| parent | bef55b91eca91034c3f7c7828fe47d4fddecb110 (diff) | |
Core/Defines: Added missing custom errors to spell cast results, thanks Kaelima
| -rwxr-xr-x | src/server/game/Miscellaneous/SharedDefines.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/server/game/Miscellaneous/SharedDefines.h b/src/server/game/Miscellaneous/SharedDefines.h index c5391f5d100..a3042808ea6 100755 --- a/src/server/game/Miscellaneous/SharedDefines.h +++ b/src/server/game/Miscellaneous/SharedDefines.h @@ -1087,18 +1087,38 @@ enum SpellCustomErrors SPELL_CUSTOM_ERROR_GM_ONLY = 65, // Only GMs may use that. Your account has been reported for investigation. SPELL_CUSTOM_ERROR_REQUIRES_LEVEL_58 = 66, // You must reach level 58 to use this portal. SPELL_CUSTOM_ERROR_AT_HONOR_CAP = 67, // You already have the maximum amount of honor. + SPELL_CUSTOM_ERROR_68 = 68, // "" + SPELL_CUSTOM_ERROR_69 = 69, // "" + SPELL_CUSTOM_ERROR_70 = 70, // "" + SPELL_CUSTOM_ERROR_71 = 71, // "" + SPELL_CUSTOM_ERROR_72 = 72, // "" + SPELL_CUSTOM_ERROR_73 = 73, // "" + SPELL_CUSTOM_ERROR_74 = 74, // "" SPELL_CUSTOM_ERROR_MUST_HAVE_DEMONIC_CIRCLE = 75, // You must have a demonic circle active. SPELL_CUSTOM_ERROR_AT_MAX_RAGE = 76, // You already have maximum rage SPELL_CUSTOM_ERROR_REQUIRES_350_ENGINEERING = 77, // Requires Engineering (350) SPELL_CUSTOM_ERROR_SOUL_BELONGS_TO_LICH_KING = 78, // Your soul belongs to the Lich King SPELL_CUSTOM_ERROR_ATTENDANT_HAS_PONY = 79, // Your attendant already has an Argent Pony + SPELL_CUSTOM_ERROR_80 = 80, // "" + SPELL_CUSTOM_ERROR_81 = 81, // "" + SPELL_CUSTOM_ERROR_82 = 82, // "" SPELL_CUSTOM_ERROR_MUST_HAVE_FIRE_TOTEM = 83, // You must have a Fire Totem active. SPELL_CUSTOM_ERROR_CANT_TARGET_VAMPIRES = 84, // You may not bite other vampires. SPELL_CUSTOM_ERROR_PET_ALREADY_AT_YOUR_LEVEL = 85, // Your pet is already at your level. SPELL_CUSTOM_ERROR_MISSING_ITEM_REQUIREMENS = 86, // You do not meet the level requirements for this item. SPELL_CUSTOM_ERROR_TOO_MANY_ABOMINATIONS = 87, // There are too many Mutated Abominations. SPELL_CUSTOM_ERROR_ALL_POTIONS_USED = 88, // The potions have all been depleted by Professor Putricide. + SPELL_CUSTOM_ERROR_89 = 89, // "" SPELL_CUSTOM_ERROR_REQUIRES_LEVEL_65 = 90, // Requires level 65 + SPELL_CUSTOM_ERROR_91 = 91, // "" + SPELL_CUSTOM_ERROR_92 = 92, // "" + SPELL_CUSTOM_ERROR_93 = 93, // "" + SPELL_CUSTOM_ERROR_94 = 94, // "" + SPELL_CUSTOM_ERROR_95 = 95, // "" + SPELL_CUSTOM_ERROR_MAX_NUMBER_OF_RECRUITS = 96, // You already have the max number of recruits. + SPELL_CUSTOM_ERROR_MAX_NUMBER_OF_VOLUNTEERS = 97, // You already have the max number of volunteers. + SPELL_CUSTOM_ERROR_FROSTMOURNE_RENDERED_RESSURECT = 98, // Frostmourne has rendered you unable to ressurect. + SPELL_CUSTOM_ERROR_CANT_MOUNT_WITH_SHAPESHIFT = 99, // You can't mount while affected by that shapeshift. }; enum StealthType |
