blob: 569355043dfc1dbb37dbe7d9e883f5588f127471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|