summaryrefslogtreecommitdiff
path: root/packets/map_server/parameter_change_2_packet.gd
blob: a6590467e8f028edf00b9a1819301feb9d095012 (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_LONGLONGPAR_CHANGE
## - clif_longlongpar_change
class_name ParameterChange2Packet
extends Packet


const HEADER := 0x0acb
const BYTE_LENGTH := 12


## Byte Type: u16
## Byte Length: 2
var parameter_id: int

## Byte Type: u64
## Byte Length: 8
var value: int


static func from_bytes(bytes: PackedByteArray) -> ParameterChange2Packet:
	var packet = ParameterChange2Packet.new()
	
	packet.parameter_id = bytes.decode_u16(2)
	packet.value = bytes.decode_u64(4)
	
	return packet