GC-Proto/proto/GetScenePointRsp.proto

21 lines
724 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2024-04-21 23:51:36 +03:00
2024-05-22 14:51:09 +03:00
// 4.6.0
// CmdId: 831
2022-11-06 15:30:21 +03:00
message GetScenePointRsp {
2024-05-22 14:51:09 +03:00
repeated uint32 unlock_area_list = 15; //random
repeated uint32 locked_point_list = 11; //random
repeated uint32 not_interact_dungeon_entry_list = 9; //random
repeated uint32 hide_point_list = 7; //random
repeated uint32 unhide_point_list = 999; //random
repeated uint32 to_be_explore_dungeon_entry_list = 8; //random
repeated uint32 unlocked_point_list = 12; //random
repeated uint32 not_explored_dungeon_entry_list = 997; //random
repeated uint32 group_unlimit_point_list = 998; //random
bool is_relogin = 1;
uint32 belong_uid = 3;
int32 retcode = 14;
uint32 scene_id = 2;
2022-11-06 15:30:21 +03:00
}