mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 00:27:44 +00:00
FFXIVIpcHousingEstateGreeting added
This commit is contained in:
parent
115ba7d80f
commit
692e6acaf8
3 changed files with 12 additions and 1 deletions
|
@ -295,7 +295,7 @@ enum ActorControlType : uint16_t
|
|||
RequestWardLandInfo = 0x453,
|
||||
RequestLandRelinquish = 0x454,
|
||||
RequestEstateRename = 0x45A,
|
||||
RequestEstateGreeting = 0x45C,
|
||||
RequestEstateGreeting = 0x45C, // sends FFXIVIpcHousingEstateGreeting in return
|
||||
RequestHousingItemUI = 0x463,
|
||||
RequestSharedEstateSettings = 0x46F,
|
||||
|
||||
|
|
|
@ -191,6 +191,8 @@ namespace Core::Network::Packets
|
|||
LandInfoSign = 0x0225, // updated 4.4
|
||||
LandRename = 0x0226, // updated 4.4
|
||||
|
||||
HousingEstateGreeting = 0x0227, // updated 4.4
|
||||
|
||||
LandPermissionSlot = 0x0228, // updated 4.4
|
||||
LandPermission = 0x0229, // updated 4.4
|
||||
|
||||
|
|
|
@ -1738,6 +1738,15 @@ struct FFXIVIpcHousingWardInfo : FFXIVIpcBasePacket< HousingWardInfo >
|
|||
} houseInfoEntry[60];
|
||||
};
|
||||
|
||||
struct FFXIVIpcHousingEstateGreeting : FFXIVIpcBasePacket< HousingEstateGreeting >
|
||||
{
|
||||
uint8_t plotId;
|
||||
uint8_t pad[3]; // unsure
|
||||
uint16_t territoryTypeId;
|
||||
uint16_t unk;
|
||||
char message[200];
|
||||
};
|
||||
|
||||
/**
|
||||
* Structural representation of the packet sent by the server
|
||||
* to show the current shared estate settings
|
||||
|
|
Loading…
Add table
Reference in a new issue