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 + }