straydogg

Member
May 9, 2017
260
127
I detest the sex function where you are now forced to use a position that your partner prefers, And if you don't, they aren't hard/wet enough to go faster. I just want to pick the animation I like most and ramp up the speed on it. I haven't seen an option to disable this function. Can this function be disabled? and if so, how?
when playing press Esc, bringup where u can save, go to settings, waaay at the bottom it says AI Only Suggests, and put a check mark in it and u have full command to what ever pose ya pick
 
  • Like
Reactions: Heart-Productions

MrMike

Newbie
May 3, 2018
37
7
Hi, i have a Problem with Faster Children aging (set in Settings much higher to make them Grow up faster)... It doesnt Stop at the desired Full Age (e.g. 18 or whatever set in the age.lpstat
Does anyone have that too? Its annoying and dont know how to stop/fix that.
I want them normal aging when they have reached the desired Full Age.

Ok, figured it out. Was setting the Agingscale too high it seems.
 
Last edited:

Grim

Active Member
Aug 17, 2016
911
621
Anyone know if Vinfamy has uploaded the source for 4.0+ anywhere? The one linked in his github is 3.19
 

Stormaggeddon

Newbie
Aug 2, 2020
32
12
Those temperatures sound are outright dangerous :(.

That said playing on a smaller map - Bath is included by default, but Monaco, Pre-Saint-Gervais and West New York are all even smaller - and using the 'classic map graphics' option will help a lot. And in the options (Esc->Settings once a game is started/loaded) turning down PP Quallity, AA Quality, Shadow Quality and reducing Toon Shading Depth will also save some CPU/GPU cycles. It may well not be enough but worth trying if you are interested.
Yea I will have to give that a try. I might also try under volting my my CPU and see if that helps.
 

Kaiww

Member
Jul 8, 2018
148
81
Code:
WHO: Actor = getCompanion(); If !Actor.isRelative() && Random(70, 200) < Actor:perversion && Random(-90, -50) > Actor:masochist && !Actor.isDating() && !Actor.isSameGender(Player)
OTHER: isModEnabled(vin_NonConsensual) && pornfame == 0 && Player.isInterestedIn(Actor) && karma < 50
Look like a companion is the one who triggers it.


I decided to make some edits and create a new scene for you.
Code:
WHAT: all, -go_to_the_bathroom
WHERE: bar, nightclub
WHEN: 21 - 4
WHO: Actor = generatePersonTemporary(); if Player.isInterestedIn(Actor) && Random(70, 100) < Actor:perversion && Random(-90, -50) > Actor:masochist && !Actor.isSameGender(Player)
OTHER: isModEnabled(vin_NonConsensual) && pornfame == 0 && !isWithCompanion() && Random(40, 80) < attractiveness && Random(2, 50) > karma
Place inside " LifePlay\Content\Modules\vin_Base\Scenes\sexwork "

Hey Ravenger,

i must admit that i am not able to read the code, can u axplain for dummies what are the old requirements and the one with your mod to geht forced into adult industry. Never was able to trigger it and i realy tried.

I have figured out that you need to be at a bar or nightclub and to visit the bathrom and here it ends.
Do i need a company, do they have to be related and what stats do i need ?

Thx in advanced and sorry if i do ask sutpid questions ;)
 

Hinatsukino

Newbie
Jul 15, 2018
71
34
I've been seeing this game for a long time. Played it every now-and-again. Is there a loli/shota mod anywhere for it?
 

Fuzzcat

Active Member
Oct 27, 2017
624
664
Hey Ravenger,

i must admit that i am not able to read the code, can u axplain for dummies what are the old requirements and the one with your mod to geht forced into adult industry. Never was able to trigger it and i realy tried.

I have figured out that you need to be at a bar or nightclub and to visit the bathrom and here it ends.
Do i need a company, do they have to be related and what stats do i need ?

Thx in advanced and sorry if i do ask sutpid questions ;)
Coding is a matter of logic, is not that hard.
That's what a coder would said!

But yeah, just use some logic, don't try to understand the exact details. There's a huge guide to mod, which might sound complicated and will get you lost half the time if you're a tech-impaired (like me).

From what I learned (me not coder), and please, correct me any dev/modder if I'm wrong:

