From 64ed5cd18dca0d5eb08302d552a09f03d9ceeb10 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 7 Jan 2015 15:34:58 +0300 Subject: eathena: add packet CMSG_VENDING_BUY2 0x0801. --- src/net/eathena/vendinghandler.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/net/eathena/vendinghandler.cpp') diff --git a/src/net/eathena/vendinghandler.cpp b/src/net/eathena/vendinghandler.cpp index e16e26fd8..e01040055 100644 --- a/src/net/eathena/vendinghandler.cpp +++ b/src/net/eathena/vendinghandler.cpp @@ -182,4 +182,20 @@ void VendingHandler::buy(const Being *const being, outMsg.writeInt16(index, "index"); } +void VendingHandler::buy2(const Being *const being, + const int vendId, + const int index, + const int amount) const +{ + if (!being) + return; + + createOutPacket(CMSG_VENDING_BUY2); + outMsg.writeInt16(16, "len"); + outMsg.writeInt32(being->getId(), "account id"); + outMsg.writeInt32(vendId, "vend id"); + outMsg.writeInt16(amount, "amount"); + outMsg.writeInt16(index, "index"); +} + } // namespace EAthena -- cgit v1.2.3-70-g09d2