From 1d8f845177006520981a6ad137c40a2de4032d08 Mon Sep 17 00:00:00 2001 From: duhui Date: Wed, 28 Jul 2021 16:03:27 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E8=B7=A8=E6=9C=8D=E6=8E=92=E8=A1=8C?= =?UTF-8?q?=E6=A6=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/PlayerInfoProto.proto | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index f723dad..d10521a 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -677,6 +677,7 @@ import "CommonProto.proto"; optional int32 type = 1;//排行榜类型 optional int32 activiteId = 2;//活动id optional int32 index = 3;//从第几条开始1.1-20 20.21-40.... + optional int32 isCross = 4;//是否是跨服,0:否,1:是 } message RankResponse{ repeated UserRank ranks = 1; @@ -907,3 +908,10 @@ import "CommonProto.proto"; optional int32 decorationId = 1; optional int32 time = 2; } + + // 是否是跨服 + message IsCrossRequert{ + } + message IsCrossResponse{ + optional int32 isCross = 1;// 0:否,1:是 + } From 01b8e75ecb5314442eb628a2a127f87439ea19ec Mon Sep 17 00:00:00 2001 From: duhui Date: Wed, 28 Jul 2021 16:48:19 +0800 Subject: [PATCH 2/6] =?UTF-8?q?=E8=8E=B7=E5=8F=96=E8=B7=A8=E6=9C=8D?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 447c5e8..65ebbb8 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1296,7 +1296,7 @@ enum MessageType{ DeathPathWorldRewardRequest = 900015; - ViewHeroInfoRequest = 9000015; + ViewHeroInfoRequest = 9000015; ViewHeroInfoResponse = 900016; GetPlayerOneTeamInfoRequest = 900017; @@ -1310,6 +1310,9 @@ enum MessageType{ ReplayWorldArenaRequest = 9000023; ReplayWorldArenaResponse = 9000024; + + GetCrossServerRequest = 9000025; + GetCrossServerResponse = 9000026; } From 58418a76bc4916df35371010f2589549fbfb92fa Mon Sep 17 00:00:00 2001 From: mengchengzhen <13682025901@163.com> Date: Wed, 28 Jul 2021 18:25:19 +0800 Subject: [PATCH 3/6] =?UTF-8?q?//=E8=B7=A8=E6=9C=8D=E8=81=8A=E5=A4=A9?= =?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/ChatProto.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protos/ChatProto.proto b/protos/ChatProto.proto index f413ded..8f929fd 100644 --- a/protos/ChatProto.proto +++ b/protos/ChatProto.proto @@ -27,6 +27,7 @@ message ChatInfo{ optional int32 multiple = 21; //显示次数 optional int32 userTitle = 22; optional int32 practiceLevel = 23;//修行等级 + optional string serverName = 24;//服务器名字 } message GetChatMessageInfoRequest { From 0d7d84e07b09defb38488c09f622660b9184472c Mon Sep 17 00:00:00 2001 From: duhui Date: Thu, 29 Jul 2021 14:29:10 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E5=8D=8F=E8=AE=AE=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 65ebbb8..44ef5df 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1311,8 +1311,8 @@ enum MessageType{ ReplayWorldArenaRequest = 9000023; ReplayWorldArenaResponse = 9000024; - GetCrossServerRequest = 9000025; - GetCrossServerResponse = 9000026; + IsCrossRequert = 9000025; + IsCrossResponse = 9000026; } From b6b27f3010cfc8fa15852a9b0a69b80dfc55e2e5 Mon Sep 17 00:00:00 2001 From: duhui Date: Fri, 30 Jul 2021 10:41:24 +0800 Subject: [PATCH 5/6] =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E8=8B=B1=E9=9B=84?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=EF=BC=8C=E6=B7=BB=E5=8A=A0=E9=98=9F=E4=BC=8D?= =?UTF-8?q?id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/PlayerInfoProto.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index d10521a..7d23bfd 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -664,6 +664,7 @@ import "CommonProto.proto"; optional int32 targetUid = 1; optional string heroId = 2 ;// 动态id optional int32 serverId = 3; + optional int32 teamId = 4;//队伍id } message ViewHeroInfoResponse{ From a2b561512e813e65ca998cd5acf254d33ace0a13 Mon Sep 17 00:00:00 2001 From: duhui Date: Fri, 30 Jul 2021 14:44:54 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E8=B7=A8=E6=9C=8D=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E6=8E=A8=E9=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 1 + protos/PlayerInfoProto.proto | 3 +++ 2 files changed, 4 insertions(+) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 44ef5df..3d9da1f 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1313,6 +1313,7 @@ enum MessageType{ IsCrossRequert = 9000025; IsCrossResponse = 9000026; + IsCrossIndication = 9000027; } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 7d23bfd..4a26e96 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -916,3 +916,6 @@ import "CommonProto.proto"; message IsCrossResponse{ optional int32 isCross = 1;// 0:否,1:是 } + message IsCrossIndication{ + optional int32 isCross = 1;// 0:否,1:是 + } \ No newline at end of file