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:
parent
f2cbc5a14c
commit
de645008c7
2 changed files with 10 additions and 0 deletions
|
@ -324,6 +324,11 @@
|
|||
"name": "StatusEffectList3",
|
||||
"opcode": 894,
|
||||
"size": 360
|
||||
},
|
||||
{
|
||||
"name": "CrossworldLinkshells",
|
||||
"opcode": 709,
|
||||
"size": 456
|
||||
}
|
||||
],
|
||||
"ClientZoneIpcType": [
|
||||
|
|
|
@ -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>,
|
||||
|
|
Loading…
Add table
Reference in a new issue