From 8f49aa549ba451768c6748ca0ffb2d5bdb5a0eaf Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 24 Dec 2014 14:09:35 +0300 Subject: eathena: add packet CMSG_NPC_CASH_SHOP_BUY 0x0288. --- 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 39db23b04..56e7bac25 100644 --- a/src/net/eathena/cashshophandler.cpp +++ b/src/net/eathena/cashshophandler.cpp @@ -20,6 +20,7 @@ #include "net/eathena/cashshophandler.h" +#include "net/eathena/messageout.h" #include "net/eathena/protocol.h" #include "debug.h" @@ -68,4 +69,17 @@ void CashShopHandler::processCashShopOpen(Net::MessageIn &msg) } } +void CashShopHandler::buy(const int points, + const int itemId, + const unsigned char color A_UNUSED, + const int amount) const +{ + createOutPacket(CMSG_NPC_CASH_SHOP_BUY); + outMsg.writeInt16(10 + 4, "len"); + outMsg.writeInt32(points, "points"); + outMsg.writeInt16(1, "count"); + outMsg.writeInt16(amount, "amount"); + outMsg.writeInt16(itemId, "item id"); +} + } // namespace EAthena -- cgit v1.2.3-60-g2f50