Difference between revisions of "AuxiliaryVariableSetFloat"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>DoctaSax
m (corrected example (parameter order))
imported>DoctaSax
(Undo revision 24708 by DoctaSax (talk))
 
Line 24: Line 24:
  |example = RaulRef.AuxiliaryVariableSetFloat "someVarName" -307.485
  |example = RaulRef.AuxiliaryVariableSetFloat "someVarName" -307.485


  AuxVarSetFlt "someVarName" -1 102031 ArmorCombat
  AuxVarSetFlt "someVarName" 102031 -1 ArmorCombat
}}
}}
==See Also==
==See Also==
[[Category:Functions_(JIP)]]
[[Category:Functions_(JIP)]]
[[Category:Auxiliary-Variable Functions (JIP)]]
[[Category:Auxiliary-Variable Functions (JIP)]]

Latest revision as of 12:57, 14 March 2017

< [[::Category:Functions|Category:Functions]]

A function added by the JIP NVSE Plugin.

Description

Sets the float value of the element at the specified index (optional; default is 0) of the specified Auxiliary-Variable. If index equals -1, the value will be appended as a new element, at the end.

Syntax

[help]
(success:bool) reference.AuxiliaryVariableSetFloat varName:string value:float index:int baseForm:ref 

Or:

(success:bool) reference.AuxVarSetFlt varName:string value:float index:int baseForm:ref

Example

RaulRef.AuxiliaryVariableSetFloat "someVarName" -307.485
AuxVarSetFlt "someVarName" 102031 -1 ArmorCombat

See Also