This commit is contained in:
by 2024-11-01 13:59:28 +08:00
parent acb7aec6a7
commit 9fb4368e6b
4 changed files with 2083 additions and 1855 deletions

File diff suppressed because it is too large Load Diff

View File

@ -353,10 +353,7 @@ message PlayerData {
int32 UseSkinId = 50; // id int32 UseSkinId = 50; // id
string ChannelID = 51; // ID string ChannelID = 51; // ID
int32 GuideStep = 52; // ; 0-1 int32 GuideStep = 52; // ; 0-1
// map<int32,int32> GuideData = 53;// key: value
// 0
// 0-1,
repeated int32 Guide = 53;
} }
// //
@ -1347,20 +1344,28 @@ message WindowsInfo{
//PACKET_CSUpdateAttribute //PACKET_CSUpdateAttribute
message CSUpdateAttribute{ message CSUpdateAttribute{
int32 Tp = 1; // 1. 2. 3.() 4. int32 Tp = 1; // 1. 2. 3.()
repeated int64 Param = 2; repeated int64 Param = 2;
int32 GuideId = 3; //ID 1- 2-
} }
//PACKET_SCUpdateAttribute //PACKET_SCUpdateAttribute
message SCUpdateAttribute{ message SCUpdateAttribute{
OpResultCode OpRetCode = 1; // OpResultCode OpRetCode = 1; //
int32 Tp = 2; int32 Tp = 2;
repeated int64 Param = 3; repeated int64 Param = 3;
int32 GuideId =4;//ID 1- 2-
} }
//PACKET_SCGuideConfig //PACKET_SCGuideConfig
message SCGuideConfig{ message SCGuideConfig{
repeated GuideInfo Info = 1;
}
message GuideInfo {
int32 On = 2; // 1 2 int32 On = 2; // 1 2
int32 Skip = 3; // 1 2 int32 Skip = 3; // 1 2
int32 GuideId = 4; // 1- 2-
repeated ItemInfo Awards = 5; //
int32 MaxStep = 6; //
} }
message Config{ message Config{

File diff suppressed because it is too large Load Diff

View File

@ -901,8 +901,15 @@ message AnnouncerLogInfo{
// etcd /game/guide_config // etcd /game/guide_config
message GuideConfig { message GuideConfig {
string Platform = 1; // string Platform = 1; //
int32 On = 2; // 1 2 repeated GuideInfo Info = 2;
int32 Skip = 3; // 1 2 }
message GuideInfo {
int32 On = 1; // 1 2
int32 Skip = 2; // 1 2
int32 GuideId = 3; // 1- 2-
repeated ItemInfo Awards = 4; //
int32 MaxStep = 5; //
} }
// //