SetVariable
From GECK
A function added by the New Vegas Script Extender.
Contents
Description
Sets the value of the numeric variable specified by name for the calling reference or specified scriptable object.
Syntax
(none) ref.SetVariable VarName:string NewValue:float Parent:Object
Example
ref rCompanion rCompanion.SetVariable "Waiting", 1 ; Alternatively, (or required if rCompanion holds a base form, such as a quest): SetVariable "Waiting", 1, rCompanion
See Also
- SetRefVariable (To set a ref rather than numeric var)
- HasVariable (to check if a variable exists at all)
- GetVariable (to return the existing value)
- GetRefVariable (For ref rather than numeric variables)
- GetArrayVariable (and for arrays)
- Associating data with a reference