Difference between revisions of "SetINIFloat - Utility"
Jump to navigation
Jump to search
imported>Qazaaq (→See Also: added INI files) |
imported>JustinOther m (→See Also: Linked SKSE INI functions) |
||
Line 28: | Line 28: | ||
== See Also == | == See Also == | ||
*[[Utility Script]] | *[[Utility Script]] | ||
*[[GetINIBool - Utility]] | |||
*[[SetINIBool - Utility]] | *[[SetINIBool - Utility]] | ||
*[[GetINIFloat - Utility]]] | |||
*[[GetINIInt - Utility]] | |||
*[[SetINIInt - Utility]] | *[[SetINIInt - Utility]] | ||
*[[GetINIString - Utility]] | |||
*[[SetINIString - Utility]] | *[[SetINIString - Utility]] | ||
*[[INI files]] | *[[INI files]] |
Revision as of 09:38, 10 November 2012
Member of: Utility Script
Sets a float INI setting's value.
Syntax
Function SetINIFloat(string ini, float value) native global
Parameters
- ini: The ini setting to set
- value: The value to give it
Return Value
None
Notes
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
; Set the "fRandomSetting" in the "[CoolSettings]" section to 10
Utility.SetINIFloat("fRandomSetting:CoolSettings", 10.0)