GetINIBool - Utility
Revision as of 12:39, 13 September 2018 by imported>DAb
SKSE Member of: UI Script
Minimum required SKSE Version: 1.04.02 Member of: Utility Script
Gets a boolean INI setting's value.
SyntaxEdit
Function GetINIBool(String ini) Native Global
ParametersEdit
ini: The ini setting to get
Return ValueEdit
Returns the value of the specified boolean INI setting.
NotesEdit
This works for Bethesda created settings only, whether in Skyrim.ini, SkyrimPrefs.ini, or YourLoadedPlugin.ini. Note that, in that order, each INI will override the setting(s) of the previous INI file(s).
ExamplesEdit
Utility.GetINIBool("bEnableLogging:Papyrus") ; Get the value of "bEnableLogging" in the "[Papyrus]" section
- Toggle setting:
Utility.SetINIBool("bShowCompass:Interface", !Utility.GetINIBool("bShowCompass:Interface"))