From 4d92eb29651fdddc0188410fa2d67ae13ba18d5a Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 9 Oct 2014 23:47:57 +0300 Subject: eathena: add partial support for packet SMSG_GRAFFITI_VISIBLE 0x01c9. --- src/net/eathena/itemhandler.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/net/eathena/itemhandler.cpp') diff --git a/src/net/eathena/itemhandler.cpp b/src/net/eathena/itemhandler.cpp index f37bb6f09..438a4c146 100644 --- a/src/net/eathena/itemhandler.cpp +++ b/src/net/eathena/itemhandler.cpp @@ -40,6 +40,7 @@ ItemHandler::ItemHandler() : SMSG_ITEM_VISIBLE, SMSG_ITEM_DROPPED, SMSG_ITEM_REMOVE, + SMSG_GRAFFITI_VISIBLE, 0 }; handledMessages = _messages; @@ -61,6 +62,10 @@ void ItemHandler::handleMessage(Net::MessageIn &msg) processItemRemove(msg); break; + case SMSG_GRAFFITI_VISIBLE: + processGraffiti(msg); + break; + default: break; } @@ -85,4 +90,16 @@ void ItemHandler::processItemDropped(Net::MessageIn &msg) } } +void ItemHandler::processGraffiti(Net::MessageIn &msg) +{ + msg.readInt32("graffiti id"); + msg.readInt32("creator id"); + msg.readInt16("x"); + msg.readInt16("y"); + msg.readUInt8("job"); + msg.readUInt8("visible"); + msg.readUInt8("is content"); + msg.readString(80, "text"); +} + } // namespace EAthena -- cgit v1.2.3-60-g2f50