From b89bb9d7233acad1cefda6c393a930456a1f74da Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 10 Sep 2014 01:34:40 +0300 Subject: eathena: add packet CMSG_PLAYER_INSERT_CARD 0x017c. --- src/net/eathena/inventoryhandler.cpp | 8 ++++++++ src/net/eathena/inventoryhandler.h | 3 +++ src/net/eathena/protocol.h | 1 + 3 files changed, 12 insertions(+) (limited to 'src/net/eathena') diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index 86dd7ac02..9dc644fd5 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -237,6 +237,14 @@ void InventoryHandler::useCard(const int index) const outMsg.writeInt16(index + INVENTORY_OFFSET, "index"); } +void InventoryHandler::insertCard(const int cardIndex, + const int itemIndex) const +{ + MessageOut outMsg(CMSG_PLAYER_INSERT_CARD); + outMsg.writeInt16(cardIndex + INVENTORY_OFFSET, "card index"); + outMsg.writeInt16(itemIndex + INVENTORY_OFFSET, "item index"); +} + void InventoryHandler::processPlayerEquipment(Net::MessageIn &msg) { BLOCK_START("InventoryHandler::processPlayerEquipment") diff --git a/src/net/eathena/inventoryhandler.h b/src/net/eathena/inventoryhandler.h index 11227cff0..a35293aa4 100644 --- a/src/net/eathena/inventoryhandler.h +++ b/src/net/eathena/inventoryhandler.h @@ -60,6 +60,9 @@ class InventoryHandler final : public MessageHandler, void useCard(const int index) const override final; + void insertCard(const int cardIndex, + const int itemIndex) const override final; + protected: void processPlayerEquipment(Net::MessageIn &msg); diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index 82a2486a8..bb50a69cd 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -241,6 +241,7 @@ #define CMSG_PLAYER_EQUIP 0x0998 #define CMSG_PLAYER_UNEQUIP 0x00ab #define CMSG_PLAYER_USE_CARD 0x017a +#define CMSG_PLAYER_INSERT_CARD 0x017c #define CMSG_ITEM_PICKUP 0x07e4 #define CMSG_PLAYER_CHANGE_DIR 0x0202 -- cgit v1.2.3-70-g09d2