mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 22:57:45 +00:00
Add FFXIVIpcEnvironmentControl and FFXIVIpcRemoteServerValue for 6.40
This commit is contained in:
parent
45c6e2d833
commit
e34e3606b6
2 changed files with 16 additions and 0 deletions
|
@ -324,6 +324,7 @@ enum ServerZoneIpcType :
|
|||
SubmarineExplorationResult = 0x2c9, // updated 6.40
|
||||
|
||||
EnvironmentControl = 0x108, // updated 6.40
|
||||
RSVData = 0x01DD, // updated 6.40
|
||||
IslandWorkshopSupplyDemand = 0x1b7, // updated 6.40
|
||||
|
||||
};
|
||||
|
|
|
@ -2360,6 +2360,21 @@ namespace Sapphire::Network::Packets::Server
|
|||
FFXIVIpcMapUpdateN< 128 >
|
||||
{
|
||||
};
|
||||
|
||||
struct FFXIVIpcEnvironmentControl : FFXIVIpcBasePacket< EnvironmentControl >
|
||||
{
|
||||
uint32_t directorId;
|
||||
uint32_t state;
|
||||
uint16_t param3;
|
||||
uint16_t param4;
|
||||
};
|
||||
|
||||
struct FFXIVIpcRemoteServerValue : FFXIVIpcBasePacket< RSVData >
|
||||
{
|
||||
uint32_t value_size;
|
||||
char key_str[48];
|
||||
char value_str[1024];
|
||||
};
|
||||
}
|
||||
|
||||
#endif /*_CORE_NETWORK_PACKETS_SERVER_IPC_H*/
|
||||
|
|
Loading…
Add table
Reference in a new issue