Difference between revisions of "Call"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
(created)
 
imported>Odessa
(fixed a miscategory)
 
Line 32: Line 32:
*[[Eval]]
*[[Eval]]
[[Category:Functions_(NVSE)]]
[[Category:Functions_(NVSE)]]
[[Category:Array Variables]]
[[Category:User Defined Functions]]

Latest revision as of 13:25, 3 July 2014

< [[::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