Jelajahi Sumber

合成校验

cyzhao 5 bulan lalu
induk
melakukan
43e147bda7

+ 5 - 0
Gameserver/App/base/ErrCode.php

@@ -531,6 +531,11 @@ class ErrCode {
      * 装备合成材料不能参与此次合成
      */
     const user_store_equip_composeMaterialErr = 3318;
+    
+    /**
+     * 该装备已达最高品阶
+     */
+    const user_store_equip_qualMaxLimit = 3319;
 // </editor-fold>
 //
 //   // <editor-fold defaultstate="collapsed" desc="    shop 3400    ">

+ 1 - 1
Gameserver/App/model/Const/GameConfig.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2025-01-02 14:55:44
+ // 日期: 2025-01-03 10:07:32
 ////////////////////
 
 /**

+ 1 - 1
Gameserver/App/model/Const/sm_gate.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-12-31 16:21:57
+ // 日期: 2025-01-02 16:51:57
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_gate_unlock.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-12-31 16:21:57
+ // 日期: 2025-01-02 16:51:57
 ////////////////////
 
 

+ 11 - 1
Gameserver/App/model/Const/sm_glc2.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-12-27 14:37:03
+ // 日期: 2025-01-03 10:09:28
 ////////////////////
 
 
@@ -33,5 +33,15 @@ class sm_glc2
     */
     public $activity_lottery_GuanggaoDownTs;
 
+    /**
+    * @var Int32 通关第二关并领取第二关的第一个章节宝箱后 触发装备升级 降级   
+    */
+    public $guide_equipLevel_triggerGateId;
+
+    /**
+    * @var Int32 通关第二关并领取第二关的第一个章节宝箱后  
+    */
+    public $guide_equipLevel_triggerGateBoxIndex;
+
 }
 

+ 7 - 4
Gameserver/App/model/Const/sm_guide.php

@@ -19,7 +19,8 @@ class sm_guide
     public $id;
 
     /**
-    * @var Int32 引导模块类型  
+    * @var Int32 引导模块类型
+    *  (0普通点击 1指定技能)  
     */
     public $type;
 
@@ -34,12 +35,12 @@ class sm_guide
     public $btnPath;
 
     /**
-    * @var String 箭头坐标偏移  
+    * @var String 箭头坐标偏移;默认坐标(0, 100)  
     */
     public $arrOffsetPos;
 
     /**
-    * @var String 提示坐标偏移  
+    * @var String 提示坐标偏移;默认坐标(0, 400)  
     */
     public $tipsOffsetPos;
 
@@ -70,7 +71,9 @@ class sm_guide
     public $delayTime;
 
     /**
-    * @var Int32 没有,是否继续 default(0) 
+    * @var Int32 没有,是否继续
+    *  1:继续 0:不继续
+    *   default(0) 
     */
     public $notGoOn;
 

+ 1 - 1
Gameserver/App/model/Const/sm_predicate.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-12-31 10:21:57
+ // 日期: 2025-01-03 09:35:07
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_skills.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-12-19 17:05:55
+ // 日期: 2025-01-03 09:58:53
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_waveItem.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-12-31 17:51:57
+ // 日期: 2025-01-03 10:09:27
 ////////////////////
 
 

+ 1 - 1
Gameserver/App/model/Const/sm_waves.php

@@ -3,7 +3,7 @@
  // 由CodeGenerator创建。
  // Copyright (C) gwang (wanggangzero@qq.com), Loyalsoft@sjz Inc
  // author: gwang 
- // 日期: 2024-12-31 17:51:57
+ // 日期: 2025-01-03 10:09:27
 ////////////////////
 
 

+ 1 - 0
Gameserver/App/process/StoreProc.php

@@ -182,6 +182,7 @@ class StoreProc {
         my_Assert(StlUtil::dictHasProperty($equipDic, $uid), ErrCode::user_store_NotExistEquip);
         $ins_equip = new Ins_Equip($equipDic->$uid);
 
+        my_Assert($ins_equip->qual<16, ErrCode::user_store_equip_qualMaxLimit);
         $composeMo = GameConfig::equip_compose_getItem($ins_equip->qual);
         my_Assert(null != $composeMo, ErrCode::err_const_no);
         $arr = explode(',', $composeMo->compose_condition);