Can someone knowledgable about how to script Skyrim show me how to add a spell to the player while they are running?
Here is how I would have written it in Oblivion (if my memory of that scripting language is right)
scriptname RunningSpell
Begin GameMode
If (player.isrunning == 1)
player.addspell SuperSpeedSpell
Else
player.removespell SuperspeedSpell
End
I've poured throught the wiki and Youtube, but I'm lost. Help?
