GC-Proto/proto/ChapterStateNotify.proto

27 lines
606 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 "ChapterState.proto";
2022-11-06 15:30:21 +03:00
2023-02-28 06:08:38 +03:00
// Name: EGGHDNJDFIM
// CmdId: 427
2022-11-06 15:30:21 +03:00
message ChapterStateNotify {
2023-03-11 18:42:44 +03:00
// Name: POAIPEHKEHE > NeedPlayerLevel
message NeedPlayerLevel {
2023-03-07 05:02:26 +03:00
bool is_limit = 12;
uint32 configNeedPlayerLevel = 11;
2023-02-28 06:08:38 +03:00
}
2022-11-06 15:30:21 +03:00
2023-03-11 18:42:44 +03:00
// Name: OKNHDJOIJFI > NeedBeginTime
message NeedBeginTime {
2023-03-07 05:02:26 +03:00
bool is_limit = 10;
uint32 configNeedBeginTime = 3;
2023-02-28 06:08:38 +03:00
}
2022-12-05 15:02:30 +03:00
NeedBeginTime needBeginTime = 14;
2023-02-28 06:08:38 +03:00
uint32 chapter_id = 7;
2023-03-07 05:02:26 +03:00
ChapterState chapter_state = 10;
NeedPlayerLevel needPlayerLevel = 8;
2022-11-06 15:30:21 +03:00
}