GC-Proto/proto/PlayerEnterSceneNotify.proto

23 lines
587 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-05-22 14:51:09 +03:00
// 4.6.0
// CmdId: 21317
2022-11-06 15:30:21 +03:00
message PlayerEnterSceneNotify {
2024-05-22 14:51:09 +03:00
//MapLayerInfo map_layer_info = 317;
EnterType type = 2;//sus
repeated uint32 scene_tag_id_list = 9;
uint32 world_level = 3;
uint32 target_uid = 14;//14 or 189
uint32 create_player_uid = 189;//14 or 189
Vector pos = 13;
uint32 scene_id = 7;
string scene_transaction = 120;
uint32 enter_scene_token = 15;
uint64 scene_begin_time = 6;
bool is_skip_ui = 376;//sus
uint32 dungeon_id = 1999;//wrong
}