GetFormCountType
From GECK
A function added by the Lutana NVSE plugin, now part of the JIP NVSE Plugin.
Description
Returns the number of forms of a given type in an array.
JIP NVSE Plugin v40 merged Lutana NVSE plugin v19. As of JIPv40, This function's syntax was changed from Lutana v19, requiring that you pass the arrays via their IDs (set to integers) if you use the script compiler override (CO).
Syntax
(count:int) GetFormCountType formsArrayID:array type:int
Example
array_var arrForms int iType int iCount ... let iCount := GetFormCountType arrForms, iType
Example with CO
array_var arrForms int iType int iCount int iArrFormsID ... set iArrFormsID to arrForms let iCount := GetFormCountType iArrFormsID iType
Old Syntax (Lutana standalone)
(int) GetFormCountType forms:array type:int