From 00331ce1bf177f63bfe81a9aa19c12cc4314aa97 Mon Sep 17 00:00:00 2001 From: "DESKTOP-C3M45P4\\dengdan" Date: Thu, 26 Mar 2026 18:32:46 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=86=B2=E6=A6=9C=E6=AC=A1?= =?UTF-8?q?=E6=95=B0=E5=A5=96=E5=8A=B1=E6=B4=BB=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 7 +++++++ protos/PlayerInfoProto.proto | 28 ++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 7baf5ec..d1f2aae 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1747,6 +1747,13 @@ enum MessageType{ PlayerMeridiansLevelUpResponse = 7000022; PlayerGodLevelUpRequest = 7000023; PlayerGodLevelUpResponse = 7000024; + + //冲榜次数奖励活动 + GetRankTimesStatusRequest = 7000031 + GetRankTimesStatusResponse = 7000032 + GetRankTimesRewardRequest = 7000033 + GetRankTimesRewardResponse = 7000034 + GetRankTimesRedResponse = 7000035 } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 45cf36e..83cbf56 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -1416,4 +1416,32 @@ message PlayerGodLevelUpRequest{ } //主角成神进阶结果 message PlayerGodLevelUpResponse{ +} + +//请求冲榜次数奖励信息 +message GetRankTimesStatusRequest{ + optional int32 rankId = 1;//排行榜id +} + +//返回冲榜次数奖励信息 +message GetRankTimesStatusResponse{ + optional int32 rankId = 1;//排行榜id + optional int32 times = 2;//完成次数 + repeated int32 list = 3;//奖励领取状态0未领取1已领取 +} + +//请求领取冲榜次数奖励 +message GetRankTimesRewardRequest{ + optional int32 rankId = 1;//排行榜id + optional int32 condition = 2;//条件 +} + +//返回冲榜次数奖励领取成功 +message GetRankTimesRewardResponse{ + +} + +//返回冲榜次数奖励有可领取的红点 +message GetRankTimesRedResponse{ + } \ No newline at end of file