Jump to content

[LE] Increase movement speed ench with ck?


leot486

Recommended Posts

it should be simple to make. not sure how it would interact with water, i'm having issues with that trigger + speed alteration

 

if there isn't one already, you'd just want to create a magic effect and link it to speedmult, then make the spell and use it where you want. there is already a wisp speed boost i remember seeing that you can piggyback off of too, think you set the magnitude to = % speed increase

Link to comment
Share on other sites

If you look at my mod in the CK I have made several speed increase effects.

 

What you have to do is basically what sulmithgreysin stated in that you must use the speedmult attribute and change it via a spell or enchantment (give it a magnitude that wears off after however many seconds)

Link to comment
Share on other sites

  • 9 years later...

Does such an enchant exist in the CK? Also is there a website that lists what all the enchants are, and what all the things under settings are, etc etc? Like a CK wiki I guess.

actually that "Wisp Speed Buff" doesn't even work or have any scripts, so no, you can't piggyback off of it.

 

this might work though:

 

ScriptName yourspeedbuffenchantorspell extends ActiveMagicEffect
Float Property SpeedMult auto
Event OnEffectStart(Actor akTarget)
akTarget.SetActorValue("SpeedMult", 300)
EndEvent
Event OnEffectFinish(Actor akTarget)
akTarget.SetActorValue("SpeedMult", 100)
EndEvent
Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...