GetOutfit - ActorBase

From the CreationKit Wiki
Revision as of 07:38, 4 June 2012 by imported>Sagitarius22 (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' ActorBase Script Get the combat style of this actor. (This function requires SKSE) ==...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

SKSE Member of: ActorBase Script

Get the combat style 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