Difference between revisions of "SetINIFloat - Utility"
Jump to navigation
Jump to search
imported>JustinOther m (→See Also: Linked SKSE INI functions) |
imported>Matthiaswagg m (Removed the extra bracket from the See Also links.) |
||
Line 30: | Line 30: | ||
*[[GetINIBool - Utility]] | *[[GetINIBool - Utility]] | ||
*[[SetINIBool - Utility]] | *[[SetINIBool - Utility]] | ||
*[[GetINIFloat - Utility | *[[GetINIFloat - Utility]] | ||
*[[GetINIInt - Utility]] | *[[GetINIInt - Utility]] | ||
*[[SetINIInt - Utility]] | *[[SetINIInt - Utility]] |
Latest revision as of 01:06, 25 August 2014
Member of: Utility Script
Sets a float INI setting's value.
Syntax[edit | edit source]
Function SetINIFloat(string ini, float value) native global
Parameters[edit | edit source]
- ini: The ini setting to set
- value: The value to give it
Return Value[edit | edit source]
None
Notes[edit | edit source]
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.
Examples[edit | edit source]
; Set the "fRandomSetting" in the "[CoolSettings]" section to 10
Utility.SetINIFloat("fRandomSetting:CoolSettings", 10.0)