1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 22:57:45 +00:00

Tell works again and add research I found for u3b

This commit is contained in:
Biscuit Boy 2018-07-02 23:16:55 +10:00
parent 27cfa2f27f
commit c01cf130a4
2 changed files with 3 additions and 3 deletions

View file

@ -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];
};

View file

@ -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 >();