From 48c215204404187e69b60c912c345429bcd37934 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 12 Sep 2016 17:44:36 +0300 Subject: Add packet SMSG_BUYINGSTORE_REPORT 0x09e6. --- src/net/eathena/buyingstorerecv.cpp | 12 +++++++++++- src/net/eathena/packetsin.inc | 1 + 2 files changed, 12 insertions(+), 1 deletion(-) (limited to 'src/net') diff --git a/src/net/eathena/buyingstorerecv.cpp b/src/net/eathena/buyingstorerecv.cpp index 71396df4c..4480a01bf 100644 --- a/src/net/eathena/buyingstorerecv.cpp +++ b/src/net/eathena/buyingstorerecv.cpp @@ -196,7 +196,17 @@ void BuyingStoreRecv::processBuyingStoreReport(Net::MessageIn &msg) UNIMPLIMENTEDPACKET; msg.readInt16("item id"); msg.readInt16("amount"); - msg.readInt32("money limit"); + if (msg.getVersion() >= 20141016) + { + msg.readInt32("money"); + msg.readInt32("money limit"); + msg.readInt32("char id"); + msg.readInt32("date"); + } + else + { + msg.readInt32("money limit"); + } } void BuyingStoreRecv::processBuyingStoreDeleteItem(Net::MessageIn &msg) diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 2058857b7..44482a2eb 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -777,6 +777,7 @@ packet(SMSG_ROULETTE_RECV_ITEM_ACK, 0x0a22, 5, &RouletteRecv::processRo if (packetVersion >= 20141016) { packet(SMSG_VENDING_REPORT, 0x09e5, 18, &VendingRecv::processReport, 20141016); + packet(SMSG_BUYINGSTORE_REPORT, 0x09e6, 22, &BuyingStoreRecv::processBuyingStoreReport, 20141016); } // 20141022 -- cgit v1.2.3-70-g09d2