Call

From the Fallout3 GECK Wiki
Revision as of 14:25, 3 July 2014 by imported>Odessa (fixed a miscategory)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Added by NVSE V4. Calls a User Defined Function with the specified arguments, and returns its return value if it has one.

Syntax

[help]
(Multi) Call Function:UDF args:arg

Example

Call MyUDF
int iValue

let iValue := Call MyOtherUDF SunnyREF
if eval (Call MySuitableUDF)
    ; * My UDF return evaluated to true
endif

See Also