PhazeUFO

Well-Known Member
Sep 28, 2021
1,680
1,685
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
624
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,680
1,685
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
870
1,018
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
 

Ravenger6660

Active Member
Sep 14, 2017
870
1,018
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,467
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
939
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:

hiddink

Active Member
Jul 20, 2017
858
939
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
do you want a nice example of a Netori situation?

Example:

Player seduces a girl with boyfriend, she resist at first because has intellect and low perversion, with time you change her while you getting friendly with her BF , ofc, all that progress with the NPC girl should be notted and have dialogues, and events , things i don t know to do.

The woman knows that the bf and MC are friends, she tries to act like nothing is happenning with her BF , but she begins to trigger events with th -MC by phone, asking to hang out to fuck

for example, something that can be done too is having parties at their house and sneaking into the bathroom while her bf is doing something

in my single case i like to be friends with the BF bcs i like the "power" of know that i can have my way with her GF and when all is discovered i can humiliate him more

anyway something like that would be awesome for me, even more developed and with many options, i guess i ll have to wait for someone with this taste to start working on mods or maybe i need to learn and do it myself :KEK:
 

Ravenger6660

Active Member
Sep 14, 2017
870
1,018
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?
If you want everything Ravenger scenes.
If you only want certain parts then just the parts you want.

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?
I mean that I remade the scenes and added them to Ravenger scenes and Vin_base
 
  • Heart
Reactions: hiddink
3.30 star(s) 117 Votes