1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 06:27:45 +00:00

Add WorldInteractionHandler.

This commit is contained in:
collett 2020-05-22 14:07:05 +09:00
parent 74f8c35fac
commit bb00bd9dca
2 changed files with 11 additions and 0 deletions

View file

@ -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
};

View file

@ -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