跨服服务器
parent
0f0b2825a2
commit
b5ba574d5f
|
|
@ -1128,6 +1128,7 @@ enum MessageType{
|
|||
GetWorldArenaRecordInfoRequest= 900007;
|
||||
GetWorldArenaRecordInfoResponse= 900008;
|
||||
|
||||
|
||||
|
||||
//gs --》word
|
||||
GetGSUserArenaInfoRequest = 900009;
|
||||
|
|
@ -1141,6 +1142,11 @@ enum MessageType{
|
|||
|
||||
GetDeathPathRewardRequest = 900014;
|
||||
|
||||
ViewHeroInfoRequest = 9000015;
|
||||
ViewHeroInfoResponse = 900016;
|
||||
|
||||
GetPlayerOneTeamInfoRequest = 900017;
|
||||
GetPlayerOneTeamInfoResponse= 900018;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -497,6 +497,7 @@ import "CommonProto.proto";
|
|||
message GetPlayerOneTeamInfoRequest{
|
||||
optional int32 playerId = 1;
|
||||
optional int32 teamId = 2;
|
||||
optional int32 serverId = 3;
|
||||
}
|
||||
message GetPlayerOneTeamInfoResponse{
|
||||
optional TeamOneInfo teamInfo = 1;
|
||||
|
|
@ -641,6 +642,7 @@ import "CommonProto.proto";
|
|||
message ViewHeroInfoRequest{
|
||||
optional int32 targetUid = 1;
|
||||
optional string heroId = 2 ;// 动态id
|
||||
optional int32 serverId = 3;
|
||||
}
|
||||
|
||||
message ViewHeroInfoResponse{
|
||||
|
|
|
|||
|
|
@ -146,9 +146,28 @@ import "CommonProto.proto";
|
|||
repeated GuildRank ranks = 1;//所有需要发奖的公会id
|
||||
}
|
||||
|
||||
message ViewHeroInfoRequest{
|
||||
optional int32 targetUid = 1;
|
||||
optional string heroId = 2 ;// 动态id
|
||||
}
|
||||
|
||||
message ViewHeroInfoResponse{
|
||||
optional rpc.protocols.Hero hero =1;
|
||||
repeated rpc.protocols.Equip equip =2; // 英雄所穿装备、魂印(法宝不在内,放在Hero中)
|
||||
repeated rpc.protocols.SpecialEffects SpecialEffects = 3;//属性信息
|
||||
optional int32 force = 4 ; //战力
|
||||
optional int32 guildSkill = 5;//公会技能
|
||||
}
|
||||
|
||||
|
||||
|
||||
//获取编队信息
|
||||
message GetPlayerOneTeamInfoRequest{
|
||||
optional int32 playerId = 1;
|
||||
optional int32 teamId = 2;
|
||||
}
|
||||
message GetPlayerOneTeamInfoResponse{
|
||||
optional rpc.protocols.TeamOneInfo teamInfo = 1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue