From 16958b5635ab990881039ea71bca15e90088b12f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 12 Mar 2015 13:13:43 +0300 Subject: eathena: add partial support for packet SMSG_PLAYER_FAME_ALCHEMIST 0x021c. --- src/net/eathena/playerhandler.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/net/eathena/playerhandler.cpp') diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 12d39531f..93cd5ccf9 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -65,6 +65,7 @@ PlayerHandler::PlayerHandler() : SMSG_ONLINE_LIST, SMSG_PLAYER_NOTIFY_MAPINFO, SMSG_PLAYER_FAME_BLACKSMITH, + SMSG_PLAYER_FAME_ALCHEMIST, 0 }; handledMessages = _messages; @@ -156,6 +157,10 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg) processPlayerFameBlacksmith(msg); break; + case SMSG_PLAYER_FAME_ALCHEMIST: + processPlayerFameAlchemist(msg); + break; + default: break; } @@ -537,4 +542,11 @@ void PlayerHandler::processPlayerFameBlacksmith(Net::MessageIn &msg) msg.readInt32("total points"); } +void PlayerHandler::processPlayerFameAlchemist(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt32("points"); + msg.readInt32("total points"); +} + } // namespace EAthena -- cgit v1.2.3-60-g2f50