mirror of
https://github.com/mangosfour/server.git
synced 2025-12-19 13:37:01 +00:00
Merge branch 'master' into 310
Conflicts: src/game/Player.cpp
This commit is contained in:
commit
f6e2b55e2c
25 changed files with 382 additions and 240 deletions
|
|
@ -2515,4 +2515,32 @@ enum BattleGroundTypeId
|
|||
};
|
||||
#define MAX_BATTLEGROUND_TYPE_ID 12
|
||||
|
||||
enum MailResponseType
|
||||
{
|
||||
MAIL_SEND = 0,
|
||||
MAIL_MONEY_TAKEN = 1,
|
||||
MAIL_ITEM_TAKEN = 2,
|
||||
MAIL_RETURNED_TO_SENDER = 3,
|
||||
MAIL_DELETED = 4,
|
||||
MAIL_MADE_PERMANENT = 5
|
||||
};
|
||||
|
||||
enum MailResponseResult
|
||||
{
|
||||
MAIL_OK = 0,
|
||||
MAIL_ERR_EQUIP_ERROR = 1,
|
||||
MAIL_ERR_CANNOT_SEND_TO_SELF = 2,
|
||||
MAIL_ERR_NOT_ENOUGH_MONEY = 3,
|
||||
MAIL_ERR_RECIPIENT_NOT_FOUND = 4,
|
||||
MAIL_ERR_NOT_YOUR_TEAM = 5,
|
||||
MAIL_ERR_INTERNAL_ERROR = 6,
|
||||
MAIL_ERR_DISABLED_FOR_TRIAL_ACC = 14,
|
||||
MAIL_ERR_RECIPIENT_CAP_REACHED = 15,
|
||||
MAIL_ERR_CANT_SEND_WRAPPED_COD = 16,
|
||||
MAIL_ERR_MAIL_AND_CHAT_SUSPENDED = 17,
|
||||
MAIL_ERR_TOO_MANY_ATTACHMENTS = 18,
|
||||
MAIL_ERR_MAIL_ATTACHMENT_INVALID = 19,
|
||||
MAIL_ERR_ITEM_HAS_EXPIRED = 21,
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue