From b27d45a2da3e41311681360400be60d5cedb2cc0 Mon Sep 17 00:00:00 2001 From: andy Date: Fri, 22 Apr 2022 00:35:01 +0000 Subject: [PATCH] GuildcardRecv struct --- src/packet/ship.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/packet/ship.rs b/src/packet/ship.rs index 210dba6..441da8e 100644 --- a/src/packet/ship.rs +++ b/src/packet/ship.rs @@ -635,3 +635,16 @@ impl std::default::Default for TradeSuccessful { } } } + +// same struct as libpso::packet::messages::GuildcardRecv +#[pso_packet(0x4E8)] +pub struct GuildcardAccept { + id: u32, + name: [u16; 0x18], + team: [u16; 0x10], + desc: [u16; 0x58], + one: u8, + language: u8, + section_id: u8, + class: u8, +} \ No newline at end of file