mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 08:27:46 +00:00
Added Biscuits findings to servernotices
This commit is contained in:
parent
598dd50ff2
commit
8a7406565e
1 changed files with 21 additions and 1 deletions
|
@ -138,13 +138,33 @@ namespace Sapphire::Network::Packets::Server
|
|||
char padding;
|
||||
};
|
||||
|
||||
/**
|
||||
* Structural representation of the packet sent by the server
|
||||
* to display a server notice message
|
||||
*/
|
||||
struct FFXIVIpcServerNoticeShort : FFXIVIpcBasePacket< ServerNoticeShort >
|
||||
{
|
||||
// these are actually display flags
|
||||
/* 0000 */ uint8_t padding;
|
||||
// 0 = chat log
|
||||
// 2 = nothing
|
||||
// 4 = on screen message
|
||||
// 5 = on screen message + chat log
|
||||
char message[538];
|
||||
};
|
||||
|
||||
/**
|
||||
* Structural representation of the packet sent by the server
|
||||
* to display a server notice message
|
||||
*/
|
||||
struct FFXIVIpcServerNotice : FFXIVIpcBasePacket< ServerNotice >
|
||||
{
|
||||
// these are actually display flags
|
||||
/* 0000 */ uint8_t padding;
|
||||
// 0 = chat log
|
||||
// 2 = nothing
|
||||
// 4 = on screen message
|
||||
// 5 = on screen message + chat log
|
||||
char message[775];
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue