GetParents - EquipSlot
Revision as of 00:11, 22 October 2017 by imported>Qazaaq (added f4se member)
F4SE Member of: EquipSlot Script
Gets the parents of this equipment slot.
Syntax
EquipSlot[] Function GetParents() Native
Parameters
None
Return Value
Returns an array of this equipment slot's parent Equip Slots.
Examples
; Get the parents of this equipment slot.
EquipSlot[] slots = BothHands.GetParents()
Debug.Trace(slots)
{For each parent slot}
EquipSlot[] slots = BothHands.GetParents()
If (slots)
int index = 0
While (index < slots.Length)
Debug.Trace("Found the parent slot '" + slots[index] + "' at index " + index)
index += 1
EndWhile
Else
Debug.Trace("The parent equipment slot array is none or empty.")
EndIf
Notes
None