From 4933ce82511d2c300fe5156ffdd879357770a2cc Mon Sep 17 00:00:00 2001 From: xuexinpeng Date: Wed, 8 Sep 2021 11:09:21 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=89=E8=99=9A=E8=AE=BA=E9=81=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/ArenaInfoProto.proto | 8 +++----- protos/MessageTypeProto.proto | 2 ++ protos/PlayerInfoProto.proto | 8 ++++++++ 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/protos/ArenaInfoProto.proto b/protos/ArenaInfoProto.proto index e579c4a..1ae8d4f 100644 --- a/protos/ArenaInfoProto.proto +++ b/protos/ArenaInfoProto.proto @@ -150,11 +150,9 @@ import "CommonProto.proto"; //玉虚论道 message CrossYuXuLunDaoChallengeRequest{ - optional int32 teamIdOne =1; // 本人进攻队伍一id - optional int32 teamIdTwo =2; // 本人进攻队伍二id - optional int32 teamIdThree =3; // 本人进攻队伍三id - optional int32 challengeUid = 4 ;// 对手uid - optional int32 challengeType = 5 ;// 0免费挑战|1消耗物品挑战 + repeated int32 teamId = 1; //本人进攻队伍一id 队伍二id 队伍三id + optional int32 challengeUid = 2 ;// 对手uid + optional int32 challengeType = 3 ;// 0免费挑战|1消耗物品挑战 } message CrossYuXuLunDaoChallengeResponse{ optional int32 myScore = 1 ; //我的分数值 diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index b6c97b4..d240d70 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1322,6 +1322,8 @@ enum MessageType{ CrossYuXuLunDaoChangeEnemyInfoResponse = 900028; CrossYuXuLunDaoGetDailyRewardRequest = 900029; CrossYuXuLunDaoGetDailyRewardResponse = 900030; + GetPlayerCrossYxldOneTeamInfoRequest = 900031; + GetPlayerCrossYxldOneTeamInfoResponse = 900032; ReplayWorldArenaRequest = 9000023; ReplayWorldArenaResponse = 9000024; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index ce3d798..4dae795 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -938,5 +938,13 @@ import "CommonProto.proto"; message TaiChuSecretvolumeResponse{ repeated taiChuSecretvolume secretvolume = 1; } + //玉虚论道获取编队信息 + message GetPlayerCrossYxldOneTeamInfoRequest{ + optional int32 playerId = 1; + optional int32 serverId = 2; + } + message GetPlayerCrossYxldOneTeamInfoResponse{ + optional TeamOneInfo teamInfo = 1; + } \ No newline at end of file