SetINIInt - Utility
Revision as of 12:53, 3 December 2015 by imported>Plplecuyer
Member of: Utility Script
Sets an integer INI setting's value.
Syntax
Function SetINIInt(string ini, int value) native global debugOnly
Parameters
- ini: The ini setting to set
- value: The value to give it
Return Value
None
Examples
; Set the "iRandomSetting" in the "[CoolSettings]" section to 5
Utility.SetINIInt("iRandomSetting:CoolSettings", 5)
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.