diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-04-10 21:41:02 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2008-04-10 21:41:02 +0000 |
commit | c67fa724ddbdc4ef3a98920d7b92816ecd6fc2be (patch) | |
tree | b5c779854531e24a65e284736002aa1a0198c7dc /src/net/protocol.h | |
parent | a191c063d77dfe5ee7e79e55a7106ad505d8f493 (diff) | |
download | mana-c67fa724ddbdc4ef3a98920d7b92816ecd6fc2be.tar.gz mana-c67fa724ddbdc4ef3a98920d7b92816ecd6fc2be.tar.bz2 mana-c67fa724ddbdc4ef3a98920d7b92816ecd6fc2be.tar.xz mana-c67fa724ddbdc4ef3a98920d7b92816ecd6fc2be.zip |
Implemented support for whispering to other players (patch by peavey).
Diffstat (limited to 'src/net/protocol.h')
-rw-r--r-- | src/net/protocol.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/protocol.h b/src/net/protocol.h index f755eda4..1e76ce1c 100644 --- a/src/net/protocol.h +++ b/src/net/protocol.h @@ -72,6 +72,8 @@ #define SMSG_NPC_BUY_RESPONSE 0x00ca #define SMSG_NPC_SELL_RESPONSE 0x00cb #define SMSG_PLAYER_CHAT 0x008e /**< Player talks */ +#define SMSG_WHISPER 0x0097 /**< Whisper Recieved */ +#define SMSG_WHISPER_RESPONSE 0x0098 #define SMSG_GM_CHAT 0x009a /**< GM announce */ #define SMSG_WALK_RESPONSE 0x0087 #define SMSG_TRADE_REQUEST 0x00e5 /**< Receiving a request to trade */ @@ -89,6 +91,7 @@ #define CMSG_NPC_BUY_REQUEST 0x00c8 #define CMSG_NPC_BUY_SELL_REQUEST 0x00c5 #define CMSG_CHAT_MESSAGE 0x008c +#define CMSG_CHAT_WHISPER 0x0096 #define CMSG_NPC_LIST_CHOICE 0x00b8 #define CMSG_NPC_NEXT_REQUEST 0x00b9 #define CMSG_NPC_SELL_REQUEST 0x00c9 |