merged motd and exit patch by dongresource

This commit is contained in:
2020-08-19 12:22:54 -05:00
parent e5274045b0
commit f2059c9ce1
8 changed files with 213 additions and 7 deletions

View File

@@ -420,6 +420,10 @@ struct sP_CL2FE_REQ_PC_AVATAR_EMOTES_CHAT {
int32_t iEmoteCode;
};
struct sP_CL2FE_REQ_PC_EXIT {
int32_t iID;
};
// ========================================================[[ ShardServer2Client packets ]]========================================================
struct sP_FE2CL_REP_PC_ENTER_SUCC {
@@ -534,7 +538,18 @@ struct sP_FE2CL_REP_PC_AVATAR_EMOTES_CHAT {
int32_t iEmoteCode;
};
struct sP_FE2CL_REP_PC_EXIT_SUCC {
int32_t iID;
int32_t iExitCode;
};
#pragma pack(2)
struct sP_FE2CL_PC_MOTD_LOGIN {
int8_t iType;
uint16_t szSystemMsg[512];
};
#pragma pack(pop)
#endif
#endif