Jump to content

What ini should I change to effect GamePlay? (Skyrim SE)


magnet55sphere

Recommended Posts

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 by magnet55sphere
made script easier to read
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...