This commit is contained in:
2024-03-18 21:37:40 +08:00
commit c4aef8f3a3
313 changed files with 74071 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/*
文件名:procAppend_Priest.nut
路径:procAppend/procAppend_Priest.nut
创建日期:2022-09-04 20:20
文件用途:圣职者Proc循环函数
*/
function procAppend_Priest(obj) {
if (!obj)
return;
procAppend_All(obj);
//强制直拳冲击
// obj.setSkillCommandEnable(61, true);
// local EnterSkill = obj.sq_IsEnterSkill(61); //设置按键响应技能编号
// if(EnterSkill != -1 && !sq_GetSkill(obj, 61).isInCoolTime()){
// local pIntVec = sq_GetGlobalIntVector();
// obj.addSetStatePacket(29, pIntVec, STATE_PRIORITY_USER, false, "");
// }
// print(obj.getState());
return 1;
}