## rAthena References: ## - clif_configuration class_name UpdateConfigurationPacket extends Packet const HEADER := 0x02d9 const BYTE_LENGTH := 10 ## Byte Type: u32 ## Byte Length: 4 var config_type: int ## Byte Type: u32 ## Byte Length: 4 var enabled: bool static func from_bytes(bytes: PackedByteArray) -> UpdateConfigurationPacket: var packet = UpdateConfigurationPacket.new() packet.config_type = bytes.decode_u32(2) packet.enabled = bytes.decode_u32(6) return packet