24 lines
481 B
Protocol Buffer
24 lines
481 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "MatchType.proto";
|
|
|
|
// Name: LLNEHDDNECO
|
|
// CmdId: 4185
|
|
message PlayerMatchAgreedResultNotify {
|
|
// Name: GPKBCIHEKAE
|
|
enum Reason {
|
|
SUCC = 0;
|
|
TARGET_SCENE_CANNOT_ENTER = 1;
|
|
SELF_MP_UNAVAILABLE = 2;
|
|
OTHER_DATA_VERSION_NOT_LATEST = 3;
|
|
DATA_VERSION_NOT_LATEST = 4;
|
|
}
|
|
|
|
Reason reason = 13;
|
|
uint32 target_uid = 15;
|
|
MatchType match_type = 10;
|
|
}
|
|
|