SetINIFloat - Utility

Revision as of 15:16, 26 October 2011 by imported>Jlundin (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Utility Script Sets a float INI setting's value. == Syntax == <source lang="papyrus"> Function SetINIFloat(stri...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Utility Script

Sets a float INI setting's value.

Syntax

Function SetINIFloat(string ini, float value) native global

Parameters

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

Return Value

None

Examples

; Set the "fRandomSetting" in the "[CoolSettings]" section to 10
Utility.SetINIFloat("fRandomSetting:CoolSettings", 10.0)

See Also