update
This commit is contained in:
parent
21e6e16c8d
commit
acb7aec6a7
File diff suppressed because it is too large
Load Diff
|
@ -238,6 +238,8 @@ enum PlayerPacketID {
|
||||||
PACKET_SCDollConfig = 2847; //返回娃娃机配置信息
|
PACKET_SCDollConfig = 2847; //返回娃娃机配置信息
|
||||||
PACKET_CSPopUpWindowConfig = 2848; //获取弹窗配置
|
PACKET_CSPopUpWindowConfig = 2848; //获取弹窗配置
|
||||||
PACKET_SCPopUpWindowConfig = 2849; //返回弹窗配置
|
PACKET_SCPopUpWindowConfig = 2849; //返回弹窗配置
|
||||||
|
PACKET_CSUpdateGuide = 2850; //更新引导
|
||||||
|
PACKET_SCUpdateGuide = 2851; //更新引导
|
||||||
}
|
}
|
||||||
|
|
||||||
// 账变记录
|
// 账变记录
|
||||||
|
@ -353,7 +355,7 @@ message PlayerData {
|
||||||
int32 GuideStep = 52; // 引导步骤; 最小为0,-1表示跳过引导了
|
int32 GuideStep = 52; // 引导步骤; 最小为0,-1表示跳过引导了
|
||||||
// 引导步骤完成情况
|
// 引导步骤完成情况
|
||||||
// 下标:0表示竞技馆引导
|
// 下标:0表示竞技馆引导
|
||||||
// 值:最小为0,-1表示跳过引导了
|
// 值:最小为0,-1表示引导完成, 其余表示已引导步骤
|
||||||
repeated int32 Guide = 53;
|
repeated int32 Guide = 53;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1346,9 +1348,7 @@ message WindowsInfo{
|
||||||
//PACKET_CSUpdateAttribute
|
//PACKET_CSUpdateAttribute
|
||||||
message CSUpdateAttribute{
|
message CSUpdateAttribute{
|
||||||
int32 Tp = 1; // 1.更新引导阶段 2.跳过引导 3.更新引导状态(测试用) 4.标记竞技馆引导页面已经显示过
|
int32 Tp = 1; // 1.更新引导阶段 2.跳过引导 3.更新引导状态(测试用) 4.标记竞技馆引导页面已经显示过
|
||||||
repeated int64 Param = 2; // 引导步骤; 以后不用了
|
repeated int64 Param = 2;
|
||||||
int32 GuideType = 3; //引导类型 0 新手引导 1 竞技馆引导
|
|
||||||
int32 Step = 4; //引导步骤
|
|
||||||
}
|
}
|
||||||
//PACKET_SCUpdateAttribute
|
//PACKET_SCUpdateAttribute
|
||||||
message SCUpdateAttribute{
|
message SCUpdateAttribute{
|
||||||
|
@ -1432,3 +1432,19 @@ message PopUpWindowInfo{
|
||||||
int32 OpenStatus = 4;//1-开启 0-关闭
|
int32 OpenStatus = 4;//1-开启 0-关闭
|
||||||
int32 Weight = 5;//弹窗权重
|
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;
|
||||||
|
}
|
Loading…
Reference in New Issue