magnet55sphere Posted February 1, 2024 Share Posted February 1, 2024 (edited) So I have recently found the function "SetINIFloat" and haave been having fun changing the fall speed of the player, but I cannot find other strings to change that would effect gameplay. I checked out this website https://stepmodifications.org/wiki/Guide:Skyrim_INI and it has a pretty extensive list, but the way it is set up is not dyslexia friendly so I do have some issues navigating it. this is my script so far, very simple: Scriptname aaaMgntINIFloatOnMagic extends ActiveMagicEffect {Change INI Float on effect start, change back to default on end} string property INItoChange auto float property changeto auto float property default auto Event OnEffectStart(Actor akCaster, Actor akTarget) ;check out the ini file to see what you want to change; ;ex-> "fSettingtoChange:Where"; Utility.SetIniFloat(INItoChange, changeto) EndEvent Event OnEffectFinish(Actor akCaster, Actor akTarget) ;I hope you remembered what the setting was set to before you mucked around; ;CHANGE IT BACK!; Utility.SetIniFloat(INItoChange, default) EndEvent if anyone has any good settings that i could change, please post them here following this convention: - SettingToChange: [Where] (default value) TY! Edited February 1, 2024 by magnet55sphere made script easier to read Link to comment Share on other sites More sharing options...
7531Leonidas Posted February 2, 2024 Share Posted February 2, 2024 IDK if it can be done, but suggest some kind of .ini backup routine BEFORE any changes are made. Link to comment Share on other sites More sharing options...
magnet55sphere Posted February 4, 2024 Author Share Posted February 4, 2024 like, in the script itself? i have no idea how to do that Link to comment Share on other sites More sharing options...
7531Leonidas Posted February 4, 2024 Share Posted February 4, 2024 Me either, it was a fail-safe suggestion. Maybe some kind of trigger for a .bat file that copies/backs up all the .ini files in a folder? I don't know how to do that, either. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now