diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-17 20:39:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-17 20:39:16 +0300 |
commit | 1ca01c7099f1655510a7d8daf215c5d469bfcf33 (patch) | |
tree | 15d68947170ebf4649c6a10f94cd429f6da187a4 /src/net/eathena/beinghandler.cpp | |
parent | 3c97cad0badf0e2f3597670d9981190a83b0df33 (diff) | |
download | plus-1ca01c7099f1655510a7d8daf215c5d469bfcf33.tar.gz plus-1ca01c7099f1655510a7d8daf215c5d469bfcf33.tar.bz2 plus-1ca01c7099f1655510a7d8daf215c5d469bfcf33.tar.xz plus-1ca01c7099f1655510a7d8daf215c5d469bfcf33.zip |
eathena: add partial support for packet SMSG_PLAYER_STATUS_CHANGE_NO_TICK 0x0196.
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r-- | src/net/eathena/beinghandler.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp index 0abe3281a..69f09ed8f 100644 --- a/src/net/eathena/beinghandler.cpp +++ b/src/net/eathena/beinghandler.cpp @@ -83,6 +83,7 @@ BeingHandler::BeingHandler(const bool enableSync) : SMSG_PLAYER_STOP, SMSG_PLAYER_MOVE_TO_ATTACK, SMSG_PLAYER_STATUS_CHANGE, + SMSG_PLAYER_STATUS_CHANGE_NO_TICK, SMSG_BEING_STATUS_CHANGE, SMSG_BEING_STATUS_CHANGE2, SMSG_BEING_RESURRECT, @@ -224,6 +225,10 @@ void BeingHandler::handleMessage(Net::MessageIn &msg) processPlaterStatusChange(msg); break; + case SMSG_PLAYER_STATUS_CHANGE_NO_TICK: + processPlaterStatusChangeNoTick(msg); + break; + case SMSG_BEING_STATUS_CHANGE: case SMSG_BEING_STATUS_CHANGE2: processBeingStatusChange(msg); @@ -1734,6 +1739,14 @@ void BeingHandler::processPlaterStatusChange(Net::MessageIn &msg) const BLOCK_END("BeingHandler::processPlayerStop") } +void BeingHandler::processPlaterStatusChangeNoTick(Net::MessageIn &msg) const +{ + // +++ probably need show some effect? + msg.readInt16("index"); + msg.readInt32("account id"); + msg.readUInt8("state"); +} + void BeingHandler::processBeingResurrect(Net::MessageIn &msg) const { BLOCK_START("BeingHandler::processBeingResurrect") |