SetOutfit - Actor
Jump to navigation
Jump to search
Member of: Actor Script
Change the default or sleep outfit for this actor.
Syntax[edit | edit source]
Function SetOutfit(Outfit akOutfit, bool abSleepOutfit = false) native
Parameters[edit | edit source]
- akOutfit: The outfit to wear.
- abSleepOutfit: Is this the sleep outfit or the default one?
- Default: False
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Set the prisoner's outfit to rags
Prisoner.SetOutfit(RagsOutfit)
; Set the prisoner's sleep outfit to rags too
Prisoner.SetOutfit(RagsOutfit, true)