X Tutup
×
Create a new article
Write your page title here:
We currently have 92,700 articles on Fallout Wiki. Type your article name above or click on one of the titles below and start writing!



Fallout Wiki
92,700Articles
☢  Independent Fallout Wiki Resources  ☢

AddArray - RefCollectionAlias

Resource:Creation Kit > AddArray - RefCollectionAlias


Member of: Resource:Creation Kit/RefCollectionAlias Script

Adds the contents of the array to this collection.

Syntax

Function AddArray(ObjectReference[] refArrayToAdd)

Parameters

  • refArrayToAdd: The array whose contents should be added

Return Value

None.

Examples

; Add the array to the collection
Ghosts.AddArray(EvenMoreGhosts)

Notes

  • A RefCollectionAlias will automatically shrink and expand its size when items are added or removed. The collection's count can be measured with the GetCount function.
  • Reference Aliases inside arrays will not be added to a collection if they are none. An error will be printed to the log if an element is none.
X Tutup