17 lines
320 B
Protocol Buffer
17 lines
320 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PropValue.proto";
|
|
|
|
// CmdId: 172
|
|
// Name: GFFABHLMEIA
|
|
message PlayerDataNotify {
|
|
bool is_first_login_today = 7;
|
|
uint32 region_id = 8;
|
|
uint64 server_time = 5;
|
|
map<uint32, PropValue> prop_map = 4;
|
|
string nick_name = 3;
|
|
}
|
|
|