diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-03 19:01:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-10-03 19:01:07 +0300 |
commit | f840d8133e7fe1e76c9e1401a39fc57fecc0b140 (patch) | |
tree | e8356a916b3ab2fea596f9ddfb3d8b8832c9beb1 /src/net/eathena/inventoryhandler.cpp | |
parent | b6030e26ed33dd5d5dd85519cacb4644100cb299 (diff) | |
download | plus-f840d8133e7fe1e76c9e1401a39fc57fecc0b140.tar.gz plus-f840d8133e7fe1e76c9e1401a39fc57fecc0b140.tar.bz2 plus-f840d8133e7fe1e76c9e1401a39fc57fecc0b140.tar.xz plus-f840d8133e7fe1e76c9e1401a39fc57fecc0b140.zip |
eathena: add packet SMSG_PLAYER_INSERT_CARD 0x017d.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r-- | src/net/eathena/inventoryhandler.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index 953242462..7605e9177 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -70,6 +70,7 @@ InventoryHandler::InventoryHandler() : SMSG_PLAYER_ARROW_EQUIP, SMSG_PLAYER_ATTACK_RANGE, SMSG_PLAYER_UNE_CARD, + SMSG_PLAYER_INSERT_CARD, 0 }; handledMessages = _messages; @@ -156,6 +157,10 @@ void InventoryHandler::handleMessage(Net::MessageIn &msg) processPlayerUseCard(msg); break; + case SMSG_PLAYER_INSERT_CARD: + processPlayerInsertCard(msg); + break; + default: break; } @@ -604,6 +609,16 @@ void InventoryHandler::processPlayerUseCard(Net::MessageIn &msg) } } +void InventoryHandler::processPlayerInsertCard(Net::MessageIn &msg) +{ + msg.readInt16("item index"); + msg.readInt16("card index"); + if (msg.readUInt8("flag")) + NotifyManager::notify(NotifyTypes::CARD_INSERT_FAILED); + else + NotifyManager::notify(NotifyTypes::CARD_INSERT_SUCCESS); +} + void InventoryHandler::selectEgg(const Item *const item) const { createOutPacket(CMSG_PET_SELECT_EGG); |