Difference between revisions of "GetOutfit - ActorBase"
Jump to navigation
Jump to search
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) ==...") |
imported>Sagitarius22 m (→See Also) |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
'''SKSE Member of:''' [[ActorBase Script]] | '''SKSE Member of:''' [[ActorBase Script]] | ||
Get the | Get the outfit of this actor. (This function requires SKSE) | ||
== Syntax == | == Syntax == | ||
Line 30: | Line 30: | ||
</source> | </source> | ||
== See Also == | == See Also == | ||
*[[Outfit]] | |||
*[[ActorBase Script]] | *[[ActorBase Script]] | ||
*[[SetOutfit - ActorBase]] | *[[SetOutfit - ActorBase]] |
Latest revision as of 07:38, 4 June 2012
SKSE Member of: ActorBase Script
Get the outfit of this actor. (This function requires SKSE)
Syntax[edit | edit source]
Outfit Function GetOutfit(bool bSleepOutfit = false) native
Parameters[edit | edit source]
- bsleepOutfit: will return the default outfit if false, and the sleep outfit if true. (default = false)
Return Value[edit | edit source]
Returns the ActorBase's outfit.
Notes[edit | edit source]
None.
Examples[edit | edit source]
Outfit Property SleeperOutfit Auto
ActorBase pActorBase = Game.GetPlayer().GetActorBase()
if pActorBase.GetOutfit(true) == SleeperOutfit
; ...
endif