From aff7873a040ec8ef49b2c251f63ac679ec0fa5a0 Mon Sep 17 00:00:00 2001 From: lvxinran Date: Fri, 28 Aug 2020 14:47:18 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MapInfoProto.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protos/MapInfoProto.proto b/protos/MapInfoProto.proto index 17aeebe..4d4b553 100644 --- a/protos/MapInfoProto.proto +++ b/protos/MapInfoProto.proto @@ -74,6 +74,7 @@ import "CommonProto.proto"; optional int32 addHpCount = 18;//回春散已使用次数 + optional int32 mapId = 19;//地图id } From ae58e819a2e57dde9c80ff8c1675f9bd6de42385 Mon Sep 17 00:00:00 2001 From: zhangshanxue Date: Thu, 20 Aug 2020 19:38:00 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E8=AF=9B=E4=BB=99=E5=8D=8F=E8=AE=AE?= =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 10 ++++++++++ protos/PlayerInfoProto.proto | 7 +++++++ 2 files changed, 17 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index d6045dc..c3c46cf 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -517,6 +517,12 @@ enum MessageType{ JEWEL_BUILD_REQUEST = 10914;//宝器强化或精炼 JEWEL_BUILD_RESPONSE = 10915; + + + JADE_DYNASTY_REFRESH_INDICATION = 10916;//破阵诛仙任务刷新 + + JADE_DYNASTY_REFRESH_TIME_REQUEST = 10917;//破阵诛仙日任务和周任务刷新时间获取 + JADE_DYNASTY_REFRESH_TIME_RESPONSE = 10918; // K 11000 // L 11100 @@ -949,6 +955,8 @@ enum MessageType{ + + //30000以后 新增协议号使用协议名定义 协议号自动映射 //30000-3300 公会 @@ -1020,6 +1028,8 @@ enum MessageType{ DoHeroChangeRequest = 303605; DoHeroChangeResponse = 303606; + + } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 102367e..a533c4e 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -749,7 +749,14 @@ import "CommonProto.proto"; repeated string item = 3;//精炼材料 } + message JadeDynastyRefreshIndication{ + repeated RefreshTask tasks = 1;//刷新任务信息 + } + message JadeDynastyRefreshTimeResponse{ + optional int32 dayTime = 1; + optional int32 weekTime = 2; + }