Difference between revisions of "Con GetINISetting"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>DragoonWraith
imported>DragoonWraith
 
Line 1: Line 1:
{{DISPLAYTITLE:con_GetINISetting}}
A command for [[:Category:Oblivion Script Extender|Oblivion Script Extender]]
A command for [[:Category:Oblivion Script Extender|Oblivion Script Extender]]


Line 16: Line 17:


*This function can only handle settings whose name begins with 'b', 'i', or 'f', 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 can only handle settings whose name begins with 'b', 'i', or 'f', 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.
*Due to limitations of the Wiki software, the title of this article, and links to it, cannot display it correctly - there is an underscore (_) in the function's name.
*This function is identical to the GetINISetting [[:Category: Console Functions|Console Function]], and should behave as if you had called that function from the console.
*This function is identical to the GetINISetting [[:Category: Console Functions|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.
*This function was not designed to be run from scripts, and so may not work as expected.

Latest revision as of 11:40, 3 June 2011

A command for Oblivion Script Extender

Syntax:

con_GetINISetting "iniSettingName:Subsection::string"

An alias for GetNumericINISetting. 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[edit | edit source]

con_GetINISetting "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', or 'f', 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.

See Also[edit | edit source]