This doesn't work actually. i created a custom script (as shown below), and i am able to burdon myself with the script, but when cast on another NPC, they still can move at full speed... Any other ideas?
Scriptname BurdenEffect extends ActiveMagicEffect Event OnEffectStart(Actor akTarget, Actor akCaster) ; Debug.Notification("Magic effect was started on " + akTarget) akTarget.AddItem(Ring, 1, false)endEventEvent OnEffectFinish(Actor akTarget, Actor akCaster) ; Debug.Notification("Magic effect fades from " + akTarget) akTarget.RemoveItem(Ring, 1, true)endEventArmor Property Ring Auto The Ring is an armor form i created based off of the Silver ring, with a weight of 1000.00