跨服和零点推送
parent
4b343fbe62
commit
afe34abe0a
|
|
@ -1107,7 +1107,9 @@ enum MessageType{
|
|||
// 303701 - 303702 建木神树
|
||||
UpgradeGodTreeRequest = 303701;
|
||||
UpgradeGodTreeResponse = 303702;
|
||||
|
||||
|
||||
ZeroPlayerUpdateIndication = 303703;
|
||||
|
||||
//800000起为global 协议
|
||||
GetWorldServerRequest = 800001;//获取世界服ip
|
||||
GetWorldServerResponse = 800002;
|
||||
|
|
@ -1150,6 +1152,11 @@ enum MessageType{
|
|||
GetPlayerOneTeamInfoRequest = 900017;
|
||||
GetPlayerOneTeamInfoResponse= 900018;
|
||||
|
||||
GetArenaRankRewardRequest = 900019;
|
||||
GetArenaRankRewardResponse = 900020;
|
||||
|
||||
ArenaClearInfoRequest = 900021;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -389,6 +389,10 @@ import "CommonProto.proto";
|
|||
optional int32 hadLuckTime = 14;//幸运探宝次数
|
||||
optional int32 hadAdvanceLuckTime = 15;//高级幸运探宝次数
|
||||
}
|
||||
|
||||
message ZeroPlayerUpdateIndication{
|
||||
|
||||
}
|
||||
|
||||
|
||||
message GetMissionResponse{
|
||||
|
|
|
|||
|
|
@ -167,7 +167,23 @@ import "CommonProto.proto";
|
|||
message GetPlayerOneTeamInfoResponse{
|
||||
optional rpc.protocols.TeamOneInfo teamInfo = 1;
|
||||
}
|
||||
message GetArenaRankRewardRequest{
|
||||
optional int32 groupId = 1;
|
||||
}
|
||||
|
||||
message ArenaRank{
|
||||
optional int32 uid = 1;
|
||||
optional int32 rank = 2;
|
||||
}
|
||||
message GetArenaRankRewardResponse{
|
||||
repeated ArenaRank rankInfo =1;
|
||||
}
|
||||
|
||||
message ArenaClearInfoRequest{
|
||||
optional int32 group = 1;
|
||||
}
|
||||
message ArenaClearInfoResponse{
|
||||
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue