Ravenger6660
Active Member
- Sep 14, 2017
- 866
- 1,013
I use a combination of forcing an actor to dress how I want randomly based on their stats.Modders:
How/Can you dress someone in an outfit?
Actor2.dress(outfits_F_sports)
gives me invisible people
Thanks.
Actor.dressUniform(Sports) is an option too. This uses the uniforms.txt file which can be edited. Just be careful with it.
You don't have permission to view the spoiler content.
Log in or register now.
Code:
If !Actor.ismale()
if Actor:perversion > 42 || Actor:arousal > 42
Random
Actor.dress(Stylish-Workout-Top_1_F, Stylish-Workout-Bottom_1_F)
Actor.dress(Mtt-Gymwear-Pantie_1_F, Mtt-Gymwear-Top_1_F, Mtt-Print-Shorts_1_F)
Actor.dress(Gymwear-Shorts_1_F, Gym-Brat-Top_1_F)
Actor.dress(Gymwear-Shorts_1_F, Active-Wear-Sports-Bras_1_F)
Actor.dress(Jmr-Sports-Bra_1_F, Jmr-Sports-Panties_1_F)
Endrandom
Else
Random
Actor.dress(Stylish-Workout-Jacket_1_F, Stylish-Workout-Top_1_F, Stylish-Workout-Bottom_1_F)
Actor.dress(Mtt-Gymwear-Top_1_F, Mtt-Print-Shorts_1_F)
Actor.dress(Gym-Brat-Bra_1_F, Gym-Brat-Pants_1_F, Gym-Brat-Top_1_F)
Actor.dress(Gymwear-Shirt_1_F, Active-Wear-Gym-Pants_1_F)
Actor.dress(Sport-Pants_1_F, Sports-Bra-Top_1_F)
Endrandom
Endif
Else
Actor.dressUniform(Sports)
Endif