Sooo I've downloaded the Creation Kit just recently, and through experimentation I've managed to add in a new spell, magic effect, and spell tome. I managed to get the player access to the spell via the spell tome that I placed in game somewhere. (in a test location for now) Im actually trying to script that will teleport the player to the spells impact location, but none of the events I've put into my script seem to ever fire. This is what I have in my script so far: Scriptname ConjureSelfScript extends activemagiceffect
{Used in the ConjureSelf Spell Mod}
Event OnEffectStart(Actor akTarget, Actor akCaster)
Debug.MessageBox("Magic effect was started on " + akTarget)
endEvent Not much, I know. But like I said I cant even get the OnEffectStart event to fire. Is there another event that I might need to use? Also, the 'explosion' property in my magic effect doesnt seem to do anything at all when it hits a target. And.... finally, the Hit Effect Art only seems to show when it hits an actor, not a location like the ground or a surface. Thanks for any help you might be able to give me :)