Update 3.3 (wow, a lot changed)

This commit is contained in:
Akbar Yahya
2022-12-05 19:41:24 +08:00
parent 238dd43a77
commit cf717aa6a0
2949 changed files with 32506 additions and 43050 deletions

View File

@@ -22,22 +22,27 @@ import "HideAndSeekSettleInfo.proto";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 5317
// EnetChannelId: 0
// EnetIsReliable: true
message HideAndSeekSettleNotify {
uint32 cost_time = 2;
repeated HideAndSeekSettleInfo settle_info_list = 8;
repeated uint32 winner_list = 15;
SettleReason reason = 4;
uint32 play_index = 13;
bool is_record_score = 6;
repeated ExhibitionDisplayInfo score_list = 9;
uint32 stage_type = 14;
// enum CmdId {
// option allow_alias = true;
// NONE = 0;
// CMD_ID = 5391;
// ENET_CHANNEL_ID = 0;
// ENET_IS_RELIABLE = 1;
// }
enum SettleReason {
SETTLE_REASON_TIME_OUT = 0;
SETTLE_REASON_PLAY_END = 1;
SETTLE_REASON_PLAYER_QUIT = 2;
}
uint32 play_index = 6;
repeated ExhibitionDisplayInfo score_list = 11;
SettleReason reason = 1;
repeated uint32 winner_list = 2;
uint32 cost_time = 15;
uint32 stage_type = 7;
bool is_record_score = 5;
repeated HideAndSeekSettleInfo settle_info_list = 4;
}