diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index ce21442..1cf8eaa 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -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; + } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 1a23459..ed29480 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -389,6 +389,10 @@ import "CommonProto.proto"; optional int32 hadLuckTime = 14;//幸运探宝次数 optional int32 hadAdvanceLuckTime = 15;//高级幸运探宝次数 } + + message ZeroPlayerUpdateIndication{ + + } message GetMissionResponse{ diff --git a/protos/gtwprotos/WorldProto.proto b/protos/gtwprotos/WorldProto.proto index 9cc0550..3d3c5fc 100644 --- a/protos/gtwprotos/WorldProto.proto +++ b/protos/gtwprotos/WorldProto.proto @@ -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{ + + } \ No newline at end of file