SetINIFloat - Utility

Member of: Utility Script

Sets a float value in the Fallout 4 Initialization Files (.ini).

SyntaxEdit

Function SetINIFloat(string ini, float value) native global debugOnly

ParametersEdit

  • ini: The .ini setting name and section. For example, fSettingName:SectionName.
  • value: The float value to assign the setting.

Return ValueEdit

None

ExamplesEdit

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

NotesEdit

This function can only change the values of pre-defined ini settings in Fallout4.ini and Fallout4Prefs.ini and only during the current game session. It cannot create new settings and does not save them to an ini file. There is also no guarantee the game will ever read the value again past initial load, so changing it may have no effect.

See AlsoEdit