GC-Proto/proto/PlayerEnterSceneNotify.proto

36 lines
710 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";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "Vector.proto";
2023-01-28 17:00:48 +03:00
import "EnterType.proto";
2022-11-06 15:30:21 +03:00
message PlayerEnterSceneNotify {
//enum JPDEBPGMBPE {
// option allow_alias= true;
// NONE = 0;
// PEPPOHPHJOJ = 205;
// DCDNILFDFLB = 0;
// NNBKOLMPOEA = 1;
//}
2022-12-05 15:02:30 +03:00
2023-01-28 17:00:48 +03:00
bool isFirstLoginEnterScene = 10;
uint32 enterSceneToken = 2;
uint32 prevSceneId = 4;
uint32 worldType = 1090;
bool isSkipUi = 317;
uint32 sceneId = 3;
Vector pos = 13;
2023-01-28 17:00:48 +03:00
uint32 worldLevel = 5;
string sceneTransaction = 647;
uint32 enterReason = 74;
EnterType type = 9;
uint32 dungeonId = 11;
repeated uint32 sceneTagIdList = 8;
Vector prevPos = 12;
2023-01-28 17:00:48 +03:00
uint64 sceneBeginTime = 15;
uint32 targetUid = 1;
2022-11-06 15:30:21 +03:00
}