mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-03 08:44:36 +03:00
20 lines
401 B
Protocol Buffer
20 lines
401 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MatchType.proto";
|
|
|
|
// CmdId: 4166
|
|
// Name: CCGNHDDBACB
|
|
message PlayerStartMatchRsp {
|
|
uint32 param = 15;
|
|
uint32 match_id = 14;
|
|
MatchType match_type = 9;
|
|
uint32 mechanicus_difficult_level = 10;
|
|
uint32 mp_play_id = 2;
|
|
uint32 dungeon_id = 3;
|
|
uint32 punish_end_time = 1;
|
|
int32 retcode = 13;
|
|
}
|
|
|