diff options
-rw-r--r-- | src/net/eathena/packetsin.inc | 4 | ||||
-rw-r--r-- | src/net/eathena/vendingrecv.cpp | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index ecab39c63..2058857b7 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -774,6 +774,10 @@ packet(SMSG_ROULETTE_OPEN_ACK, 0x0a1a, 23, &RouletteRecv::processRo packet(SMSG_ROULETTE_INFO_ACK_TYPE, 0x0a1c, 344, &RouletteRecv::processRouletteInfoAckType, 20141016); packet(SMSG_ROULETTE_GENERATE_ACK_TYPE, 0x0a20, 21, &RouletteRecv::processRouletteGenerateAckType, 20141016); packet(SMSG_ROULETTE_RECV_ITEM_ACK, 0x0a22, 5, &RouletteRecv::processRouletteItemAck, 20141016); +if (packetVersion >= 20141016) +{ + packet(SMSG_VENDING_REPORT, 0x09e5, 18, &VendingRecv::processReport, 20141016); +} // 20141022 if (packetVersion >= 20141022) diff --git a/src/net/eathena/vendingrecv.cpp b/src/net/eathena/vendingrecv.cpp index f6668265f..3419ab343 100644 --- a/src/net/eathena/vendingrecv.cpp +++ b/src/net/eathena/vendingrecv.cpp @@ -220,6 +220,13 @@ void VendingRecv::processReport(Net::MessageIn &msg) { const int index = msg.readInt16("inv index") - INVENTORY_OFFSET; const int amount = msg.readInt16("amount"); + if (msg.getVersion() >= 20141016) + { + UNIMPLIMENTEDPACKET; + msg.readInt32("char id"); + msg.readInt32("time"); + msg.readInt32("zeny"); + } const Inventory *const inventory = PlayerInfo::getCartInventory(); if (!inventory) return; |