GC-Proto/proto/PlayerEnterSceneNotify.proto

29 lines
680 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 "EnterType.proto";
2023-02-28 06:08:38 +03:00
import "Vector.proto";
2023-04-11 11:18:47 +03:00
// CmdId: 290
// Name: PLEIKDOOEJB
2022-11-06 15:30:21 +03:00
message PlayerEnterSceneNotify {
2023-04-11 11:18:47 +03:00
uint32 scene_id = 1;
uint32 enter_reason = 482;
repeated uint32 scene_tag_id_list = 12;
string scene_transaction = 1931;
Vector prev_pos = 14;
uint32 target_uid = 4;
uint32 world_type = 952;
bool is_skip_ui = 1748;
EnterType type = 9;
bool is_first_login_enter_scene = 6;
uint32 world_level = 11;
uint32 dungeon_id = 13;
Vector pos = 10;
uint32 prev_scene_id = 3;
uint32 enter_scene_token = 8;
uint64 scene_begin_time = 7;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00