Scriptname eqEffectSandboxLocationScript Extends ActiveMagicEffect ObjectReference Property eqObjectSandboxLocationREF auto Actor Property PlayerRef Auto Event OnEffectStart(Actor akTarget, Actor akCaster) Debug.Trace("eqEffectSandboxLocationScript.OnEffectStart") RegisterForSingleUpdate(0.1) Debug.Trace("cell = " + PlayerRef.GetParentCell()) Debug.Trace("worldspace = " + PlayerRef.GetWorldSpace()) Debug.Trace("location = " + PlayerRef.GetCurrentLocation()) EndEvent Event OnUpdate() eqObjectSandboxLocationREF.MoveTo(PlayerRef, afZOffset = 20) if Self RegisterForSingleUpdate(1.0) endif EndEvent