So I've run into another problem. I'm trying to make a script on a spell that moves an actor over to the player to simulate a summoning spell, though I can't use an actual summoning as that blocks dialogue with the summoned actor for some reason (Unless there's a way around that. I've tried DefaultPCallowDialogueScript but to no avail). Also, I need to use MoveTo as opposed to PlaceAtMe since this is a unique actor.
Here's the coding I've got on the spell. I used the creation kit wiki page on MoveTo as a template, but it doesn't seem to work.
Scriptname MANNimarcoAspectMoveToPlayerScript extends activemagiceffect ObjectReference Property MANNimarcoAspect Auto Event OnCast MANNimarcoAspect.MoveTo PlayerEndEvent
(Yes, I'm bringing Mannimarco back from Oblivion )
The problem is that it tells me "Object reference not set to an instance of an object"
Even though MANNimarcoAspect already points to an existing actor.
What do?