Skyrim
0 of 0

File information

Last updated

Original upload

Created by

jimhsu

Uploaded by

jimhsu

Virus scan

Safe to use

Tags for this mod

About this mod

MOVEMENT MOD By: jimhsu REQUIRES script dragon (otherwise, no effect on jumping). Modder\'s resource for adding jumping/fortify speed effects to armors.

Permissions and credits
MOVEMENT MOD
By: jimhsu

REQUIRES script dragon (otherwise, no effect on jumping).

Modder's resource for adding jumping/fortify speed effects to armors.

See examples in the esm for more info.

Boots can be spawned from the console:
help "imperial boots of speed"
help "imperial boots of jumping"

----

TECHNICAL DETAILS:

I'm calling a MagicEffect that changes JumpingBonus. Since this is not implemented in game, I wrote some C++ with SD to essentially add this value onto the game setting fJumpHeightMin with a background updater. To save CPU, the updater should only run if the value is actually modified in game (yes, SetAV JumpingBonus also works). Otherwise, the Script Dragon implementation is completely transparent (no end user settings). That's basically it.

The ini file will let you change scaling (multiplier). The formula for fJumpHeightMin:

fJumpHeightMin = 76 + JumpingBonus*multiplier.

The fortify speed enchant modifies SpeedMult, which is trivial (see my previous mod).

----

I will be providing only minimal end user support for this mod since it's a modder resource. Please refrain from questions such as "where are these boots", "balance", etc.