GetListForms
From GECK
A function added by the New Vegas Script Extender.
Contents
Description
Returns an array with entries matching the specified form list.
Syntax
(array) GetListForms ToMatch:formlist
Example
array_var Ammo_Forms let Ammo_Forms := GetListForms AmmoList357Magnum
This function is convenient for looping through form lists:
array_var Entry ref rForm foreach Entry <- (GetListForms SomeFormList) let rForm := *Entry ; rForm will be each form in the form list loop