hyfka

Active Member
08.03.2021
548
829
How do I fix weird glitches like the bottom left map corner flickering, or people disappearing during sex?
 

Sydney2

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

hentacle

Newbie
08.09.2020
48
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
07.09.2022
7 608
11 489
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:

Код:
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
 
Последнее редактирование:
3,30 звёзд 118 Votes