17 lines
322 B
Protocol Buffer
17 lines
322 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PropValue.proto";
|
|
|
|
// Name: PEEAAFJMOOH
|
|
// CmdId: 182
|
|
message PlayerDataNotify {
|
|
uint64 server_time = 9;
|
|
string nick_name = 6;
|
|
map<uint32, PropValue> prop_map = 8;
|
|
bool is_first_login_today = 11;
|
|
uint32 region_id = 15;
|
|
}
|
|
|