Toggle Sprint is a simple mod which adds a sprint ability that can be toggled.
You move slightly more than 50% faster - It's a speed I tweaked until it felt right. Fast enough to feel like you're not slow, but not too fast to feel unnatural.
Sprinting is automatically disabled in combat, and re-enabled once you leave combat. This
"auto-sprint after combat" feature can be toggled with an item you get once you use sprint.
Links:► Github► Nexus► Steam WorkshopThe
Nexus version contains an optional "loose" version, which are the unpackaged files that can be placed in your Data folder to
use the mod with achievements enabled.
I also released my full source on
Github, so I encourage you to peruse it if you're interested in seeing how a basic scripting mod is done.
Edit: This mod is
incompatible with other mods that modify Player.charScript. Using multiple mods that both include their own scripts inside Player.charScript will require a manual merge.
Merging mods in this way isn't too daunting, as all that's really happening is you're making sure the scripts both mods include are being included in the same base file.
Where the merging needs to happen:
Player.charScriptUltimately, we need a way to dynamically attach scripts to things. That way we wouldn't have to override base scripts, and could instead just add our script to players.
That would allow better mod compatibility too.