From a14e88ff4d0d87841a44254e2bff1784da6e8b48 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Sun, 15 Dec 2024 14:23:25 +0100 Subject: next commit --- .../update_party_invitation_state_packet.gd | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 packets/map_server/update_party_invitation_state_packet.gd (limited to 'packets/map_server/update_party_invitation_state_packet.gd') diff --git a/packets/map_server/update_party_invitation_state_packet.gd b/packets/map_server/update_party_invitation_state_packet.gd new file mode 100644 index 0000000..5efb064 --- /dev/null +++ b/packets/map_server/update_party_invitation_state_packet.gd @@ -0,0 +1,22 @@ +## rAthena References: +## - ZC_PARTY_CONFIG +## - clif_partyinvitationstate +class_name UpdatePartyInvitationState +extends Packet + + +const HEADER := 0x02c9 +const BYTE_LENGTH := 3 + + +## Byte Type: u8 +## Byte Length: 1 +var deny_invites: bool + + +static func from_bytes(bytes: PackedByteArray) -> UpdatePartyInvitationState: + var packet = UpdatePartyInvitationState.new() + + packet.deny_invites = bytes.decode_u8(2) + + return packet -- cgit v1.2.3