diff --git a/protos/ArenaInfoProto.proto b/protos/ArenaInfoProto.proto index 3f784a9..e579c4a 100644 --- a/protos/ArenaInfoProto.proto +++ b/protos/ArenaInfoProto.proto @@ -191,8 +191,7 @@ import "CommonProto.proto"; } //玉虚论道领取日常奖励 message CrossYuXuLunDaoGetDailyRewardRequest{ - optional int32 level = 1; //段位 - optional int32 type = 2; //第几个宝箱 + optional int32 type = 1; //第几个宝箱 从0开始 } message CrossYuXuLunDaoGetDailyRewardResponse{ optional bool isSuccess = 1 ;//是否领取成功 diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index e120382..0748da1 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -674,7 +674,8 @@ option optimize_for = SPEED; optional int32 isApplyed = 8;//是否已经申请过 optional int32 userTitle = 9; optional int32 practiceLevel = 10;//修行等级 - repeated TeamOneTeamInfo crossTeam = 11;//跨服玉虚论道 三队伍 + repeated TeamOneTeamInfo crossTeam = 11;//跨服玉虚论道 三队伍 + optional int32 crossTeamScore = 12;//跨服玉虚论道积分 } //妖兽排行 diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 5df8332..b6c97b4 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1320,9 +1320,12 @@ enum MessageType{ CrossYuXuLunDaoChallengeResponse = 900026; CrossYuXuLunDaoChangeEnemyInfoRequest = 900027; CrossYuXuLunDaoChangeEnemyInfoResponse = 900028; + CrossYuXuLunDaoGetDailyRewardRequest = 900029; + CrossYuXuLunDaoGetDailyRewardResponse = 900030; ReplayWorldArenaRequest = 9000023; ReplayWorldArenaResponse = 9000024; + IsCrossRequert = 9000025; IsCrossResponse = 9000026; diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index f818e24..ce3d798 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -519,7 +519,7 @@ import "CommonProto.proto"; optional int32 playerId = 1; optional int32 teamId = 2; optional int32 serverId = 3; - repeated int32 crossteamId = 4;//跨服玉虚论道的teamId + optional int32 teamType = 4;//1=跨服玉虚论道的三队伍 } message GetPlayerOneTeamInfoResponse{ optional TeamOneInfo teamInfo = 1;