Jump to content

Gender specific outfits


Recommended Posts

I created this script and attached it to several of the LvlRaider forms:

Scriptname ChangeOutfitIfFemale extends Actor Const

Outfit Property FemaleOutfit auto const mandatory

EVENT onLoad()
    if GetLeveledActorBase().GetSex() == 1
        SetOutfit(FemaleOutfit)
    endif
endEVENT

Based on initial testing it works as expected, but I was wondering if anyone with more experience might be able to point out potential problems or unexpected (by me) consequences. Thanks.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...