[dismiss]
This wiki is a copy of the original Oblivion CS wiki created and maintained by the UESP.net. See CSwiki:Copy Notice for more info.
GetNumericINISetting
Jump to navigation
Jump to search
A command for Oblivion Script Extender
Syntax:
(setting:float) GetNumericINISetting "iniSettingName:SettingHeader::string"
An alias for Con_GetINISetting. Returns the specified ini setting.
iniSettingName is the name of the setting as it appears in the ini file.
Subsection is the text in brackets that appears above the group to which the setting belongs. The quotes are required.
Example
short YAxis set YAxis to (GetNumericINISetting "bCrossHair:Gameplay")
Returns 0 or 1 based on whether the crosshair is enabled.
Notes[edit | edit source]
- This function can only handle settings whose name begins with 'b', 'i', 'f' or 'u', as Oblivion needs to know what type of variable it's returning and settings which do not begin with these letters could be of any variable type.
- This function is identical to the GetINISetting Console Function, and should behave as if you had called that function from the console.
- This function was not designed to be run from scripts, and so may not work as expected.