mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
18 lines
365 B
Protocol Buffer
18 lines
365 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MatchType.proto";
|
|
|
|
// Name: MIHJMBFBLBI
|
|
// CmdId: 4198
|
|
message PlayerStartMatchReq {
|
|
repeated uint32 match_param_list = 15;
|
|
uint32 mechanicus_difficult_level = 12;
|
|
uint32 match_id = 8;
|
|
MatchType match_type = 5;
|
|
uint32 mp_play_id = 13;
|
|
uint32 dungeon_id = 4;
|
|
}
|
|
|