- Found in:
- SKSE
Description
Wiki Description
Returns the ObjectReference at the Nth index in the Cell based on the FormType filter. (This function requires SKSE)
Documentation Comment
returns the ref at the specified index
Caveats
CK Wiki - 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 determining the maximum amount.
- If the cell that references are called from is not loaded, non-persistent references will not be called.
Parameters
intn
CK Wiki Description
The index at which the ObjectReference is located in the Cell with respect to the FormType filter.
Examples
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
EndFunctionAuto-Generated Example
int myInt__n
int myInt__formTypeFilter
ObjectReference returnedValue = myCell__toCallFunctionOn.GetNthRef(myInt__n, myInt__formTypeFilter)Related Pages
- Cell
- Cell.GetNumRefs(...)
- Form.GetType()
