GC-Proto/proto/PlayerEnterSceneNotify.proto

29 lines
754 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";
2024-05-22 14:51:09 +03:00
2023-02-28 06:08:38 +03:00
import "Vector.proto";
2023-08-17 14:18:58 +03:00
import "EnterType.proto";
2024-06-08 09:18:08 +03:00
import "MapLayerInfo.proto";
2024-05-22 14:51:09 +03:00
2024-06-23 20:46:20 +03:00
// 4.7.0
2022-11-06 15:30:21 +03:00
message PlayerEnterSceneNotify {
2024-06-23 20:46:20 +03:00
uint32 target_uid = 7;
uint64 scene_begin_time = 6;
uint32 scene_id = 13;
uint32 enter_scene_token = 15;
string scene_transaction = 607;
repeated uint32 scene_tag_id_list = 9;
Vector pos = 10;
EnterType type = 1;
uint32 create_player_uid = 1749;
MapLayerInfo map_layer_info = 1413;
bool is_skip_ui = 237;
bool is_first_login_enter_scene = 289;
Vector prev_pos = 1414;
uint32 prev_scene_id = 81;
uint32 world_type = 1327;
uint32 enter_reason = 670;
uint32 LAJGLCIFKCP = 1820;
uint32 world_level = 5;
uint32 dungeon_id = 11;
2024-05-22 14:51:09 +03:00
}