GetNumRefs - Cell
Revision as of 04:03, 10 May 2012 by imported>PurpleLunchbox (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Cell Script Returns the number of ObjectReferences in the Cell based on the FormType f...")
SKSE Member of: Cell Script
Returns the number of ObjectReferences in the Cell based on the FormType filter. (This function requires SKSE)
Syntax
int Function GetNumRefs(int formTypeFilter = 0) native
Parameters
- formTypeFilter: FormType filter to return the number of a specific form type see Form - GetType for a list of FormTypes
Return Value
Returns the number of ObjectReferences in the Cell based on the FormType filter.
Notes
- Using a filter type of zero results in returning all object references in the cell.
- If using a filter type make sure to use the same filter when retrieving the references.
Examples
int numFlora = Cell.GetNumRefs(39) ; kFlora = 39
int index = 0
While index < numFlora
ObjectReference objRef = Cell.GetNthRef(index, 39)
Debug.Trace("Flora Found in cell: " + objRef)
index += 1
EndWhile