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