## rAthena References: ## - ZC_STATUS_CHANGE ## - clif_zc_status_change class_name ParameterChange3Packet extends Packet const HEADER := 0x00be const BYTE_LENGTH := 5 ## Byte Type: u16 ## Byte Length: 2 var parameter_id: int ## Byte Type: u8 ## Byte Length: 1 var value: int static func from_bytes(bytes: PackedByteArray) -> ParameterChange3Packet: var packet = ParameterChange3Packet.new() packet.parameter_id = bytes.decode_u16(2) packet.value = bytes.decode_u8(4) return packet