SetOutfit - Actor

Member of: Actor Script

Change the default or sleep outfit for this actor.

SyntaxEdit

Function SetOutfit(Outfit akOutfit, bool abSleepOutfit = false) native

ParametersEdit

  • akOutfit: The outfit to wear.
  • abSleepOutfit: Is this the sleep outfit or the default one?
    • Default: False

Return ValueEdit

None.

ExamplesEdit

; Set the players outfit to rags.
Game.GetPlayer().SetOutfit(PrisonerRagsOutfit)


; Set the players sleep outfit to rags too.
Game.GetPlayer().SetOutfit(PrisonerRagsOutfit, true)

See AlsoEdit