GC-Proto/proto/OtherPlayerEnterHomeNotify....

16 lines
253 B
Protocol Buffer
Raw Permalink Normal View History

2023-09-02 00:26:44 +03:00
syntax = "proto3";
2024-08-28 12:09:22 +03:00
2023-09-02 00:26:44 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-08-28 12:09:22 +03:00
// Version: 5.0
// CmdId: 22683
2023-09-02 00:26:44 +03:00
message OtherPlayerEnterHomeNotify {
2024-08-28 12:09:22 +03:00
enum Reason {
2024-06-02 06:52:03 +03:00
INVALID = 0;
ENTER = 1;
LEAVE = 2;
}
2024-08-28 12:09:22 +03:00
string nickname = 3;
Reason reason = 7;
2023-09-02 00:26:44 +03:00
}