14 lines
294 B
Protocol Buffer
14 lines
294 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PropValue.proto";
|
|
|
|
// 4.7.0
|
|
// CmdId: 21169
|
|
message PlayerDataNotify {
|
|
uint32 region_id = 1;
|
|
bool is_first_login_today = 2;
|
|
string nick_name = 5;
|
|
map<uint32, PropValue> prop_map = 10;
|
|
uint64 server_time = 12;
|
|
} |