mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 14:57:44 +00:00
Fixed lobby packet definitions
This commit is contained in:
parent
06b5113d78
commit
147e2f2cca
2 changed files with 13 additions and 3 deletions
|
@ -87,8 +87,10 @@ struct FFXIVIpcCharList : FFXIVIpcBasePacket<LobbyCharList>
|
||||||
uint32_t index;
|
uint32_t index;
|
||||||
uint32_t padding2;
|
uint32_t padding2;
|
||||||
uint16_t serverId;
|
uint16_t serverId;
|
||||||
|
uint16_t serverId1;
|
||||||
char nameChara[32];
|
char nameChara[32];
|
||||||
char nameServer[32];
|
char nameServer[32];
|
||||||
|
char nameServer1[32];
|
||||||
char charDetailJson[1030];
|
char charDetailJson[1030];
|
||||||
} charaDetails[2];
|
} charaDetails[2];
|
||||||
|
|
||||||
|
|
|
@ -110,12 +110,20 @@ namespace Core {
|
||||||
std::string PlayerMinimal::getInfoJson()
|
std::string PlayerMinimal::getInfoJson()
|
||||||
{
|
{
|
||||||
std::string charDetails = "{\"content\":[\"" + std::string( getName() ) + "\"," +
|
std::string charDetails = "{\"content\":[\"" + std::string( getName() ) + "\"," +
|
||||||
"[" + getClassString() + "]," +
|
//"[" + getClassString() + "]," +
|
||||||
"\"0\",\"0\",\"0\",\"" + std::to_string( getBirthMonth() ) + "\",\"" + std::to_string( getBirthDay() ) + "\",\"" + std::to_string( getGuardianDeity() ) + "\",\"" + std::to_string( m_class ) + "\",\"0\",\"" + std::to_string( getZoneId() ) + "\"," +
|
"[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],"
|
||||||
|
"\"0\",\"0\",\"0\",\"" +
|
||||||
|
std::to_string( getBirthMonth() ) +
|
||||||
|
"\",\"" + std::to_string( getBirthDay() ) +
|
||||||
|
"\",\"" + std::to_string( getGuardianDeity() ) +
|
||||||
|
"\",\"" + std::to_string( m_class ) +
|
||||||
|
"\",\"0\",\"" + std::to_string( getZoneId() ) +
|
||||||
|
"\",\"0\"," +
|
||||||
|
|
||||||
"[" + getLookString() + "]," +
|
"[" + getLookString() + "]," +
|
||||||
"\"0\",\"0\"," +
|
"\"0\",\"0\"," +
|
||||||
"[" + getModelString() + "]," +
|
"[" + getModelString() + "]," +
|
||||||
"\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"]," +
|
"\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"\",\"0\",\"0\"]," +
|
||||||
"\"classname\":\"ClientSelectData\",\"classid\":116}";
|
"\"classname\":\"ClientSelectData\",\"classid\":116}";
|
||||||
return charDetails;
|
return charDetails;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue