GC-Proto/proto/HomeGroupPlayerInfo.proto

14 lines
328 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "ProfilePicture.proto";
2024-08-17 09:14:42 +03:00
// 4.7.0
// Obf: PCAPDLBGOMG?PBFPMADNALI
2022-11-06 15:51:40 +03:00
message HomeGroupPlayerInfo {
2024-08-17 09:14:42 +03:00
string nickname = 14;
2024-08-21 08:31:37 +03:00
uint32 player_level = 5;
2024-08-17 09:14:42 +03:00
ProfilePicture profile_picture = 1;
uint32 uid = 15; // ok
string psn_id = 11;
string online_id = 7;
2022-11-06 15:30:21 +03:00
}