Ignandr9 Posted August 26 Share Posted August 26 Hello everyone! I encountered some difficulties and decided to ask the community for help. I need to change the jump height when equipping heavy armor. I studied the Creation Kit a little, but I still don’t fully understand how to do this. I think that this should be implemented through a magical effect that gives a debuff when wearing armor - a decrease in jump height. I would also like to change the running speed in the future, but as soon as I figure out the jump, I can easily implement everything else in the same way. If anyone knows how to do this or maybe someone knows where I can find a tutorial or an example of such an implementation, I will be infinitely grateful. Thanks everyone) Link to comment Share on other sites More sharing options...
xkkmEl Posted August 26 Share Posted August 26 (edited) For speed, use Actor.setActorValue( "SpeedMult", newspeed). Never tried playing with jump heigth... Edited August 26 by xkkmEl 1 Link to comment Share on other sites More sharing options...
PeterMartyr Posted August 26 Share Posted August 26 fJumpHeightMin 76.000000 iPerkHeavyArmorJumpSum 35 needs SKSE https://ck.uesp.net/w/index.php?title=Category:Settings https://ck.uesp.net/wiki/SetGameSettingFloat_-_Game https://ck.uesp.net/wiki/SetGameSettingInt_-_Game if you can find it in the creation kit, I would use esp plugin, this is not save persistent with papyrus you might want to search these as well for an mod in file to change game settings https://stepmodifications.org/wiki/Guide:Skyrim_INI no I did not check steps, I am leaving that to you, maybe you cannot tweak a jump with an mod ini file OFC you still need the perk... which is why I included the normal one. plus a link to setting for you to experiment with.. there a quite a few jump settings, I might even picked the wrong ones I would stress, this is not player specific but across the board EDIT if it was me I would First try and do it with ini file, added to any mod plugin you got if above fails, make the changes with the creation kit and create dedicated plugin or add it to an existing one If it needs to toggled on and off ?? no choice, only papyrus will work, not save persistent too, remember that, it will require a mainience script https://ck.uesp.net/w/index.php?title=INI_files&mobileaction=toggle_view_desktop#:~:text=overrides SkyrimEditor.ini-,Mod Defined,-[edit | 1 Link to comment Share on other sites More sharing options...
PeterMartyr Posted August 26 Share Posted August 26 @xkkmEl you may be interested in these, if you have never played with settings? fAIDistanceTeammateDrawWeapon fFollowerSpacingAtDoors fFollowSpaceBetweenFollowers I know your making a follower mod 1 Link to comment Share on other sites More sharing options...
Ignandr9 Posted August 26 Author Share Posted August 26 2 hours ago, PeterMartyr said: fJumpHeightMin 76.000000 iPerkHeavyArmorJumpSum 35 needs SKSE https://ck.uesp.net/w/index.php?title=Category:Settings https://ck.uesp.net/wiki/SetGameSettingFloat_-_Game https://ck.uesp.net/wiki/SetGameSettingInt_-_Game if you can find it in the creation kit, I would use esp plugin, this is not save persistent with papyrus you might want to search these as well for an mod in file to change game settings https://stepmodifications.org/wiki/Guide:Skyrim_INI no I did not check steps, I am leaving that to you, maybe you cannot tweak a jump with an mod ini file OFC you still need the perk... which is why I included the normal one. plus a link to setting for you to experiment with.. there a quite a few jump settings, I might even picked the wrong ones I would stress, this is not player specific but across the board EDIT if it was me I would First try and do it with ini file, added to any mod plugin you got if above fails, make the changes with the creation kit and create dedicated plugin or add it to an existing one If it needs to toggled on and off ?? no choice, only papyrus will work, not save persistent too, remember that, it will require a mainience script https://ck.uesp.net/w/index.php?title=INI_files&mobileaction=toggle_view_desktop#:~:text=overrides SkyrimEditor.ini-,Mod Defined,-[edit | Wow, this is serious! I'll work on it, thanks for the help. This is quite extensive information. Exactly what I needed. You are amazing! Link to comment Share on other sites More sharing options...
Recommended Posts