diff options
Diffstat (limited to 'packets/map_server/update_show_equip_packet.gd')
-rw-r--r-- | packets/map_server/update_show_equip_packet.gd | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packets/map_server/update_show_equip_packet.gd b/packets/map_server/update_show_equip_packet.gd new file mode 100644 index 0000000..5693550 --- /dev/null +++ b/packets/map_server/update_show_equip_packet.gd @@ -0,0 +1,21 @@ +## rAthena References: +## - clif_equipcheckbox +class_name UpdateShowEquipPacket +extends Packet + + +const HEADER := 0x02da +const BYTE_LENGTH := 3 + + +## Byte Type: u8 +## Byte Length: 1 +var open_equip_window: bool + + +static func from_bytes(bytes: PackedByteArray) -> UpdateShowEquipPacket: + var packet = UpdateShowEquipPacket.new() + + packet.open_equip_window = bytes.decode_u8(2) + + return packet |