2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
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-02-02 04:57:20 +03:00
|
|
|
|
2023-02-28 06:08:38 +03:00
|
|
|
// Name: IDHDDCPMNCK
|
|
|
|
// CmdId: 267
|
2022-11-06 15:30:21 +03:00
|
|
|
message PlayerEnterSceneNotify {
|
2023-02-28 06:08:38 +03:00
|
|
|
uint32 target_uid = 6;
|
|
|
|
Vector prev_pos = 15;
|
|
|
|
uint32 world_type = 95;
|
|
|
|
uint32 enter_reason = 1508;
|
|
|
|
EnterType type = 7;
|
|
|
|
uint32 enter_scene_token = 11;
|
|
|
|
bool is_first_login_enter_scene = 292;
|
|
|
|
uint32 world_level = 12;
|
|
|
|
bool is_skip_ui = 5;
|
|
|
|
string scene_transaction = 1465;
|
|
|
|
Vector pos = 4;
|
|
|
|
uint32 prev_scene_id = 1;
|
|
|
|
repeated uint32 scene_tag_id_list = 14;
|
|
|
|
uint32 scene_id = 10;
|
|
|
|
uint32 dungeon_id = 8;
|
|
|
|
uint64 scene_begin_time = 9;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|
2023-02-28 06:08:38 +03:00
|
|
|
|