Ar Cat

From the Fallout3 GECK Wiki
Revision as of 16:44, 21 March 2017 by imported>Pintocat
Jump to navigation Jump to search
< [[::Category:Functions|Category:Functions]]

A function added by the Lutana NVSE plugin.

Description

Concatentates arrays, returning the combined result. JIP NVSE Plugin v40 merged Lutana NVSE plugin v19. As of JIPv40, This function's syntax was changed from Lutana v19.

Syntax

[help]
(array) ar_Cat baseArrayID:int toAddArrayID:int 

Or:

(array) pinto_Cat baseArrayID:int toAddArrayID:int


Example

array_var arrA
array_var arrB
int iArrAID
int iArrBID
...
set iArrAID to arrA
set iArrBID to arrB
let arrA := ar_Cat iArrAID iArrBID


Old Syntax (Lutana standalone)

(concatenatedArray) ar_Cat arrayToAddTo:array arrayToAdd:array

See Also

Array_Variables