Difference between revisions of "SetINIInt - Utility"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>JLundin
imported>Qazaaq
Line 31: Line 31:
*[[SetINIFloat - Utility]]
*[[SetINIFloat - Utility]]
*[[SetINIString - Utility]]
*[[SetINIString - Utility]]
*[[INI files]]

Revision as of 13:51, 16 February 2012

Member of: Utility Script

Sets an integer INI setting's value.

Syntax

Function SetINIInt(string ini, int 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 "iRandomSetting" in the "[CoolSettings]" section to 5
Utility.SetINIInt("iRandomSetting:CoolSettings", 5)

See Also