Commit 1e73b33b08ff66f8cd03207437c511349dde4f7f

Authored by zhangqijia
1 parent f0603fc2

add: task_open

Showing 3 changed files with 13 additions and 7 deletions   Show diff stats
models.proto
... ... @@ -159,6 +159,7 @@ message Task {
159 159 map<int32,string> specify_task = 6;
160 160 map<int32,int32> achievement_task = 7;
161 161 map<int32,int32> favorability_task = 8; // id=process
  162 + map<int32,int32> global_task = 9;
162 163 }
163 164  
164 165 message Dispatch {
... ...
protocode.proto
... ... @@ -80,12 +80,13 @@ enum ProtoCode
80 80 RoleUpdatePropertyNty = 1002;
81 81 RoleUpdateItemsNty = 1003;
82 82 RoleTaskUpdateNty = 1004;
83   - HeroAddNty = 1005;
84   - HeroUpdatePropertyNty = 1006;
85   - EmailNewNty = 1007;
86   - EquipmentAddNty = 1008;
87   - StoreUpdatePropertyNty = 1009;
88   - ActivityPropertyNty = 1010;
89   - ActivityCirNty = 1011;
  83 + RoleTaskOpenNty = 1005;
  84 + HeroAddNty = 1006;
  85 + HeroUpdatePropertyNty = 1007;
  86 + EmailNewNty = 1008;
  87 + EquipmentAddNty = 1009;
  88 + StoreUpdatePropertyNty = 1010;
  89 + ActivityPropertyNty = 1011;
  90 + ActivityCirNty = 1012;
90 91  
91 92 }
92 93 \ No newline at end of file
... ...
role.proto
... ... @@ -269,3 +269,7 @@ message RoleCostDiamondAddSpReq {
269 269 message RoleCostDiamondAddSpRsp {
270 270 int32 sp = 1;
271 271 }
  272 +
  273 +message RoleTaskOpenNty {
  274 + map<int32,bool> task_open = 1;
  275 +}
272 276 \ No newline at end of file
... ...