更新了茶服的加密nut

This commit is contained in:
2025-11-09 11:52:58 +08:00
parent 6ac9e059fb
commit 232a76147e
2 changed files with 8 additions and 8 deletions

View File

@@ -484,8 +484,8 @@ function onStartDungeon_Crusader_bykk(obj)
if(AddAppendage) CNSquirrelAppendage.sq_RemoveAppendage(obj, apdPath[i]);
}
setSkillBonusBate_Crusader_bykk(obj);
local now_mgAttack = sq_GetMagicalAttack();//1000;//
now_mgAttack = now_mgAttack * (100 + sq_GetIntData(obj, 169, 2)) / 100;
local now_mgAttack = sq_GetCharacterAttribute(0x2394);//1000;//
now_mgAttack = now_mgAttack * (100 + sq_GetIntData(obj, 169, 102)) / 100;
obj.getVar("isReset").setInt(0, 1);
obj.getVar("mgAttackSave").setInt(0, now_mgAttack);
print("now_mgAttack = "+now_mgAttack);
@@ -495,8 +495,8 @@ function retset_Crusader_bykk(obj)
{
setSkillBonusBate_Crusader_bykk(obj);
if(obj.getVar("mgAttackSave").getInt(0) > 0) return;
local now_mgAttack = sq_GetMagicalAttack();//1000;//
now_mgAttack = now_mgAttack * (100 + sq_GetIntData(obj, 169, 2)) / 100;
local now_mgAttack = sq_GetCharacterAttribute(0x2394);//1000;//
now_mgAttack = now_mgAttack * (100 + sq_GetIntData(obj, 169, 102)) / 100;
obj.getVar("mgAttackSave").setInt(0, now_mgAttack);
print("now_mgAttack = "+now_mgAttack);
}