SetINIString - Utility

Revision as of 10:38, 10 November 2012 by imported>JustinOther (→‎See Also: Linked SKSE INI functions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Utility Script

Sets a string INI setting's value.

SyntaxEdit

Function SetINIString(string ini, string value) native global

ParametersEdit

  • ini: The ini setting to set
  • value: The value to give it

Return ValueEdit

None

NotesEdit

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.

ExamplesEdit

; Set the "sRandomSetting" in the "[CoolSettings]" section to "winner"
Utility.SetINIString("sRandomSetting:CoolSettings", "winner")

See AlsoEdit