GC-Proto/proto/PlayerStartMatchReq.proto

18 lines
366 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-04-11 06:14:48 +03:00
// CmdId: 4159
// Name: NPDMPGMDBAL
2023-02-18 04:48:44 +03:00
message PlayerStartMatchReq {
2023-04-11 06:14:48 +03:00
MatchType match_type = 15;
2023-02-28 04:12:44 +03:00
uint32 mp_play_id = 13;
2023-04-11 06:14:48 +03:00
uint32 dungeon_id = 12;
uint32 mechanicus_difficult_level = 6;
uint32 match_id = 2;
repeated uint32 match_param_list = 11;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00