WHO: Actor = getCompanion() [pretty obvious]; If !Actor.isRelative() [the ! are sort of warnings in case whatever is with it. Actor is the other character not you, so if the other actor is a relative, then no scene] && Random(70, 200) < Actor: perversion [random roll between 70 and 200 has to be less than the actor-not-relative perversion stat] && Random(-90, -50) > Actor:masochist [random roll between -90 and -50 has to be more than the actor-not-relative masochist stat] && !Actor.isDating() && !Actor.isSameGender(Player) [warnings about being in a date and the actor-not-relative being your same gender, thus no gay rape]
So, if I understood correctly, you need to be alone, and the game creates a non-relative of the same sex, then rolls perversion and masochist to see if the requirements are met. The character has better chances of triggering with really high perversion and sadism -or negative masochism-.
OTHER: isModEnabled(vin_NonConsensual) && pornfame == 0 && Player.isInterestedIn(Actor) && karma < 50
The basic mod Vin_noncon needs to be enabled, your pornfame needs to be zero, and your karma needs to be 50 or less.

Ravenger's scene:
has better chances of triggering (just look at the numbers he wrote, compared to the ones I've explained and you'll get it), it triggers on any "WHAT" you're doing except the bathroom action (note the - next to it), happens on Bars and Nightclubs from 21 (9pm) to 4 (4am) hours. It also features a lot more content with a revenge option!

Note:
Ravenger tends to do scenes for people playing males, some females and no shemales, mostly dominant and with lots of payback lol (so if you're thinking on playing a submissive character, gay, a shemale orany combination, then his scenes rarely trigger, despite being really cool, dammit)

So, to answer your question:
Be alone, at a Bar or Nightclub, use any actions NOT going to bathroom, from 21 to 4 hs, and have low Karma.


Aside of all that blurb of textwall, open any scene, (a text editor does the trick. Any.), and look for "Time out" which is a sort of cooldown.
For some reason, it is usually set at 1000... which is time.
Not sure it is hours or days, but yeah, as you're thinking, it takes AGES for certain scenes to trigger (consider that also certain scenes trigger, but the requirements aren't met... and start the countdown again), which is why some people think they don't work, or that there's barely any content.
Just edit the fuck out of it, to 100 or 10, save, and try (always do a backup of the scene)
 
Last edited:
  • Like
Reactions: Kaiww

Kaiww

Member
Jul 8, 2018
148
81
Coding is a matter of logic, is not that hard.
That's what a coder would said!

But yeah, just use some logic, don't try to understand the exact details. There's a huge guide to mod, which might sound complicated and will get you lost half the time if you're a tech-impaired (like me).

From what I learned (me not coder), and please, correct me any dev/modder if I'm wrong:

WHO: Actor = getCompanion() [pretty obvious]; If !Actor.isRelative() [the ! are sort of warnings in case whatever is with it. Actor is the other character not you, so if the other actor is a relative, then no scene] && Random(70, 200) < Actor: perversion [random roll between 70 and 200 has to be less than the actor-not-relative perversion stat] && Random(-90, -50) > Actor:masochist [random roll between -90 and -50 has to be more than the actor-not-relative masochist stat] && !Actor.isDating() && !Actor.isSameGender(Player) [warnings about being in a date and the actor-not-relative being your same gender, thus no gay rape]
So, if I understood correctly, you need to be alone, and the game creates a non-relative of the same sex, then rolls perversion and masochist to see if the requirements are met. The character has better chances of triggering with really high perversion and sadism -or negative masochism-.
OTHER: isModEnabled(vin_NonConsensual) && pornfame == 0 && Player.isInterestedIn(Actor) && karma < 50
The basic mod Vin_noncon needs to be enabled, your pornfame needs to be zero, and your karma needs to be 50 or less.

Ravenger's scene:
has better chances of triggering (just look at the numbers he wrote, compared to the ones I've explained and you'll get it), it triggers on any "WHAT" you're doing except the bathroom action (note the - next to it), happens on Bars and Nightclubs from 21 (9pm) to 4 (4am) hours. It also features a lot more content with a revenge option!

