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 { diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 447c5e8..3d9da1f 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,10 @@ enum MessageType{ ReplayWorldArenaRequest = 9000023; ReplayWorldArenaResponse = 9000024; + + IsCrossRequert = 9000025; + IsCrossResponse = 9000026; + IsCrossIndication = 9000027; } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index f723dad..4a26e96 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{ @@ -677,6 +678,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 +909,13 @@ import "CommonProto.proto"; optional int32 decorationId = 1; optional int32 time = 2; } + + // 是否是跨服 + message IsCrossRequert{ + } + message IsCrossResponse{ + optional int32 isCross = 1;// 0:否,1:是 + } + message IsCrossIndication{ + optional int32 isCross = 1;// 0:否,1:是 + } \ No newline at end of file