hiddink

Active Member
Jul 20, 2017
858
939
mods are all compatible
But if content or scenes the same in different mods then one will over write the other.
Mod manager dictates the order scenes are replaced. Bottom of list for newest mods.

Better_Pregnancy mod No. Too old.
Fuck are you kidding me? i just download and installed better pregnancy and it doesn t seem to work bad ?
 

Kassan06969

Well-Known Member
Apr 14, 2022
1,679
2,466
Fuck are you kidding me? i just download and installed better pregnancy and it doesn t seem to work bad ?

It fucks up a lot of things - makes pregnancy a lot more likely and babies from NPCs are born at 18 years old. Also, most of the things it fixed were already fixed in the main game.
 
  • Like
Reactions: Coomer341

PhazeUFO

Well-Known Member
Sep 28, 2021
1,601
1,554
It fucks up a lot of things - makes pregnancy a lot more likely and babies from NPCs are born at 18 years old. Also, most of the things it fixed were already fixed in the main game.
I'm pretty sure this is bait considering the base game took from the mod. The mod came out because the base game was so bare with pregnancy. Also, the things it "fucked up" are already in the base game now.
Fuck are you kidding me? i just download and installed better pregnancy and it doesn t seem to work bad ?
It's just obsolete.
Got a scene example? NTR/NTS are not really my fetish.

If you know a porn video or can give me step by step what you want to happen.

Example:
Player hears someone in shower.
A. Spy
B. Go in
C. End scene

A1. person is masturbating
a. do you join?
b. No
b1. does person notice you?

A2. person is just taking shower
a. do you join?
b. No
b1. does person notice you?

B1. person does not kick you out
a. tease person into sex
b. rape person
c. let person make the first move?

B2. person kicks you out
If you just mean porn tier scenes, then this dude does a lot of that kind of thing
I was actually talking about adding more to what I mentioned, or continuation scenes involving it. Unlessone of the NPCs is an ntrcuck, it's just a one and done deal. The other fetishes are either like this by their nature or they are from the 3rd party mod, so I wouldn't ask to deal with it.
 

Kassan06969

Well-Known Member
Apr 14, 2022
1,679
2,466
Yeah, BP hasn't been updated in over 2 years, so most of what it did was since added to the game, but in different ways so there's conflict.
 

hiddink

Active Member
Jul 20, 2017
858
939
Guys why the people that i meet doesn t have relationships? i mean, if i meet a girl she is single always, they are only with a boyfriend if the event is triggered that's kinda dissapointing, should i meet her more to see if she introduces me her boyfriend or what?
 

PhazeUFO

Well-Known Member
Sep 28, 2021
1,601
1,554
Guys why the people that i meet doesn t have relationships? i mean, if i meet a girl she is single always, they are only with a boyfriend if the event is triggered that's kinda dissapointing, should i meet her more to see if she introduces me her boyfriend or what?
Because that is how the game is programed. Probably so you can get first dibs. You can also set NPC relationships to give her a spouse you want her to have.
 
  • Sad
Reactions: hiddink and whrae

hiddink

Active Member
Jul 20, 2017
858
939
Because that is how the game is programed. Probably so you can get first dibs. You can also set NPC relationships to give her a spouse you want her to have.
bro what, that's kinda disapointing, so all people you can meet in the game are singles if the event of couple doesn t trigger? whaaaa man as a ntori fan that sucks for real, like meeting a girl whom i don t know anything about cannot have a boyfriend only roomates and parents :WutFace::WutFace:
 

Grim

Active Member
Aug 17, 2016
913
623
bro what, that's kinda disapointing, so all people you can meet in the game are singles if the event of couple doesn t trigger? whaaaa man as a ntori fan that sucks for real, like meeting a girl whom i don t know anything about cannot have a boyfriend only roomates and parents :WutFace::WutFace:
You could create a script to pre-generate a bunch of NPCs with existing relationships. The problem with that approach is the game assumes that you've previously met any NPCs that have already been generated, so it's a bit immersion breaking.

