Difference between revisions of "Ar Append"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
(Created)
(No difference)

Revision as of 15:21, 25 May 2014

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

A function added by the New Vegas Script Extender.

Description

Added by NVSE V4. Appends to the end of an existing list array a new element.

The list array must have been initialized prior, for example by using Ar_Construct or Ar_List. This function can not be used to add elements to map or stringmap arrays.

Syntax

[help]
(None) Ar_Append list:array element:multi

Example

array_var MyList

let MyList := Ar_Construct "array"

Ar_Append MyList, SunnySmilesREF

See Also