GC-Proto/proto/PlayerPreEnterMpNotify.proto
2023-02-28 09:12:44 +08:00

21 lines
324 B
Protocol Buffer

syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// Name: NMKDCJBDNHL
// CmdId: 1832
message PlayerPreEnterMpNotify {
// Name: NLPMIDEGMNA
enum State {
INVALID = 0;
START = 1;
TIMEOUT = 2;
}
string nickname = 10;
State state = 14;
uint32 uid = 12;
}