diff options
Diffstat (limited to 'src/net/eathena/cashshophandler.cpp')
-rw-r--r-- | src/net/eathena/cashshophandler.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/net/eathena/cashshophandler.cpp b/src/net/eathena/cashshophandler.cpp index 5cc0529a7..a001b1f2e 100644 --- a/src/net/eathena/cashshophandler.cpp +++ b/src/net/eathena/cashshophandler.cpp @@ -48,6 +48,7 @@ CashShopHandler::CashShopHandler() : SMSG_NPC_CASH_SHOP_OPEN, SMSG_NPC_CASH_BUY_ACK, SMSG_NPC_CASH_POINTS, + SMSG_NPC_CASH_BUY, 0 }; handledMessages = _messages; @@ -71,6 +72,10 @@ void CashShopHandler::handleMessage(Net::MessageIn &msg) processCashShopPoints(msg); break; + case SMSG_NPC_CASH_BUY: + processCashShopBuy(msg); + break; + default: break; } @@ -112,6 +117,15 @@ void CashShopHandler::processCashShopPoints(Net::MessageIn &msg) msg.readInt32("kafra points"); } +void CashShopHandler::processCashShopBuy(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt32("id"); + msg.readInt16("result"); + msg.readInt32("cash points"); + msg.readInt32("kafra points"); +} + void CashShopHandler::buyItem(const int points, const int itemId, const unsigned char color A_UNUSED, |