From ee633de31c7978ae4a776cce4de86729356e1b1f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 18 Mar 2015 14:57:43 +0300 Subject: eathena: add partial support for packet SMSG_PLAYER_RANK_POINTS 0x097e. --- src/net/eathena/playerhandler.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/net/eathena/playerhandler.cpp') diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 94d974be5..9edb50e01 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -71,6 +71,7 @@ PlayerHandler::PlayerHandler() : SMSG_PLAYER_READ_BOOK, SMSG_PLAYER_EQUIP_TICK_ACK, SMSG_AUTOSHADOW_SPELL_LIST, + SMSG_PLAYER_RANK_POINTS, 0 }; handledMessages = _messages; @@ -186,6 +187,10 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg) processPlayerAutoShadowSpellList(msg); break; + case SMSG_PLAYER_RANK_POINTS: + processPlayerRankPoints(msg); + break; + default: break; } @@ -610,4 +615,12 @@ void PlayerHandler::processPlayerAutoShadowSpellList(Net::MessageIn &msg) msg.readInt16("skill id"); } +void PlayerHandler::processPlayerRankPoints(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt16("type"); + msg.readInt32("points"); + msg.readInt32("fame"); +} + } // namespace EAthena -- cgit v1.2.3-60-g2f50