From c9418c55fab6be4151d7a540daa01542d16a2ddd Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 18 Mar 2015 12:22:19 +0300 Subject: eathena: add partial support for packet SMSG_NPC_CASH_POINTS 0x0845. --- src/net/eathena/cashshophandler.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/net/eathena/cashshophandler.cpp') diff --git a/src/net/eathena/cashshophandler.cpp b/src/net/eathena/cashshophandler.cpp index 67d50cd21..5cc0529a7 100644 --- a/src/net/eathena/cashshophandler.cpp +++ b/src/net/eathena/cashshophandler.cpp @@ -47,6 +47,7 @@ CashShopHandler::CashShopHandler() : { SMSG_NPC_CASH_SHOP_OPEN, SMSG_NPC_CASH_BUY_ACK, + SMSG_NPC_CASH_POINTS, 0 }; handledMessages = _messages; @@ -66,6 +67,10 @@ void CashShopHandler::handleMessage(Net::MessageIn &msg) processCashShopBuyAck(msg); break; + case SMSG_NPC_CASH_POINTS: + processCashShopPoints(msg); + break; + default: break; } @@ -100,6 +105,13 @@ void CashShopHandler::processCashShopBuyAck(Net::MessageIn &msg) msg.readInt16("error"); } +void CashShopHandler::processCashShopPoints(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + 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-60-g2f50