Deleted51596636User Posted February 24, 2018 Share Posted February 24, 2018 (edited) I am trying to create a ring that, when worn, makes any attack you do to npcs sets the npc to be protected instead of essential. In my experience mods that set all essential npcs to protected don't always work on pre-existing saves and could be overridden from quests.I have learned a little bit of scripting trying to make this mod and I've made an enchantment I can put on any custom weapons I make that has the intended affect. I made the following script: Event OnEffectStart(Actor akTarget, Actor akCaster) Actor target = akTarget if (target.IsEssential()) target.SetProtected(true) target.SetEssential(false) EndIf EndEvent I would like to have a ring that applies this affect for more versatility and have no idea how. Any help would be appreciated. Edited February 24, 2018 by Guest Link to comment Share on other sites More sharing options...
Recommended Posts