1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-23 21:17:45 +00:00

Add support for the CrossworldLinkshells IPC opcode

This commit is contained in:
Joshua Goins 2025-07-21 22:15:32 -04:00
parent f2cbc5a14c
commit de645008c7
2 changed files with 10 additions and 0 deletions

View file

@ -324,6 +324,11 @@
"name": "StatusEffectList3",
"opcode": 894,
"size": 360
},
{
"name": "CrossworldLinkshells",
"opcode": 709,
"size": 456
}
],
"ClientZoneIpcType": [

View file

@ -565,6 +565,11 @@ pub enum ServerZoneIpcData {
ContentFinderCommencing { unk1: [u8; 24] },
#[br(pre_assert(*magic == ServerZoneIpcType::StatusEffectList3))]
StatusEffectList3 { status_effects: [StatusEffect; 30] },
#[br(pre_assert(*magic == ServerZoneIpcType::CrossworldLinkshells))]
CrossworldLinkshells {
// TODO: fill this out, each entry is 57 bytes probably
unk1: [u8; 456],
},
Unknown {
#[br(count = size - 32)]
unk: Vec<u8>,