summaryrefslogtreecommitdiff
path: root/src/net/eathena/cashshophandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/cashshophandler.cpp')
-rw-r--r--src/net/eathena/cashshophandler.cpp14
1 files changed, 14 insertions, 0 deletions
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