summaryrefslogtreecommitdiff
path: root/src/net/eathena/inventoryrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-11-03 01:11:18 +0300
committerAndrei Karas <akaras@inbox.ru>2018-11-03 01:11:18 +0300
commit661b65eb1c652ca9cd14ab3dae4adf619168028b (patch)
tree741d32837a9a4b683d9a627c37afde2ac803188e /src/net/eathena/inventoryrecv.cpp
parentc07baee8d0b788225966355533a58b49ae67c3a4 (diff)
downloadplus-661b65eb1c652ca9cd14ab3dae4adf619168028b.tar.gz
plus-661b65eb1c652ca9cd14ab3dae4adf619168028b.tar.bz2
plus-661b65eb1c652ca9cd14ab3dae4adf619168028b.tar.xz
plus-661b65eb1c652ca9cd14ab3dae4adf619168028b.zip
Add packet SMSG_ITEM_PREVIEW1 0x0ab9
Diffstat (limited to 'src/net/eathena/inventoryrecv.cpp')
-rw-r--r--src/net/eathena/inventoryrecv.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryrecv.cpp b/src/net/eathena/inventoryrecv.cpp
index 9d9707735..a863a0229 100644
--- a/src/net/eathena/inventoryrecv.cpp
+++ b/src/net/eathena/inventoryrecv.cpp
@@ -1641,4 +1641,19 @@ void InventoryRecv::processEquipmentContinue(Net::MessageIn &msg,
}
}
+void InventoryRecv::processShowItemPreview1(Net::MessageIn &msg)
+{
+ UNIMPLEMENTEDPACKET;
+ msg.readInt16("inv index");
+ msg.readInt16("refine");
+ for (int f = 0; f < maxCards; f++)
+ msg.readItemId("card");
+ for (int f = 0; f < 5; f ++)
+ {
+ msg.readInt16("option index");
+ msg.readInt16("option value");
+ msg.readUInt8("option param");
+ }
+}
+
} // namespace EAthena