summaryrefslogtreecommitdiff
path: root/packets/inventory_end_packet.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2024-12-13 14:53:38 +0100
committerDaniel Weipert <git@mail.dweipert.de>2024-12-13 14:53:38 +0100
commitca4d1945598863d0ce297f4272317e5dd5797f88 (patch)
treec2675b394140a71c7eee04034f087c107dcd7c9c /packets/inventory_end_packet.gd
parenta22381eff3bf2286ee27f4d15ddf4c431ea063be (diff)
next commit
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