Sydney2

New Member
Apr 11, 2022
4
1
Modders:
How/Can you dress someone in an outfit?
Actor2.dress(outfits_F_sports)
gives me invisible people :(
Thanks.
 

hentacle

Newbie
Sep 8, 2020
47
10
Its kinda sad that u cant perform fermdomstuff on a female or futa characters.
Would be nice too if u or ur partner could perform the hardcore stuff as a futa on a female, which right now can be only performed as male character on a female....
Is there a mod or something to fix this?
 

Pr0GamerJohnny

Conversation Conqueror
Sep 7, 2022
7,316
10,993
Modders:
How/Can you dress someone in an outfit?
Actor2.dress(outfits_F_sports)
gives me invisible people :(
Thanks.
thats because that outfit doesnt exist, unless taht's a custom of yours in the content\heavy\clothes4 folder.

all the names have to match the filenames from there, so like

Outsider-Boots_1
Pack-Leader-Jacket_1
Show-Your-Bra-High-Heels_1_F
Flutter-Shorts_1_F
etcetcetc

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:

Code:
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
 
Last edited:

Ravenger6660

Active Member
Sep 14, 2017
852
996
Modders:
How/Can you dress someone in an outfit?
Actor2.dress(outfits_F_sports)
gives me invisible people :(
Thanks.
I use a combination of forcing an actor to dress how I want randomly based on their stats.

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
 

Sydney2

New Member
Apr 11, 2022
4
1
thats because that outfit doesnt exist, unless taht's a custom of yours in the content\heavy\clothes4 folder.
It's one of the standard list of clothes in \Content\Modules\
I'd love to 'function call' them, but couldn't figure out how.

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:
Thank you. :D:D:D I would have spent ages figuring that out!!!
Actor.dressUniform(Sports) is an option too. This uses the uniforms.txt file which can be edited. Just be careful with it.
Hmmm... just speculating... compatibility be dammed :eek:, can you add your own uniforms? (Obviously the be dammed bit is A Bad IdeaTM)

Code:
If !Actor.ismale()...
Thank you :D

Attachments
Ooooh! Thank you again!
 

Sydney2

New Member
Apr 11, 2022
4
1
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
 

JoleenStar

Active Member
Sep 29, 2017
906
1,454
One criticism I always had in this game is that no event or whatever ever felt like it has any real impact. It happens, disappears, and 99.9% of the time, didn't matter at all.
 
  • Like
Reactions: Spamwise

Icebird

Member
Sep 22, 2017
379
275
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
Maybe your code should look like this:
Code:
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
 

FrogComet

New Member
Aug 23, 2016
6
5
If i wanted to download some new clothing and animations and additional content for this game, where would I find that stuff? New to this kinda thing but this game has unlimited potential holy wow
 

pencilfight

Newbie
Nov 9, 2018
48
114
- If a character (NPC or PC) gets impregnated by a horse, she'll have a noticeably bigger belly during the pregnancy
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?

(yes I know about the text file but adjusting the "Genesis8Female__PBMPregnant" value doesn't do anything anymore)
 
3.30 star(s) 118 Votes