mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 14:37:44 +00:00
Merge pull request #675 from collett8192/update_5.25
Add WorldInteractionHandler.
This commit is contained in:
commit
a22e821845
2 changed files with 11 additions and 0 deletions
|
@ -376,6 +376,7 @@ namespace Sapphire::Network::Packets
|
|||
|
||||
PerformNoteHandler = 0x029B, // updated 4.3
|
||||
|
||||
WorldInteractionHandler = 0x0285, // updated 5.25
|
||||
ShopMessage = 0x00C1, // updated 5.25
|
||||
LootMessage = 0x00B1, // updated 5.25
|
||||
};
|
||||
|
|
|
@ -344,6 +344,16 @@ struct FFXIVIpcFreeCompanyUpdateShortMessageHandler :
|
|||
uint16_t unknown2;
|
||||
};
|
||||
|
||||
struct FFXIVIpcWorldInteractionHandler :
|
||||
FFXIVIpcBasePacket< WorldInteractionHandler >
|
||||
{
|
||||
uint32_t action;
|
||||
uint32_t unknown2;
|
||||
uint64_t unknown3;
|
||||
uint32_t unknown4;
|
||||
Common::FFXIVARR_POSITION3 position;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif //_CORE_NETWORK_PACKETS_ZONE_CLIENT_IPC_H
|
||||
|
|
Loading…
Add table
Reference in a new issue