GC-Proto/proto/PlayerStartMatchReq.proto

18 lines
365 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MatchType.proto";
2023-02-28 04:12:44 +03:00
// Name: MIHJMBFBLBI
// CmdId: 4198
2023-02-18 04:48:44 +03:00
message PlayerStartMatchReq {
2023-02-28 04:12:44 +03:00
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;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00