Note:
Ravenger tends to do scenes for people playing males, some females and no shemales, mostly dominant and with lots of payback lol (so if you're thinking on playing a submissive character, gay, a shemale orany combination, then his scenes rarely trigger, despite being really cool, dammit)

So, to answer your question:
Be alone, at a Bar or Nightclub, use any actions NOT going to bathroom, from 21 to 4 hs, and have low Karma.


Aside of all that blurb of textwall, open any scene, (a text editor does the trick. Any.), and look for "Time out" which is a sort of cooldown.
For some reason, it is usually set at 1000... which is time.
Not sure it is hours or days, but yeah, as you're thinking, it takes AGES for certain scenes to trigger (consider that also certain scenes trigger, but the requirements aren't met... and start the countdown again), which is why some people think they don't work, or that there's barely any content.
Just edit the fuck out of it, to 100 or 10, save, and try (always do a backup of the scene)

Wow,

thx you for the amount of time, you have spend, to explaine to me the code in this amount of detail.
Because i really did start to think i am getting old, back in the day i could easly mod troop stats for Mount and Blade or the Galaxy Map for Empire at War but i could not see how the scene code was coming togther, now i do at least begin to grasp it.

By the way, my respect do the dev and all modders that can write such code lines without a spread cheat, i think i could not. ;)

As far as i understand it, i could remove the "If !Actor.isRelative()" from the original event line and it would work with a dau....distant cousin....? ;)

I see very intresting possibilities at the Horizon ....."muhahahha"

again thank you fuzzcat but i strongly predict that someone will not like the time i will invest digging into scenes now ^^
 

Deleted member 289409

Active Member
Nov 12, 2017
680
871
Hey Ravenger,

i must admit that i am not able to read the code, can u axplain for dummies what are the old requirements and the one with your mod to geht forced into adult industry. Never was able to trigger it and i realy tried.

I have figured out that you need to be at a bar or nightclub and to visit the bathrom and here it ends.
Do i need a company, do they have to be related and what stats do i need ?

Thx in advanced and sorry if i do ask sutpid questions ;)
WHO: Actor = getCompanion() [pretty obvious]; If !Actor.isRelative() [the ! are sort of warnings in case whatever is with it. Actor is the other character not you, so if the other actor is a relative, then no scene] && Random(70, 200) < Actor: perversion [random roll between 70 and 200 has to be less than the actor-not-relative perversion stat] && Random(-90, -50) > Actor:masochist [random roll between -90 and -50 has to be more than the actor-not-relative masochist stat] && !Actor.isDating() && !Actor.isSameGender(Player) [warnings about being in a date and the actor-not-relative being your same gender, thus no gay rape]
So, if I understood correctly, you need to be alone, and the game creates a non-relative of the same sex, then rolls perversion and masochist to see if the requirements are met. The character has better chances of triggering with really high perversion and sadism -or negative masochism-.
OTHER: isModEnabled(vin_NonConsensual) && pornfame == 0 && Player.isInterestedIn(Actor) && karma < 50
The basic mod Vin_noncon needs to be enabled, your pornfame needs to be zero, and your karma needs to be 50 or less.
Close but you need to be with a companion who is not a relative, is not someone your char is dating (gf, bf, wife or husband) and not the same gender. And they have to be able to pass the stat checks.

!Actor.isDating checks to see if the current companion is your chars SO if they are then no scene.

Aside of all that blurb of textwall, open any scene, (a text editor does the trick. Any.), and look for "Time out" which is a sort of cooldown.
For some reason, it is usually set at 1000... which is time.
Not sure it is hours or days
Hours
 
Last edited:

Deleted member 289409

Active Member
Nov 12, 2017
680
871
holy shit was so interested in trying this game but dont think I should play it since the temps for my GPU was 80-85 deg Celsius and CPU temps were 70-75 deg Celsius. I mean my computer is a little bit older but even for more graphic intense games they don't reach that high.
Sounds like your PC needs to be cleaned and maybe even needs the fans replaced. I'd take it to a respectable PC shop if you have one in town and have them take a look.
 

Ravenger6660

Active Member
Sep 14, 2017
851
996
Note:
Ravenger tends to do scenes for people playing males, some females and no shemales, mostly dominant and with lots of payback lol (so if you're thinking on playing a submissive character, gay, a shemale or any combination, then his scenes rarely trigger, despite being really cool, dammit)
One reason for that is because I had a small issue with playing a female/Futa character that would crash my game for a long while till it was finally fixed.

The second reason is I'm a guy and it hard to come up with ideas for female character, other than making them a voyeur to their brother's sexual exploits.
 
3.30 star(s) 118 Votes