|
马上注册领取绝版勋章
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如题,在装了DD和其他动作美化类mod时,dd的束缚动作会被覆盖掉
经过漫长(5分钟)的研究后,这里有一个针对DAR加载的傻瓜解决方案
在你的动作美化类mod里的(全部)_conditions.txt(通常在xxx\meshes\actors\character\animations\DynamicAnimationReplacer\_CustomConditions\子文件夹内)后加上如下代码,屏蔽掉装备dd装置时触发该动作的可能性(记得先在末尾行仿照格式加上 AND )
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x0866B8) AND
NOT IsWornHasKeyword("Devious Devices - Assets.esm" | 0x02C531) AND
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x08A76C) AND
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x063AD9) AND
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x062538) AND
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x062539) AND
NOT IsWornHasKeyword("Devious Devices - Assets.esm" | 0x00CA3A) AND
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x060A46) AND
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x05F4BA) AND
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x05FA1E) AND
NOT IsWornHasKeyword("Devious Devices - Integration.esm" | 0x086C1D)
(不保证完全可用,经本人测试可以解决本人的冲突问题)
|
|