You could possibly work around this by setting a variable on NPCs you've actually met, but you'd have to edit existing scenes to take advantage of that.
 
Last edited:
  • Like
Reactions: hiddink

PhazeUFO

Well-Known Member
Sep 28, 2021
1,601
1,554
bro what, that's kinda disapointing, so all people you can meet in the game are singles if the event of couple doesn t trigger? whaaaa man as a ntori fan that sucks for real, like meeting a girl whom i don t know anything about cannot have a boyfriend only roomates and parents :WutFace::WutFace:
You can just set the relationship as I asked. Until then, you either wait for an event or get someone to mod it as it seems it is the only way for there to be relationships. It only makes sense for there to be singles you meet unless an event since it generates NPCs upon meeting or an event.
 
  • Like
Reactions: hiddink

Ravenger6660

Active Member
Sep 14, 2017
852
996
bro what, that's kinda disapointing, so all people you can meet in the game are singles if the event of couple [doesn't] trigger? whaaaa man as a ntori fan that sucks for real, like meeting a girl whom [I don't] know anything about cannot have a boyfriend only [roommates] and parents :WutFace::WutFace:
I could edit meet_new_person & meet_customer_service it so there is a chance they already have a relationship, but you have no idea.

Code:
if New_Person:attractiontoplayer < -50
    Actor2 = generatePersonTemporary()
    While !New_Person.isInterestedIn(Actor2)
        Actor2 = generatePersonTemporary()
    Endwhile
    Actor2.makeInterested(New_Person)
    Actor2.makePermanent()
    If New_Person:age > 28
        Actor2:age => New_Person:age + Random(-10, 10)
    Else  
        Actor2:age => New_Person:age + Random(0, 10)
    Endif  
    If Actor2.isRace(Elf) || Actor2.isRace(Vampire)
        Actor2.randomizeRace()
    Endif
    Actor2.randomizeHairs()
    Actor2.randomizeFace()
    If Random(0, 100) < [New_Person:age + Actor2:age]
        addNpcRelationship(Spouses, New_Person, Actor2)
    Else
        addNpcRelationship(Dating, New_Person, Actor2)
    Endif
    If isModEnabled(vin_Polyamorous) && Random(100, 200) < [New_Person:perversion + Actor2:perversion]
        addNpcRelationship(Poly, New_Person, Actor2)
    Endif
   
Endif
 
  • Wow
Reactions: Hongfire Survivor

hiddink

Active Member
Jul 20, 2017
858
939
I could edit meet_new_person & meet_customer_service it so there is a chance they already have a relationship, but you have no idea.

Code:
if New_Person:attractiontoplayer < -50
    Actor2 = generatePersonTemporary()
    While !New_Person.isInterestedIn(Actor2)
        Actor2 = generatePersonTemporary()
    Endwhile
    Actor2.makeInterested(New_Person)
    Actor2.makePermanent()
    If New_Person:age > 28
        Actor2:age => New_Person:age + Random(-10, 10)
    Else 
        Actor2:age => New_Person:age + Random(0, 10)
    Endif 
    If Actor2.isRace(Elf) || Actor2.isRace(Vampire)
        Actor2.randomizeRace()
    Endif
    Actor2.randomizeHairs()
    Actor2.randomizeFace()
    If Random(0, 100) < [New_Person:age + Actor2:age]
        addNpcRelationship(Spouses, New_Person, Actor2)
    Else
        addNpcRelationship(Dating, New_Person, Actor2)
    Endif
    If isModEnabled(vin_Polyamorous) && Random(100, 200) < [New_Person:perversion + Actor2:perversion]
        addNpcRelationship(Poly, New_Person, Actor2)
    Endif
  
Endif
where do i paste that? sorry mate , im not modder at all nor i know basic programming
 
3.30 star(s) 118 Votes