Difference between revisions of "GetNumRefs - Cell"
Jump to navigation
Jump to search
imported>JustinOther (→Examples: Reworked example (kCell.CellFunction() vs. Cell.CellFunction()))) |
imported>Thynar |
||
Line 20: | Line 20: | ||
*Using a filter type of zero results in returning all object references in the cell. | *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. | *If using a filter type make sure to use the same filter when retrieving the references. | ||
*If the cell that references are called from is not loaded, non-persistent references will not be called. | |||
== Examples == | == Examples == |
Latest revision as of 09:49, 6 January 2020
SKSE Member of: Cell Script
Returns the number of ObjectReferences in the Cell based on the FormType filter. (This function requires SKSE)
Syntax[edit | edit source]
int Function GetNumRefs(int formTypeFilter = 0) native
Parameters[edit | edit source]
- formTypeFilter: FormType filter to return the number of a specific form type see GetType - Form for a list of FormTypes.
Return Value[edit | edit source]
Returns the number of ObjectReferences in the Cell based on the FormType filter.
Notes[edit | edit source]
- 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.
- If the cell that references are called from is not loaded, non-persistent references will not be called.
Examples[edit | edit source]
Function PickEveryFlowerInCell(Actor akFlowerPicker) Global
Cell kCell = akFlowerPicker.GetParentCell()
Int iIndex = kCell.GetNumRefs(39) ; kFlora = 39
While iIndex
iIndex -= 1
kCell.GetNthRef(iIndex, 39).Activate(akFlowerPicker)
EndWhile
EndFunction