summaryrefslogtreecommitdiff
path: root/src/net/eathena/inventoryrecv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/inventoryrecv.cpp')
-rw-r--r--src/net/eathena/inventoryrecv.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryrecv.cpp b/src/net/eathena/inventoryrecv.cpp
index 45593aba1..3f8dbb7b1 100644
--- a/src/net/eathena/inventoryrecv.cpp
+++ b/src/net/eathena/inventoryrecv.cpp
@@ -1512,4 +1512,26 @@ void InventoryRecv::processOverWeightPercent(Net::MessageIn &msg)
settings.overweightPercent = msg.readUInt32("parcent");
}
+void InventoryRecv::processInventoryStart1(Net::MessageIn &msg)
+{
+ UNIMPLEMENTEDPACKET;
+ msg.readString(24, "storage name");
+}
+
+void InventoryRecv::processInventoryStart2(Net::MessageIn &msg)
+{
+ UNIMPLEMENTEDPACKET;
+ msg.readUInt8("type");
+ msg.readString(24, "inventory name");
+}
+
+void InventoryRecv::processInventoryStart3(Net::MessageIn &msg)
+{
+ UNIMPLEMENTEDPACKET;
+ const int nameLen = msg.readInt16("len") - 5;
+ msg.readUInt8("type");
+ if (nameLen > 0)
+ msg.readString(nameLen, "inventory name");
+}
+
} // namespace EAthena