mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
28 lines
601 B
Protocol Buffer
28 lines
601 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: ILBJDEDMJPG
|
|
// CmdId: 4568
|
|
message PlayerApplyEnterHomeResultNotify {
|
|
// Name: IPMMLLFGLDB
|
|
enum Reason {
|
|
PLAYER_JUDGE = 0;
|
|
PLAYER_ENTER_OPTION_REFUSE = 1;
|
|
PLAYER_ENTER_OPTION_DIRECT = 2;
|
|
SYSTEM_JUDGE = 3;
|
|
HOST_IN_MATCH = 4;
|
|
PS_PLAYER_NOT_ACCEPT_OTHERS = 5;
|
|
OPEN_STATE_NOT_OPEN = 6;
|
|
HOST_IN_EDIT_MODE = 7;
|
|
PRIOR_CHECK = 8;
|
|
}
|
|
|
|
Reason reason = 11;
|
|
uint32 target_uid = 3;
|
|
bool is_agreed = 8;
|
|
string target_nickname = 1;
|
|
}
|
|
|