diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 4d1f155..3981b9b 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -230,6 +230,7 @@ import "CommonProto.proto"; message HeroReturnRequest{ optional string heroId = 1; + optional int32 type = 2; // 0:神将回归元 1:神将回退 } message HeroReturnResponse{ diff --git a/protos/MapInfoProto.proto b/protos/MapInfoProto.proto index e33c927..8a565fc 100644 --- a/protos/MapInfoProto.proto +++ b/protos/MapInfoProto.proto @@ -358,6 +358,7 @@ import "CommonProto.proto"; } message JourneyGetInfoResponse{ repeated JourneyInfo infos = 1;//逍遥游数据 + optional int32 finishNum = 2;//逍遥游累计通关次数 } message JourneyGetOneInfoRequest{ optional int32 mapId = 1; diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index bc98720..fc51846 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -85,6 +85,7 @@ enum MessageType{ WELFARE_RED_PACKET_SEND_REQUEST = 10057;//福利红包发送 WELFARE_RED_PACKET_SEND_RESPONSE = 10058; WELFARE_RED_PACKET_REQUEST = 10059; + SPECIAL_ACTIVITY_UPDATE_INDICATION = 10060 ;// 特殊活动更新推送 // B 10100 BUY_STORE_ITEM_REQUEST = 10100; // 购买商店物品 diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index ebae37f..85729f0 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -489,6 +489,12 @@ import "CommonProto.proto"; repeated int32 closeActivityId = 2; } + //特殊活动开启关闭 + message SpecailActivityUpateIndication{ + repeated int32 closeActivityId = 1; + } + + message GetForceRankInfoRequest{ optional int32 page = 1; //页数 optional int32 activiteId = 2; //活动ID