GC-Proto/proto/PlayerStartMatchRsp.proto

20 lines
401 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: 4166
// Name: CCGNHDDBACB
2023-02-18 04:48:44 +03:00
message PlayerStartMatchRsp {
2023-04-11 06:14:48 +03:00
uint32 param = 15;
uint32 match_id = 14;
MatchType match_type = 9;
uint32 mechanicus_difficult_level = 10;
uint32 mp_play_id = 2;
uint32 dungeon_id = 3;
uint32 punish_end_time = 1;
int32 retcode = 13;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00