GetParents - EquipSlot

Revision as of 14:47, 21 January 2018 by imported>Qazaaq (added required f4se version)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

F4SE Member of: EquipSlot Script
Requires F4SE version 0.3.1 or higher.

Gets the parents of this equipment slot.

SyntaxEdit

EquipSlot[] Function GetParents() Native

ParametersEdit

None

Return ValueEdit

Returns an array of this equipment slot's parent Equip Slots.

ExamplesEdit

; 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


NotesEdit

None

See AlsoEdit