summaryrefslogtreecommitdiff
path: root/packets/inventory_end_packet.gd
diff options
context:
space:
mode:
Diffstat (limited to 'packets/inventory_end_packet.gd')
-rw-r--r--packets/inventory_end_packet.gd26
1 files changed, 26 insertions, 0 deletions
diff --git a/packets/inventory_end_packet.gd b/packets/inventory_end_packet.gd
new file mode 100644
index 0000000..d8d313b
--- /dev/null
+++ b/packets/inventory_end_packet.gd
@@ -0,0 +1,26 @@
+## rAthena References:
+## - PACKET_ZC_INVENTORY_END
+## - clif_inventoryEnd
+class_name InventoryEndPacket
+extends Packet
+
+
+const HEADER := 0x0b0b
+const BYTE_LENGTH := 4
+
+
+## Byte Type: u8
+## Byte Length: 1
+var inventory_type: int
+
+## Byte Type: u8
+var flag: int
+
+
+static func from_bytes(bytes: PackedByteArray) -> InventoryEndPacket:
+ var packet = InventoryEndPacket.new()
+
+ packet.inventory_type = bytes.decode_u8(2)
+ packet.flag = bytes.decode_u8(3)
+
+ return packet