GetOutfit - ActorBase

From the CreationKit Wiki
Revision as of 07:38, 4 June 2012 by imported>Sagitarius22
Jump to navigation Jump to search

SKSE Member of: ActorBase Script

Get the outfit of this actor. (This function requires SKSE)

Syntax

Outfit Function  GetOutfit(bool bSleepOutfit = false) native

Parameters

  • bsleepOutfit: will return the default outfit if false, and the sleep outfit if true. (default = false)

Return Value

Returns the ActorBase's outfit.

Notes

None.

Examples

Outfit Property SleeperOutfit Auto

ActorBase pActorBase = Game.GetPlayer().GetActorBase()
if pActorBase.GetOutfit(true) == SleeperOutfit
; ...
endif

See Also