1
Fork 0
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:
Maple 2023-05-29 22:26:00 -03:00
parent 45c6e2d833
commit e34e3606b6
2 changed files with 16 additions and 0 deletions

View file

@ -324,6 +324,7 @@ enum ServerZoneIpcType :
SubmarineExplorationResult = 0x2c9, // updated 6.40 SubmarineExplorationResult = 0x2c9, // updated 6.40
EnvironmentControl = 0x108, // updated 6.40 EnvironmentControl = 0x108, // updated 6.40
RSVData = 0x01DD, // updated 6.40
IslandWorkshopSupplyDemand = 0x1b7, // updated 6.40 IslandWorkshopSupplyDemand = 0x1b7, // updated 6.40
}; };

View file

@ -2360,6 +2360,21 @@ namespace Sapphire::Network::Packets::Server
FFXIVIpcMapUpdateN< 128 > 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*/ #endif /*_CORE_NETWORK_PACKETS_SERVER_IPC_H*/