Grim

Active Member
Aug 17, 2016
913
623
Is there any way to tone down the frequency of random events? They happen all.the.damn.time!

I went to Settings and turned down something like "scene chance" to 0.2%, the lowest possible, but i'm still being bombarbed by random events literally every second. I have to spam the "Emergency! Skip" button at the corner of the screen or else i can't cannot make even one minute in-game because of the constant random occurrences interrupting my gameplay >.>
The Scene Frequency setting won't actually reduce the amount of scenes you get hit with initially. What it does is alter the timeout duration of the scene once it triggers. So even if you reduce the scene frequency, you may still get hit with a lot of them early on until they trigger once and then timeout.

If there's certain scenes that you don't like, and you aren't averse to editing the scene files with a text editor, you can make them so they won't trigger at all. You can also change the timeout value of individual scenes this way if you don't want to alter them all globally with the Scene Frequency setting.

Edit: I should also mention that by hitting the Emergency button you're ensuring that the scene in question doesn't timeout, thereby making it trigger more frequently than it normally would. A scene typically has to finish normally for it to timeout and not trigger again for a while.
 
Last edited:

zdrapk696

New Member
Jul 11, 2021
2
0
Can someone explain to me how to use Beauty Expansion mod? I have it installed and enabled in the settings but I don't know how to use, for example, modifying the mouth
 

Tanukilord

New Member
Dec 29, 2022
5
1
The problem I am having is that none of the sex scenes work for me the moment I try to start one the game has a "fatal error" and shuts down and I have to restart the game again if I want to continue playing and I basically cannot do any of the sexual content in the game which is very annoying anyone have an idea why
 

Virgin Girl

Well-Known Member
Apr 22, 2023
1,141
859
that you can change in setting,if you set growbirth on 1. it will just grow very slow,if you set in on exsample 500 it will grow a year a day till he/she is 18 (and in the stats folder from vin_base you can change the age,of you want to have your child earlier in the game (earlier interactive) you can change 18 to 15 or younger
how to do it ?
you can grow them from baby to adult ?
 

Kucink

Newbie
Jan 9, 2023
46
9
Sometime sex scene happen outside map. Is there any way to put them back? console command? setting?
 

xDuckSx

Member
Mar 7, 2020
142
77
After installing some mods my char allways getting fat even when training etc. any way to change that?
 

larsV

Member
Jan 13, 2018
203
70
Try keep pushing the space button.... worked for me...
is it a bdsm scene? if so there should be a bdsm room, and when you want to pick a position,there should be a purple icon ,click on it and your in the bdsm room (if you don`t have installed the bdsm folder,then this will not apply,then you need to find a position that will bring you back into the room)
 

xDuckSx

Member
Mar 7, 2020
142
77
is it a bdsm scene? if so there should be a bdsm room, and when you want to pick a position,there should be a purple icon ,click on it and your in the bdsm room (if you don`t have installed the bdsm folder,then this will not apply,then you need to find a position that will bring you back into the room)
If i remember right this bug already existed even before BDSM was implemented
 
  • Like
Reactions: R0y

Cranky77

New Member
May 29, 2023
1
0
Probably me being thick, but when writing a scene how do you specify the gender of any temporary actor the scene creates, what line of code would you use?
 

Grim

Active Member
Aug 17, 2016
913
623
Probably me being thick, but when writing a scene how do you specify the gender of any temporary actor the scene creates, what line of code would you use?
You could either call generatePersonTemporary() with a preset that specifies their gender, for example:
Actor = generatePersonTemporary(fashion_model_F)

Or you can do something like this:
Code:
Actor = generatePersonTemporary()
While Actor.isMale()
    Actor = generatePersonTemporary()
Endwhile
which just generates random temporary actors in a loop until you get one that's female. Replace isMale() with isFemale() to get the opposite result.
 
Last edited:

Ravenger6660

Active Member
Sep 14, 2017
852
996
You could either call generatePersonTemporary() with a preset that specifies their gender, for example:
Actor = generatePersonTemporary(fashion_model_F)

Or you can do something like this:
Code:
Actor = generatePersonTemporary()
While Actor.isMale()
    Actor = generatePersonTemporary()
Endwhile
which just generates random temporary actors in a loop until you get one that's female. Replace isMale() with isFemale() to get the opposite result.
Code:
Actor = generatePersonTemporary()
While Actor.isMale()
    Actor = generatePersonTemporary()
Endwhile
Female or Futa
Code:
Actor = generatePersonTemporary()
While !Actor.isFemale()
    Actor = generatePersonTemporary()
Endwhile
Female only
 
3.30 star(s) 118 Votes