diff options
Diffstat (limited to 'src/net/eathena/chatrecv.cpp')
-rw-r--r-- | src/net/eathena/chatrecv.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/net/eathena/chatrecv.cpp b/src/net/eathena/chatrecv.cpp index faac6f014..12ebe2ee9 100644 --- a/src/net/eathena/chatrecv.cpp +++ b/src/net/eathena/chatrecv.cpp @@ -173,6 +173,16 @@ void ChatRecv::processFormatMessageNumber(Net::MessageIn &msg) processChatContinue(chatMsg, ChatMsgType::BY_SERVER); } +void ChatRecv::processFormatColor(Net::MessageIn &msg) +{ + const int msgId = msg.readInt16("msg id"); + msg.readInt32("color"); + // +++ here need load message from configuration file + const std::string chatMsg = strprintf( + "Message #%d", msgId); + processChatContinue(chatMsg, ChatMsgType::BY_SERVER); +} + void ChatRecv::processFormatMessageString(Net::MessageIn &msg) { const int strLen = msg.readInt16("len") - 6; |