This commit is contained in:
sk 2024-11-01 02:47:04 +08:00
parent 21e6e16c8d
commit acb7aec6a7
2 changed files with 713 additions and 530 deletions

File diff suppressed because it is too large Load Diff

View File

@ -238,6 +238,8 @@ enum PlayerPacketID {
PACKET_SCDollConfig = 2847; //
PACKET_CSPopUpWindowConfig = 2848; //
PACKET_SCPopUpWindowConfig = 2849; //
PACKET_CSUpdateGuide = 2850; //
PACKET_SCUpdateGuide = 2851; //
}
//
@ -353,7 +355,7 @@ message PlayerData {
int32 GuideStep = 52; // ; 0-1
//
// 0
// 0-1
// 0-1,
repeated int32 Guide = 53;
}
@ -1346,9 +1348,7 @@ message WindowsInfo{
//PACKET_CSUpdateAttribute
message CSUpdateAttribute{
int32 Tp = 1; // 1. 2. 3.() 4.
repeated int64 Param = 2; // ;
int32 GuideType = 3; // 0 1
int32 Step = 4; //
repeated int64 Param = 2;
}
//PACKET_SCUpdateAttribute
message SCUpdateAttribute{
@ -1432,3 +1432,19 @@ message PopUpWindowInfo{
int32 OpenStatus = 4;//1- 0-
int32 Weight = 5;//
}
//
// PACKET_CSUpdateGuide
message CSUpdateGuide {
int32 GuideId = 1; // 0. 1....
int32 Step = 2; //
int32 Op = 3; // 1. 2. 3.
}
// PACKET_SCUpdateGuide
message SCUpdateGuide {
OpResultCode OpRetCode = 1; //
int32 GuideId = 2; //
int32 Step = 3; //
int32 Op = 4;
}