Scriptname ShadowResetScript extends ActiveMagicEffect {Resets the Shadow Magic EffectAfter dropping out of Shadow Effect it is necessary tounequip and equip the Shadow item in order to re-enterShadow mode. This script performs that activity.}ObjectReference Property RingOfShadows autoEvent onEffectFinish (Actor Player, Actor Caster)Player.UnequipItem( RingOfShadows)Player.EquipItem( RingOfShadows)EndEvent
The problem occurs when trying to set the property for the ring - initially, it is inside a container in a cave, and I can't get the CK to locate it. It resolves to the cell and the container, but not to within the container. How do I tell the CK what ring I mean?