blob: 33ac5f32c9b8f7b0b7780326cc5ce7f6a33bfdad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
## 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
|