HasVariable

From GECK
Jump to: navigation, search


A function added by the New Vegas Script Extender.

Description

Returns true (1) if the specified object's script has a variable of the specified name. Works for any scriptable object for all variable types.

Syntax

[help]
(bool) ref.HasVariable VarName:string Parent:Object 

Example

ref rActor

if rActor.HasVariable "Waiting"
     ; Set or get it, etc
endif

; Alternatively, (or required if rActor holds a base form): 

if HasVariable "Waiting", rActor

See Also