mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
20 lines
400 B
Protocol Buffer
20 lines
400 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MatchType.proto";
|
|
|
|
// Name: MBPJKGIMLAO
|
|
// CmdId: 4193
|
|
message PlayerStartMatchRsp {
|
|
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;
|
|
}
|
|
|