mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
b9e9ec9865
> info scene id with version? Add SceneAvatarStaminaStepReq > not sure bust just keep add, because this is related to reduced stamina in some parts Add LevelupCityReq > This is useful for leveling up statues Add ClientLockGameTimeNotify > This might be useful if we log in and get stuck because we can detect if it's being locked Add ClientLoadingCostumeVerificationNotify > Not sure about this but the response is always there, maybe it's anti-cheat related? Add ClientAIStateNotify > Maybe related to ai monsters? and remove some unique or useless photos from the event. may add later
16 lines
322 B
Protocol Buffer
16 lines
322 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PathStatusType.proto";
|
|
import "Vector.proto";
|
|
|
|
message ToTheMoonQueryPathRsp {
|
|
int32 queryId = 11;
|
|
PathStatusType queryStatus = 15;
|
|
repeated int64 index = 10;
|
|
int32 retcode = 1;
|
|
repeated Vector corners = 3;
|
|
repeated int32 level = 13;
|
|
}
|