- Mar 31, 2018
- 159
- 23
thats because that outfit doesnt exist, unless taht's a custom of yours in the content\heavy\clothes4 folder.Modders:
How/Can you dress someone in an outfit?
Actor2.dress(outfits_F_sports)
gives me invisible people
Thanks.
CurrentCompanion.strip()
"Which outfit should <CurrentCompanion.name> wear?"
0:: "Sporty"
1:: "Slutty"
2:: "Classy"
3:: "Innocent"
4:: "Keep current"
If 0
CurrentCompanion.dress(Sports-Uniform-Shoes_1_F, Print-Leg-Warmers_1_F, LilFlame-Xxl-Shirt_1_F)
Elseif 1
CurrentCompanion.dress(French-Maid-Stockings_1_F, Show-Your-Bra-High-Heels_1_F, Kimono-Lingerie_1_F)
Elseif 2
CurrentCompanion.dress(Fashion-Office-Heels_1_F, Office-Outfit-Skirt_1_F, Office-Uniform-Top_1_F)
Elseif 3
CurrentCompanion.dress(Fa-Shoes_1_F, Flutter-Shorts_1_F, Strappy-Top_1_F)
Else
CurrentCompanion.dress()
Endif
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.
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
It's one of the standard list of clothes in \Content\Modules\thats because that outfit doesnt exist, unless taht's a custom of yours in the content\heavy\clothes4 folder.
Thank you.Furthermore, I've found it seems to only handle 3 arguments per dress line. As an example - here's what a segment of my own custom-dress up decision script looks like:
Hmmm... just speculating... compatibility be dammedActor.dressUniform(Sports) is an option too. This uses the uniforms.txt file which can be edited. Just be careful with it.
Thank youCode:If !Actor.ismale()...
Ooooh! Thank you again!Attachments
Hi, all flies in to modules folderwhere would i put this file?
would I extract and just put it in that folder or would i have to put it in a specific one?Hi, all flies in to modules folder
you can`t it is a bug that hopefully will be fix in a update soonHow do I fix weird glitches like the bottom left map corner flickering, or people disappearing during sex?
Maybe your code should look like this:How do you access the wears_glasses and is_virgin variables?
Actor.setVirgin(true) is in fantasy_virgin_tribute.lpscene, but I can't get it to work:
Actor.setVirgin(true)
if actor.isvirgin()
"Hymenoplasty FTW"
else
"Damn hairbrush!"
endif
If Random(0,100)>50 && Actor.isValid() && !Actor.isTemporary() && !Actor.hadSex() && !Actor.hasRelationship(Child) && !Actor.isPregnant()
Actor.setVirgin(true)
EndIf
if actor.isvirgin()
"Hymenoplasty FTW"
else
"Damn hairbrush!"
endif
You have a .txt file with the instructions in the folder.anyway to lower the graphic for weak pc?
Just drop all files in to LifePlay\Content\Modules ,do not put the files in to any other folder within the Modules folder.would I extract and just put it in that folder or would i have to put it in a specific one?
Is there a way to actually adjust this value or is it buried in the base game code along with the regular pregnancy morph settings?- If a character (NPC or PC) gets impregnated by a horse, she'll have a noticeably bigger belly during the pregnancy
couldn't find it, can you please explain better?You have a .txt file with the instructions in the folder.