summaryrefslogtreecommitdiff
path: root/packets/map_server/reputation_packet.gd
blob: 2c2d1b3248c49f7a21e5bdbddf8c8e281d0f5dbf (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
28
29
30
31
## rAthena References:
## - ZC_REPUTE_INFO
## - clif_reputation_type
## - clif_reputation_list
class_name ReputationPacket
extends Packet


const HEADER := 0x0b8d
const BYTE_LENGTH := 0


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

## Byte Type: u8
## Byte Length: 1
var success: bool

var entries: Array#Array[ReputationEntry]
# TODO


static func from_bytes(bytes: PackedByteArray) -> ReputationPacket:
	var packet = ReputationPacket.new()
	
	packet.packet_length = bytes.decode_u16(2)
	packet.success = bytes.decode_u8(4)
	
	return packet