Compare View

switch
from
...
to
 
Commits (2)
@@ -33,6 +33,8 @@ enum ProtoCode @@ -33,6 +33,8 @@ enum ProtoCode
33 RoleLuckySeekRpc = 125; 33 RoleLuckySeekRpc = 125;
34 RoleLuckyRewardRpc = 126; 34 RoleLuckyRewardRpc = 126;
35 RoleCostDiamondAddSpRpc = 127; 35 RoleCostDiamondAddSpRpc = 127;
  36 + RoleSurviveCarbonStartRpc = 128;
  37 + RoleSurviveCarbonEndRpc = 129;
36 38
37 HeroEquipReferRpc = 201; 39 HeroEquipReferRpc = 201;
38 HeroFragmentCovertRpc = 202; 40 HeroFragmentCovertRpc = 202;
@@ -75,6 +77,9 @@ enum ProtoCode @@ -75,6 +77,9 @@ enum ProtoCode
75 DispatchEndRpc = 803; 77 DispatchEndRpc = 803;
76 DispatchQuickRpc = 804; 78 DispatchQuickRpc = 804;
77 79
  80 + CarbonSurviveStartRpc = 901;
  81 + CarbonSurviveEndRpc = 902;
  82 +
78 83
79 DisConnectNty = 1001; 84 DisConnectNty = 1001;
80 RoleUpdatePropertyNty = 1002; 85 RoleUpdatePropertyNty = 1002;
@@ -275,4 +275,19 @@ message RoleCostDiamondAddSpRsp { @@ -275,4 +275,19 @@ message RoleCostDiamondAddSpRsp {
275 message RoleTaskOpenNty { 275 message RoleTaskOpenNty {
276 map<int32,bool> circle_task = 1; 276 map<int32,bool> circle_task = 1;
277 map<int32,bool> limit_task = 2; 277 map<int32,bool> limit_task = 2;
278 -}  
279 \ No newline at end of file 278 \ No newline at end of file
  279 +}
  280 +
  281 +
  282 +message RoleSurviveCarbonStartReq {
  283 + int32 carbon_id = 1;
  284 +}
  285 +
  286 +message RoleSurviveCarbonStartRsp {
  287 +}
  288 +
  289 +message RoleSurviveCarbonEndReq {
  290 +}
  291 +
  292 +message RoleSurviveCarbonEndRsp {
  293 + map<int32,int32> reward = 1;
  294 +}