EvilDeadAsh34 Posted February 11, 2012 Share Posted February 11, 2012 First off, i am trying to make a mod that changes the speed and jumping heights of every race individually. For instance i'd like Khajiit to jump higher and be able to withstand longer falls. Is there a way or does anyone know the values that need to be changed in the Creation Kit to achieve this? I have been searching and tinkering for an hour now and i've literally gotten nowhere. :sweat: Any help would be very much appreciated. P.S. I've even looked on the Creation Kit site for the info and still no answers. Link to comment Share on other sites More sharing options...
Max17x Posted February 12, 2012 Share Posted February 12, 2012 I'd really like to know that too :( Link to comment Share on other sites More sharing options...
GomuGomu64 Posted February 12, 2012 Share Posted February 12, 2012 Couldn't you edit the active effects and add a ratial ability which would give a duplicate of the perk from the Heavy Armour tree that reduces damage from falls? Shouldn't be hard at all. Link to comment Share on other sites More sharing options...
Max17x Posted February 12, 2012 Share Posted February 12, 2012 Couldn't you edit the active effects and add a ratial ability which would give a duplicate of the perk from the Heavy Armour tree that reduces damage from falls? Shouldn't be hard at all.But that wouldn't change the jump height,not even the speed :( Link to comment Share on other sites More sharing options...
nyxeka Posted February 12, 2012 Share Posted February 12, 2012 (edited) Well what you could do is add a perk that does the fall damage, copy the cushioned perk, and set the value to 100 instead of 50, and the speed can be achieved with scripts, IE, Game.GetPlayer().setgs(fJumpHeightMin,150), (100 being the norm), and speed could be Game.GetPlayer.Setav(speedmult,150) (100 being the norm, it actually is...) EDIT Game.GetPlayer().SetActorValue("speedmult", 150) Game.GetPlayer().SetGameSetting("fJumpHeightMin", 150) Edited February 12, 2012 by nyxeka Link to comment Share on other sites More sharing options...
Max17x Posted February 12, 2012 Share Posted February 12, 2012 Well what you could do is add a perk that does the fall damage, copy the cushioned perk, and set the value to 100 instead of 50, and the speed can be achieved with scripts, IE, Game.GetPlayer().setgs(fJumpHeightMin,150), (100 being the norm), and speed could be Game.GetPlayer.Setav(speedmult,150) (100 being the norm, it actually is...)Mmm so in a script I can use also console commands? I'll take a try. Thanks for the tip :) Link to comment Share on other sites More sharing options...
Max17x Posted February 12, 2012 Share Posted February 12, 2012 Well what you could do is add a perk that does the fall damage, copy the cushioned perk, and set the value to 100 instead of 50, and the speed can be achieved with scripts, IE, Game.GetPlayer().setgs(fJumpHeightMin,150), (100 being the norm), and speed could be Game.GetPlayer.Setav(speedmult,150) (100 being the norm, it actually is...) EDIT Game.GetPlayer().SetActorValue("speedmult", 150) Game.GetPlayer().SetGameSetting("fJumpHeightMin", 150)It tells me that : " SetGameSetting is not a function or does not exist" :S Link to comment Share on other sites More sharing options...
Max17x Posted February 12, 2012 Share Posted February 12, 2012 It tells me that : " SetGameSetting is not a function or does not exist" :SMaybe it's only a console command? Link to comment Share on other sites More sharing options...
Max17x Posted February 12, 2012 Share Posted February 12, 2012 By the way, is there a command to increase only the sprint value? I tried the SetActorValue and it works with both wallking speed and sprinting speed. Link to comment Share on other sites More sharing options...
EvilDeadAsh34 Posted February 12, 2012 Author Share Posted February 12, 2012 Man, i really need to buckle down and learn how to script. I've never done it before though, so i have no idea where to start. :sweat: Link to comment Share on other sites More sharing options...
Recommended Posts