From 43fb66a1610aeca72dab2527da95abdadb826697 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 12 Mar 2015 14:24:44 +0300 Subject: eathena: add partial support for packet SMSG_TAEKWON_RANKS_LIST 0x0226. --- src/net/eathena/beinghandler.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/net/eathena/beinghandler.cpp') diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp index 74d0d6128..ef22b4178 100644 --- a/src/net/eathena/beinghandler.cpp +++ b/src/net/eathena/beinghandler.cpp @@ -128,6 +128,7 @@ BeingHandler::BeingHandler(const bool enableSync) : SMSG_STARS_KILL, SMSG_BLACKSMITH_RANKS_LIST, SMSG_ALCHEMIST_RANKS_LIST, + SMSG_TAEKWON_RANKS_LIST, 0 }; handledMessages = _messages; @@ -368,6 +369,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg) processAlchemistRanksList(msg); break; + case SMSG_TAEKWON_RANKS_LIST: + processTaekwonRanksList(msg); + break; + default: break; } @@ -1355,6 +1360,16 @@ void BeingHandler::processAlchemistRanksList(Net::MessageIn &msg) msg.readInt32("points"); } +void BeingHandler::processTaekwonRanksList(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + // +++ here need window with rank tables. + for (int f = 0; f < 10; f ++) + msg.readString(24, "name"); + for (int f = 0; f < 10; f ++) + msg.readInt32("points"); +} + void BeingHandler::processBeingChangeDirection(Net::MessageIn &msg) { BLOCK_START("BeingHandler::processBeingChangeDirection") -- cgit v1.2.3-70-g09d2