Kassan06969

Well-Known Member
Apr 14, 2022
1,679
2,463
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
927
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,351
1,296
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
927
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
596
458
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,351
1,296
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
822
957
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
 

hiddink

Active Member
Jul 20, 2017
858
927
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
 

Ravenger6660

Active Member
Sep 14, 2017
822
957
Sorry to ask: What is that other stuff? Where to read about it - where to download?
These require BP
New GoodBye {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2646209} [I've made my own at this point]
Party And Nightlife {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2870332} [I've made my own at this point]

These don't need BP
Beauty Expansion (Plastic Surgery) {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2609399} [not the best]
NO MORE YOUTUBE {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2659408} [I still use this.]

Vinfamy added this to the game as well I think.
Weight & Fitness {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2702923}
 

Kassan06969

Well-Known Member
Apr 14, 2022
1,679
2,463
These require BP
New GoodBye {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2646209} [I've made my own at this point]
Party And Nightlife {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2870332} [I've made my own at this point]

These don't need BP
Beauty Expansion (Plastic Surgery) {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2609399} [not the best]
NO MORE YOUTUBE {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2659408} [I still use this.]

Vinfamy added this to the game as well I think.
Weight & Fitness {https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-2702923}

The New Goodbye works perfectly fine without BP. I have it and have BP unchecked. Works the same as before.
 

hiddink

Active Member
Jul 20, 2017
858
927
https://f95zone.to/threads/lifeplay-v5-2-vinfamy.11321/post-4138623

Don't worry I just updated my mod.

When meeting new people their is a chance they have 'unnatural colored hair', Interracial stats, special stats, and they can have GF or BF already.
My man, im having troubles trying to understand all, because i didn t mod any game until now, what you said in your post is that i have to download your Scenes file but you also have all Vin_mods posted individually, what should i download?

When you say "I've made my own at this point" what do you mean? are they included in the Ravenger scenes or where are they?
 
Last edited:
3.30 star(s) 117 Votes