2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-04-22 15:15:37 +03:00
|
|
|
|
2024-07-03 16:09:24 +03:00
|
|
|
// 4.7.0
|
|
|
|
// KNODJMAAMPD
|
2022-11-06 15:30:21 +03:00
|
|
|
message AnnounceData {
|
2024-07-03 16:09:24 +03:00
|
|
|
string center_system_text = 14; // we need this (2x13 wrong, 14x13 ok)
|
|
|
|
string count_down_text = 2;
|
2024-04-22 15:15:37 +03:00
|
|
|
string dungeon_confirm_text = 15;
|
2024-07-03 16:09:24 +03:00
|
|
|
uint32 end_time = 3;
|
|
|
|
uint32 count_down_frequency = 8; // ?
|
|
|
|
uint32 config_id = 7;
|
|
|
|
uint32 begin_time = 12;
|
|
|
|
bool is_center_system_last_5_every_minutes = 5;
|
|
|
|
uint32 center_system_frequency = 13; // ?
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|