15 lines
382 B
Protocol Buffer
15 lines
382 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "MatchType.proto";
|
|
// 4.7.0
|
|
// CmdId: 28139
|
|
// Obf: JGKMFLFKLBK
|
|
message PlayerStartMatchReq {
|
|
uint32 mp_play_id = 13; // OK
|
|
uint32 mechanicus_difficult_level = 14;
|
|
MatchType match_type = 8; // OK
|
|
uint32 match_id = 9; // OK
|
|
repeated uint32 match_param_list = 5; // OK
|
|
uint32 dungeon_id = 11; // OK
|
|
}
|