So, I am a complete newbie to the creation kit, having never used the earlier construction kits, and am having some trouble with scripting. My first script was an attempt to create a spell which would teleport the caster to the projectile's impact location, and that didn't work so well (I may end up revisiting that later, once I know how this stuff works). My latest endeavor has been to create a pair of seven-league-boots using a script, rather than an enchantment, just as an experiment. After some time, I ended up with this script:
Spoiler Scriptname SevenLeagueBootsSCR extends ObjectReference Event OnEquipped(Actor akActor) Function akActor.SetActorValue("SpeedMult", 5) EndFunctionEndEventEvent OnUnequipped(Actor akActor) Function akActor.SetActorValue("SpeedMult", 1) EndFunctionEndEvent Much to my dismay, it did not even compile. This was after several hours of research into papyrus, so I was a little disappointed. If someone could point out what I did wrong, or, even better, explain it, that would be much appreciated.