GC-Proto/proto/ActivityInfo.proto

28 lines
876 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
import "ActivityWatcherInfo.proto";
2023-05-23 13:12:42 +03:00
import "ActivityPushTipsData.proto";
2024-07-08 21:40:29 +03:00
2023-02-28 06:08:38 +03:00
import "MusicGameActivityDetailInfo.proto";
2024-07-05 00:44:58 +03:00
// 4.7.0
// Obf: ?
2024-07-09 01:10:10 +03:00
message ActivityInfo {
uint32 schedule_id = 2; // OK
uint32 activity_id = 11; // OK
uint32 activity_type = 5; // SUS
uint32 begin_time = 12; // OK
uint32 end_time = 6; // OK
bool is_finished = 9; // OK
repeated ActivityWatcherInfo watcher_info_list = 1; // OK
map<uint32, uint32> activity_coin_map = 578; // sus or 800
repeated uint32 meet_cond_list = 4; // sus 4,13.676,2020
uint32 cur_score = 738; // OK
uint32 first_day_start_time = 1414; // sus
map<uint32, uint32> wish_gift_num_map = 800; // sus
repeated ActivityPushTipsData activity_push_tips_data_list = 1223; // OK
2023-05-23 13:12:42 +03:00
oneof detail {
2024-07-09 01:10:10 +03:00
MusicGameActivityDetailInfo music_game_info = 780; // ?
2023-05-23 13:12:42 +03:00
}
2022-11-06 15:30:21 +03:00
}