Difference between revisions of "SetINIInt - Utility"
Jump to navigation
Jump to search
imported>Jlundin (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Utility Script Sets an integer INI setting's value. == Syntax == <source lang="papyrus"> Function SetINIInt(str...") |
imported>Threedee |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 16: | Line 16: | ||
== Return Value == | == Return Value == | ||
None | 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 == | == Examples == | ||
Line 25: | Line 28: | ||
== See Also == | == See Also == | ||
*[[Utility Script]] | *[[Utility Script]] | ||
*[[GetINIBool - Utility]] | |||
*[[SetINIBool - Utility]] | *[[SetINIBool - Utility]] | ||
*[[GetINIFloat - Utility]] | |||
*[[SetINIFloat - Utility]] | *[[SetINIFloat - Utility]] | ||
*[[GetINIInt - Utility]] | |||
*[[GetINIString - Utility]] | |||
*[[SetINIString - Utility]] | *[[SetINIString - Utility]] | ||
*[[INI files]] |
Latest revision as of 03:19, 27 April 2013
Member of: Utility Script
Sets an integer INI setting's value.
Syntax[edit | edit source]
Function SetINIInt(string ini, int 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 "iRandomSetting" in the "[CoolSettings]" section to 5
Utility.SetINIInt("iRandomSetting:CoolSettings", 5)