summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-04-06 23:22:34 +0300
committerAndrei Karas <akaras@inbox.ru>2018-04-06 23:22:34 +0300
commit2bd8b34e2cc809a0adbebdadf5a777fbb57cf5a8 (patch)
tree8cddb61017d4587ed201fdf4b53e8bbf3ca02d9c
parentfbe1f9697c8a4f675d21c35a54d923fecd7af12e (diff)
downloadplus-2bd8b34e2cc809a0adbebdadf5a777fbb57cf5a8.tar.gz
plus-2bd8b34e2cc809a0adbebdadf5a777fbb57cf5a8.tar.bz2
plus-2bd8b34e2cc809a0adbebdadf5a777fbb57cf5a8.tar.xz
plus-2bd8b34e2cc809a0adbebdadf5a777fbb57cf5a8.zip
Add packet SMSG_FORMAT_COLOR_MESSAGE 0x09cd.
-rw-r--r--src/net/eathena/chatrecv.cpp10
-rw-r--r--src/net/eathena/chatrecv.h1
-rw-r--r--src/net/eathena/packetsin.inc1
3 files changed, 12 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;
diff --git a/src/net/eathena/chatrecv.h b/src/net/eathena/chatrecv.h
index bf8b13627..ec8b0528d 100644
--- a/src/net/eathena/chatrecv.h
+++ b/src/net/eathena/chatrecv.h
@@ -48,6 +48,7 @@ namespace EAthena
void processChatIgnoreList(Net::MessageIn &msg);
void processFormatMessage(Net::MessageIn &msg);
void processFormatMessageNumber(Net::MessageIn &msg);
+ void processFormatColor(Net::MessageIn &msg);
void processFormatMessageString(Net::MessageIn &msg);
void processFormatMessageSkill(Net::MessageIn &msg);
void processChatDisplay(Net::MessageIn &msg);
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index b60298c6b..6fe266937 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -293,6 +293,7 @@ packet(SMSG_BOOKING_SUB_FILTERING_LIST, 0x090c, 30, nullptr,
packet(SMSG_ADD_MAP_MARKER, 0x09c1, 10, &MapRecv::processAddMapMarker, 0);
packet(SMSG_GUILD_ONLINE_INFO, 0x016d, 14, &GuildRecv::processOnlineInfo, 0);
packet(SMSG_FORMAT_MESSAGE_STRING, 0x02c2, -1, &ChatRecv::processFormatMessageString, 0);
+packet(SMSG_FORMAT_COLOR_MESSAGE, 0x09cd, 8, &ChatRecv::processFormatColor, 0);
// 3
if (packetVersion >= 3)