diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-10 16:54:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-10 16:54:46 +0300 |
commit | 7d162145958fccfcc3ba32a7db3b8161cfe83fe2 (patch) | |
tree | d109f74483a9274bca46a41670cc5ec69b50876f /src/net/eathena/playerhandler.cpp | |
parent | 8aad60beb37fb0f364b0d8ab5bbe66232eacb676 (diff) | |
download | plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.gz plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.bz2 plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.tar.xz plus-7d162145958fccfcc3ba32a7db3b8161cfe83fe2.zip |
Mark all unimplimented packets with UNIMPLIMENTEDPACKET attribute.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 1fa2d0329..b5605ea79 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -295,6 +295,7 @@ void PlayerHandler::setMemo() const void PlayerHandler::processPlayerShortcuts(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; msg.readUInt8("unused?"); for (int f = 0; f < 27; f ++) { @@ -307,6 +308,7 @@ void PlayerHandler::processPlayerShortcuts(Net::MessageIn &msg) void PlayerHandler::processPlayerShowEquip(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; msg.readUInt8("show equip"); // 1 mean need open "equipment" window } @@ -421,6 +423,7 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) void PlayerHandler::processPlayerGetExp(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; msg.readInt32("player id"); msg.readInt32("exp amount"); msg.readInt16("exp type"); @@ -465,6 +468,7 @@ void PlayerHandler::requestPvpInfo() const void PlayerHandler::processPvpInfo(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; msg.readInt32("char id"); msg.readInt32("account id"); msg.readInt32("pvp won"); @@ -486,6 +490,7 @@ void PlayerHandler::setViewEquipment(const bool allow) const void PlayerHandler::processPlayerHeal(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; // +++ probably need show effect or adjust hp/sp? // 5 - hp // 7 - sp @@ -495,6 +500,7 @@ void PlayerHandler::processPlayerHeal(Net::MessageIn &msg) void PlayerHandler::processPlayerSkillMessage(Net::MessageIn &msg) { + UNIMPLIMENTEDPACKET; // +++ need show this message msg.readInt32("type"); } |