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 } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 4696e9a..2c2adb2 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -535,6 +535,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 @@ -967,6 +973,8 @@ enum MessageType{ + + //30000以后 新增协议号使用协议名定义 协议号自动映射 //30000-3300 公会 @@ -1038,6 +1046,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; + }