GetNumParts - Outfit

SKSE Member of: Outfit Script

Returns how many parts are included in the outfit.

SyntaxEdit

int Function GetNumParts() native

Return ValueEdit

The amount of parts in the outfit.

ExamplesEdit

Actor property Ralof Auto
int numberOfParts

Function OutfitParts()
	numberOfParts = Ralof.GetActorBase().getoutfit().getnumparts()
	;The above line retrieves the actor Ralof's actorbase, then gets his normal outfit,
	;and finally retrieves the amount of pieces in the outfit.
	Debug.Trace("Ralof's outfit contains " + numberOfParts + " pieces.")
EndFunction

See AlsoEdit