summaryrefslogtreecommitdiff
path: root/src/net/eathena/playerhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-18 14:57:43 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-18 14:57:43 +0300
commitee633de31c7978ae4a776cce4de86729356e1b1f (patch)
treeedffbdcdb8ff537c37c12ced8f08bc4fc7fe85e1 /src/net/eathena/playerhandler.cpp
parentb91b2d22683f39703e914bf83a5fc796ae2f5a18 (diff)
downloadplus-ee633de31c7978ae4a776cce4de86729356e1b1f.tar.gz
plus-ee633de31c7978ae4a776cce4de86729356e1b1f.tar.bz2
plus-ee633de31c7978ae4a776cce4de86729356e1b1f.tar.xz
plus-ee633de31c7978ae4a776cce4de86729356e1b1f.zip
eathena: add partial support for packet SMSG_PLAYER_RANK_POINTS 0x097e.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r--src/net/eathena/playerhandler.cpp13
1 files changed, 13 insertions, 0 deletions
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