ZippyDSMlee Posted September 18, 2015 Share Posted September 18, 2015 Zippys silvery undead request for help thread I’m trying to make a skyrim mod based on making the Undead really tough unless its silver or fire. I’m having a heck of a time disabling stuff via “keyword == 0 “ , am I even using the right conditional set? All of this is via a cloak spell the cloak spell is working fine I am having issues with conditionals more than anything else. Currently I have these effects going, the base effects all have undead/vampire/werewolf race/type conditionals. =========Damage resist set to 2500 with the conditional “keyword weapmatrialsilver == 0 and”Peak Value ModifierConsentrationContactDamage resistNorecast flagRecover flag--Thought process: Primary damage buffWorking: Damage resistance works but will not shut off when needed.------------------------Magic resist set to 99, 1 secPeak Value ModifierConsentrationContactMagic resistRecover flag--Thought process: Primary magic buffWorking: Yes --------------------------Damage resist Weakness set to 3000 , 1 sec, with the conditional “keyword weapmatrialsilver == 1 and”Peak Value ModifierConsentrationContactDamage resistDetrimental flag--Thought process: Attempt to remove damage resistance on silver weapon contactWorking:Not working------------------------Damage health set to 10 every 1 sec with the conditional “keyword weapmatrialsilver == 1 or” and “keyword magicdamagefire == 1 or”Value ModifierConsentrationContactHealthNorecast flag--Thought process: Degrade health while on fire or hit by silverWorking: not working.------------------------ Weakness to fire set to 26999, 1 secConsentrationContactResist fireNorecast flagRecover flagDetrimental flag --Thought process: Primary weakness to fire, needed to offset damage, health and magic resistance buffs.Working: Yes------------------Fortify health set to 5 every 10 sec with the conditional “keyword weapmatrialsilver == 0 or” and “keyword magicdamagefire == 0 or”Value ModifierConsentrationContactHealthFX presist flagPainless flag--Thought process: Health regeneration buffWorking: Yes------------------------ Also have Poison, Shock and Frost buffs but they are not needed badly, the above are the ones I either needed badly or not working. Is it the recover flag that’s not making things work? Link to comment Share on other sites More sharing options...
lofgren Posted September 18, 2015 Share Posted September 18, 2015 ========= Damage resist set to 2500 with the conditional “keyword weapmatrialsilver == 0 and” Peak Value Modifier Consentration Contact Damage resist Norecast flag Recover flag -- Thought process: Primary damage buff Working: Damage resistance works but will not shut off when needed. Weapon keywords are not applied to actors when they are hit by the weapons, so this condition will never resolve to false. Damage resistance over 666 will be ignored. -------------------------- Damage resist Weakness set to 3000 , 1 sec, with the conditional “keyword weapmatrialsilver == 1 and” Peak Value Modifier Consentration Contact Damage resist Detrimental flag -- Thought process: Attempt to remove damage resistance on silver weapon contact Working:Not working Same is true here. This condition will never be true. ------------------------ Damage health set to 10 every 1 sec with the conditional “keyword weapmatrialsilver == 1 or” and “keyword magicdamagefire == 1 or” Value Modifier Consentration Contact Health Norecast flag -- Thought process: Degrade health while on fire or hit by silver Working: not working. Same as above. You can make the fire damage work by changing it to HasMagicEffectKeyword MagicDamageFire == 1. Is it the recover flag that’s not making things work? No. Link to comment Share on other sites More sharing options...
ZippyDSMlee Posted September 19, 2015 Author Share Posted September 19, 2015 SNIP Ah I was using the wrong setting now things are coming together!Can you clarify one last thing for me? How would I make Magic resist turn off when magic fire is applied? "HasMagicEffectKeyword MagicDamageFire == 0" Is the first thing that comes to mind. Link to comment Share on other sites More sharing options...
Recommended Posts