Difference between revisions of "SetINIString - Utility"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Qazaaq
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]]
*[[SetINIFloat - Utility]]
*[[SetINIFloat - Utility]]
*[[GetINIInt - Utility]]
*[[SetINIInt - Utility]]
*[[SetINIInt - Utility]]
*[[GetINIString - Utility]]
*[[INI files]]
*[[INI files]]

Latest revision as of 09:38, 10 November 2012

Member of: Utility Script

Sets a string INI setting's value.

Syntax[edit | edit source]

Function SetINIString(string ini, string 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 "sRandomSetting" in the "[CoolSettings]" section to "winner"
Utility.SetINIString("sRandomSetting:CoolSettings", "winner")

See Also[edit | edit source]