- Sep 14, 2017
- 848
- 993
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.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
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