diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-12 14:00:24 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-12 14:00:24 +0300 |
commit | 5d2962b4a09a71d47a241a762124c9e5526072f8 (patch) | |
tree | 4b0867d8bad910bfaa4462529a6cf8523ccbb794 /src/net/eathena/playerhandler.cpp | |
parent | de361843e60f3a073a76d64d373462ebea824338 (diff) | |
download | plus-5d2962b4a09a71d47a241a762124c9e5526072f8.tar.gz plus-5d2962b4a09a71d47a241a762124c9e5526072f8.tar.bz2 plus-5d2962b4a09a71d47a241a762124c9e5526072f8.tar.xz plus-5d2962b4a09a71d47a241a762124c9e5526072f8.zip |
eathena: add partial support for packet SMSG_PLAYER_FAME_TAEKWON 0x0224.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 1462343ef..d69d6b6eb 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -67,6 +67,7 @@ PlayerHandler::PlayerHandler() : SMSG_PLAYER_FAME_BLACKSMITH, SMSG_PLAYER_FAME_ALCHEMIST, SMSG_PLAYER_UPGRADE_MESSAGE, + SMSG_PLAYER_FAME_TAEKWON, 0 }; handledMessages = _messages; @@ -166,6 +167,10 @@ void PlayerHandler::handleMessage(Net::MessageIn &msg) processPlayerUpgradeMessage(msg); break; + case SMSG_PLAYER_FAME_TAEKWON: + processPlayerFameTaekwon(msg); + break; + default: break; } @@ -561,4 +566,11 @@ void PlayerHandler::processPlayerUpgradeMessage(Net::MessageIn &msg) msg.readInt16("item id"); } +void PlayerHandler::processPlayerFameTaekwon(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt32("points"); + msg.readInt32("total points"); +} + } // namespace EAthena |