From 1199066ea0b53ff489167b1bf71fc3af46d9a7bf Mon Sep 17 00:00:00 2001 From: lvxinran Date: Fri, 19 Jul 2019 17:39:58 +0800 Subject: [PATCH] =?UTF-8?q?5=E7=82=B9=E9=87=8D=E7=BD=AE=E8=AF=95=E7=82=BC?= =?UTF-8?q?=E5=89=AF=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/CommonProto.proto | 14 ++++++++++++++ protos/MessageTypeProto.proto | 3 ++- protos/PlayerInfoProto.proto | 1 + 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 7398177..7495f34 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -463,3 +463,17 @@ option optimize_for = SPEED; optional SceneInfo sceneInfo =1 ;// 场景信息 } + message blessReward{ + //云梦活动 + optional int32 locationId = 1; + optional int32 state = 2; + optional int32 num =3; + optional int32 itemId = 4; + } + + //5点自动充值试炼 + message fiveResetTowerInfo{ + optional int32 tower = 1;//试炼层数 + optional int32 intoType = 2;//可进入标识 + } + diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index dbed4cd..48e01dc 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -365,6 +365,8 @@ enum MessageType{ SCENE_COMMAND_REQUEST = 11823; //在场景中发送的指令请求 SCENE_COMMAND_RESPONSE = 11824; + SERVER_ZERO_REQUEST = 11825; //服务器12点更新用户数据 + // T 11900 TRIGGER_EVENT_REQUEST = 11900; // @@ -436,5 +438,4 @@ enum MessageType{ // X 12300 // Y 12400 // Z 12500 - } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 2c09b81..65de266 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -340,6 +340,7 @@ import "CommonProto.proto"; repeated Privilege privilege =2 ; //特权使用信息 repeated ActivityInfo activityInfo =3;// 活动刷新 repeated UserMissionInfo userMissionInfo =4;//任务详情(列如 每日任务重置) + optional fiveResetTowerInfo fiveResetTowerInfo = 5;// 重置试炼信息 } message GetMissionResponse{