summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-01-25 19:52:39 +0300
committerAndrei Karas <akaras@inbox.ru>2019-01-25 19:52:39 +0300
commit5d0e738a90341dff367c49e4dfefe8e6c565882f (patch)
tree0655de31e8305ecff8aade6cf0911c9142fb78ed
parente8c9fc4b089590e02dad6503ab22c5eb95082246 (diff)
downloadplus-5d0e738a90341dff367c49e4dfefe8e6c565882f.tar.gz
plus-5d0e738a90341dff367c49e4dfefe8e6c565882f.tar.bz2
plus-5d0e738a90341dff367c49e4dfefe8e6c565882f.tar.xz
plus-5d0e738a90341dff367c49e4dfefe8e6c565882f.zip
Add packet SMSG_SERVICE_MESSAGE_COLOR 0x0adb
-rw-r--r--src/net/eathena/chatrecv.cpp11
-rw-r--r--src/net/eathena/chatrecv.h1
-rw-r--r--src/net/eathena/packetsin.inc1
3 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/chatrecv.cpp b/src/net/eathena/chatrecv.cpp
index f4c41d120..318fe7c30 100644
--- a/src/net/eathena/chatrecv.cpp
+++ b/src/net/eathena/chatrecv.cpp
@@ -822,4 +822,15 @@ void ChatRecv::processScriptMessage(Net::MessageIn &msg)
TryRemoveColors_true);
}
+void ChatRecv::processServiceMessageColor(Net::MessageIn &msg)
+{
+ const int sz = msg.readInt16("len") - 8;
+ msg.readInt32("color");
+ const std::string message = msg.readString(sz, "message");
+ localChatTab->chatLog(message,
+ ChatMsgType::BY_SERVER,
+ IgnoreRecord_false,
+ TryRemoveColors_true);
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/chatrecv.h b/src/net/eathena/chatrecv.h
index c304ce912..19d93f198 100644
--- a/src/net/eathena/chatrecv.h
+++ b/src/net/eathena/chatrecv.h
@@ -74,6 +74,7 @@ namespace EAthena
void processChatTalkieBox(Net::MessageIn &msg);
void processBattleChatMessage(Net::MessageIn &msg);
void processScriptMessage(Net::MessageIn &msg);
+ void processServiceMessageColor(Net::MessageIn &msg);
extern std::string mChatRoom;
} // namespace ChatRecv
} // namespace EAthena
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index 5e2b3eb5d..6417c251c 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -1181,6 +1181,7 @@ if (packetVersionMain >= 20170726)
// 20170830
packet(SMSG_PLAYER_STAT_UPDATE_7, 0x0acb, 12, &PlayerRecv::processPlayerStatUpdate7, 20170830);
packet(SMSG_PLAYER_GET_EXP2, 0x0acc, 18, &PlayerRecv::processPlayerGetExp2, 20170830);
+packet(SMSG_SERVICE_MESSAGE_COLOR, 0x0adb, -1, &ChatRecv::processServiceMessageColor, 20170830);
// zero 20171018
if (packets_zero == true)