Difference between revisions of "SetNumericINISetting"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>WereWolf
imported>QQuix
(Fixed the description)
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:
  (nothing) SetNumericINISetting "iniSettingName:SettingHeader::string" value:float
  (nothing) SetNumericINISetting "iniSettingName:SettingHeader::string" value:float


Returns the specified ini setting.
Sets the specified ini setting to the following variable or direct value.


'''Example'''
'''Example'''
Line 16: Line 16:


==See Also==
==See Also==
* [[Con_GetINISetting]]
* [[GetNumericINISetting]]
* [[GetNumericINISetting]]
* [[GetGameSetting]]
* [[GetGameSetting]]

Latest revision as of 03:36, 27 January 2016

A command for Oblivion Script Extender

Syntax:

(nothing) SetNumericINISetting "iniSettingName:SettingHeader::string" value:float

Sets the specified ini setting to the following variable or direct value.

Example

SetNumericINISetting "bInvertYValues:Controls" 1

Notes[edit | edit source]

  • The quotes are required
  • This function is similar to the SetINISetting Console Function, however it is limited to numeric settings, and may not work with all settings.
    • Known not to work with:
      1. Volume slider settings

See Also[edit | edit source]