SetINIString - Utility

Revision as of 23:18, 21 December 2018 by imported>Qazaaq

Member of: Utility Script

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

Syntax

Function SetINIString(string ini, string value) native global debugOnly

Parameters

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

Return Value

None

Examples

; Set the "sRandomSetting" in the "[CoolSettings]" section to "winner"
Utility.SetINIString("sRandomSetting:CoolSettings", "winner")

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.

See Also