SetINIFloat - Utility

Member of: Utility Script

Sets a float INI setting's value.

SyntaxEdit

Function SetINIFloat(string ini, float value) native global

ParametersEdit

  • ini: The ini setting to set
  • value: The value to give it

Return ValueEdit

None

NotesEdit

This function can only change the values of pre-defined ini settings in Skyrim.ini and SkyrimPrefs.ini and only during the current game session. It cannot create new settings and does not save them to an ini file.

ExamplesEdit

; Set the "fRandomSetting" in the "[CoolSettings]" section to 10
Utility.SetINIFloat("fRandomSetting:CoolSettings", 10.0)

See AlsoEdit