幸运探宝
parent
58490572dd
commit
244ad16a51
|
@ -659,4 +659,9 @@ option optimize_for = SPEED;
|
|||
optional int32 score = 8;
|
||||
}
|
||||
|
||||
message LuckWheelRewardPosInfo{
|
||||
optional int32 pos = 1;
|
||||
optional int32 luckId = 2;//配置表id
|
||||
}
|
||||
|
||||
|
|
@ -386,7 +386,9 @@ enum MessageType{
|
|||
GET_QUESTION_REQUEST = 1666;//问卷
|
||||
GET_QUESTION_RESPONSE = 1667;
|
||||
|
||||
|
||||
GET_LUCKWHEEL_RANDREWARD_REQUEST = 1668;//幸运探宝
|
||||
GET_LUCKWHEEL_RANDREWARD_RESPONSE = 1669;//幸运探宝
|
||||
|
||||
// H 10700
|
||||
HERO_RAND_REQQUEST = 10701;
|
||||
HERO_RAND_RESPONSE = 10702;
|
||||
|
@ -532,6 +534,9 @@ enum MessageType{
|
|||
|
||||
ROOM_LOGIN_REQEUST = 11740; // 登录房间
|
||||
ROOM_LOGIN_RESPONSE = 11750;
|
||||
|
||||
REFRESH_LUCKWHEEL_REQUEST = 11751;//幸运探宝
|
||||
REFRESH_LUCKWHEEL_RESPONSE = 11752;
|
||||
|
||||
// S 11800
|
||||
SUCCESS_RESPONSE = 11800; // 通用成功回复
|
||||
|
|
|
@ -356,6 +356,8 @@ import "CommonProto.proto";
|
|||
optional fiveResetTowerInfo fiveResetTowerInfo = 5;// 重置试炼信息
|
||||
optional SignInInfo SignInInfo = 6;//签到
|
||||
optional PlayerBindPhone playerBindPhone = 7;//玩家手机绑定信息
|
||||
repeated LuckWheelRewardPosInfo posInfos = 8;//转盘信息
|
||||
repeated LuckWheelRewardPosInfo posInfosAdvance = 9;//高级转盘信息
|
||||
}
|
||||
|
||||
|
||||
|
@ -551,4 +553,27 @@ import "CommonProto.proto";
|
|||
optional int32 goodsId = 1; // 索购买的商品id
|
||||
optional Drop drop = 2; //
|
||||
}
|
||||
|
||||
|
||||
message RefreshLuckWheelRequest{
|
||||
optional int32 activityId = 1;
|
||||
optional bool isFree = 2;
|
||||
}
|
||||
|
||||
message RefreshLuckWheelResponse{
|
||||
repeated LuckWheelRewardPosInfo posInfos = 1;
|
||||
|
||||
}
|
||||
|
||||
message GetLuckWheelRandRewardRequest{
|
||||
optional int32 activityId = 1;
|
||||
optional bool repeated = 2;
|
||||
}
|
||||
message GetLuckWheelRandRewardResponse{
|
||||
optional int32 activityId = 1;
|
||||
optional int32 pos = 2;
|
||||
optional Drop drop = 3;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue