A spell that if your in a certain place it does something, but if your anywhere but this place it does something else.
the script so far....
it doesn't include the recall code yet as i just want to get this to work, if you know a decent recall code please post

Scriptname DweHomeTeleport extends activemagiceffect ObjectReference property DweHouseStargavvenTPRm autoObjectReference property CellName? auto ; will i need this?if (Game.GetPlayer().getCurrentLocation().IsSameLocation(CellName?)) ; do i even put the cell name hereEvent OnEffectFinish(Actor target, Actor Caster)target.MoveTo(someplaceelse) ; will change obv....EndEventelseEvent OnEffectFinish(Actor target, Actor Caster)target.MoveTo(DweHouseStargavvenTPRm)EndEventendif
