From 5fdaade433f299f5f11a191181aab147ac27b4a2 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Tue, 15 Dec 2020 16:34:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=81=E7=BB=9D=E9=98=B5=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 2 ++ protos/gtwprotos/WorldProto.proto | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index d51c462..f8b3e13 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1136,6 +1136,8 @@ enum MessageType{ AddDeathPathRankRequest = 900012; GetDeathPathFirstRequest = 900013; + + GetDeathPathRewardRequest = 900014; } diff --git a/protos/gtwprotos/WorldProto.proto b/protos/gtwprotos/WorldProto.proto index 6fa7115..5f7ae8e 100644 --- a/protos/gtwprotos/WorldProto.proto +++ b/protos/gtwprotos/WorldProto.proto @@ -125,6 +125,25 @@ import "CommonProto.proto"; message GetDeathPathFirstResponse{ repeated EvertDeathPath deathPathInfo = 1; } + message GetDeathPathRewardRequest{ + optional int32 groupId =1; + optional int32 guildId = 2; + } + message GetDeathPathRewardResponse{ + optional int32 rankTotal = 1; + } + + message GuildRank{ + optional int32 guildId = 1; + optional int32 rank = 2; + } + //服务器整个结算 + message DeathPathWorldRewardRequest{ + optional int32 groupId =1; + } + message DeathPathWorldRewardResponse{ + repeated GuildRank ranks = 1;//所有需要发奖的公会id + }