- Found in:
- SKSE
Description
Wiki Description
Returns the Nth part of the outfit.
Caveats
Parameters
intn
Examples
Actor property Ralof Auto
int NumPart
Function Outfit()
NumPart = Ralof.GetActorBase().getoutfit().getnumparts()
while NumPart
Numpart -= 1
Form Clothing = Ralof.GetActorBase().GetOutfit().getNthPart(NumPart)
If (Clothing.IsCuirass()) ;Checks for the Cuirass Keyword.
Debug.Trace("Index " + NumPart + " is a Cuirass.")
EndIf
EndWhile
EndFunctionAuto-Generated Example
int myInt__n
Form returnedValue = myOutfit__toCallFunctionOn.GetNthPart(myInt__n)