GC-Proto/proto/PlayerStartMatchRsp.proto

20 lines
400 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MatchType.proto";
2023-02-28 04:12:44 +03:00
// Name: MBPJKGIMLAO
// CmdId: 4193
2023-02-18 04:48:44 +03:00
message PlayerStartMatchRsp {
2023-02-28 04:12:44 +03:00
MatchType match_type = 2;
uint32 mechanicus_difficult_level = 14;
uint32 dungeon_id = 12;
int32 retcode = 10;
uint32 punish_end_time = 6;
uint32 mp_play_id = 3;
uint32 match_id = 4;
uint32 param = 5;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00