From 0b5fa147dc1f6a808ef3c645d03bcb9eb0a1b17f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 18 Mar 2015 12:34:33 +0300 Subject: eathena: add partial support for packet SMSG_NPC_CASH_BUY 0x0849. --- src/net/eathena/cashshophandler.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/net/eathena/cashshophandler.cpp') 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, -- cgit v1.2.3-70-g09d2