GC-Proto/proto/GetOnlinePlayerInfoReq.proto

14 lines
258 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2024-08-21 00:45:19 +03:00
// 4.7.0
// CmdId: 4777
2024-08-21 04:48:06 +03:00
// Obf: ???
2022-11-06 15:30:21 +03:00
message GetOnlinePlayerInfoReq {
2024-08-21 00:45:19 +03:00
bool is_online_id = 9;
oneof player_id {
2024-08-21 00:45:19 +03:00
uint32 target_uid = 10;
string online_id = 8;
string psn_id = 3;
}
2022-11-06 15:30:21 +03:00
}