mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 14:57:44 +00:00
Tell works again and add research I found for u3b
This commit is contained in:
parent
27cfa2f27f
commit
c01cf130a4
2 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ struct FFXIVIpcTell : FFXIVIpcBasePacket<Tell>
|
|||
uint16_t u2b;
|
||||
uint8_t preName;
|
||||
uint8_t u3a;
|
||||
uint8_t u3b;
|
||||
uint8_t u3b; //Setting this to 1 seems to mark the tell as a GM tell (More research needed)
|
||||
char receipientName[32];
|
||||
char msg[1031];
|
||||
};
|
||||
|
|
|
@ -565,8 +565,8 @@ void Core::Network::GameConnection::logoutHandler( const Packets::GamePacket& in
|
|||
void Core::Network::GameConnection::tellHandler( const Packets::GamePacket& inPacket,
|
||||
Entity::Player& player )
|
||||
{
|
||||
std::string targetPcName = inPacket.getStringAt( 0x21 );
|
||||
std::string msg = inPacket.getStringAt( 0x41 );
|
||||
std::string targetPcName = inPacket.getStringAt( 0x24 );
|
||||
std::string msg = inPacket.getStringAt( 0x44 );
|
||||
|
||||
auto pZoneServer = g_fw.get< ServerZone >();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue