feat: 添加特殊定制和定制插件配置及获取技能攻击类型函数

添加了Project/SpecialCustomization和Project/CustomPlugins的文件夹别名配置
在_ENUM_.nut中添加GetSkillAttackType函数用于获取角色物理魔法状态
This commit is contained in:
Lenheart 2026-02-24 01:34:41 +08:00
parent 7dc35151c7
commit 01c9ae6b2f
2 changed files with 12 additions and 0 deletions

View File

@ -445,3 +445,9 @@ function sq_setEquipAppendage(obj, ApdListId, Time) {
local APD = L_Sq_CallFunc(0x9E5130, "int", FFI_MS_CDECL, ["int", "int", "int"], ApdListId, ObjAddress, ObjAddress);
L_Sq_CallFunc(0x4041c0, "int", FFI_THISCALL, ["int", "int", "int"], APD + 44, 0, Time);
}
//获取当前角色的普通物理魔法状态
function GetSkillAttackType()
{
return NativePointer(0x1A3BB40).readInt();
}

View File

@ -250,5 +250,11 @@
},
"Project/NewTitle": {
"description": "称谓系统"
},
"Project/SpecialCustomization": {
"description": "特殊定制"
},
"Project/CustomPlugins": {
"description": "定制插件"
}
}