Description
Wiki Description
Sets a float value in the Fallout 4 Initialization Files (.ini).
Documentation Comment
Set the given INI by type
Caveats
CK Wiki - Notes
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.
Parameters
stringini
CK Wiki Description
The .ini setting name and section. For example, fSettingName:SectionName.
floatvalue
CK Wiki Description
The float value to assign the setting.
Examples
; Set the "fRandomSetting" in the "[CoolSettings]" section to 10
Utility.SetINIFloat("fRandomSetting:CoolSettings", 10.0)Auto-Generated Example
string myString__ini
float myFloat__value
Utility.SetINIFloat(myString__ini, myFloat__value)Related Pages
Additional References
View this function’s page on the Fallout 4 Creation Kit Wiki
