mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
25 lines
456 B
Protocol Buffer
25 lines
456 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 116
|
|
// Name: CIJAANKJLEF
|
|
message PlayerLogoutReq {
|
|
// Name: CEMGHMFDNGO
|
|
enum Reason {
|
|
DISCONNECT = 0;
|
|
CLIENT_REQ = 1;
|
|
TIMEOUT = 2;
|
|
ADMIN_REQ = 3;
|
|
SERVER_CLOSE = 4;
|
|
GM_CLEAR = 5;
|
|
PLAYER_TRANSFER = 6;
|
|
CLIENT_CHECKSUM_INVALID = 7;
|
|
REASON_MUIP_MOVE_SAVE_WAIT = 8;
|
|
}
|
|
|
|
Reason reason = 4;
|
|
}
|
|
|