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
662
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
826
960
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.
 

iksz

Newbie
May 18, 2020
25
6
Hello everyone,
Does anyone has a weird bug where every chubby/fat character I add to contact list reverts back to stick figure? I tried changing characters manually also, it's all ok until i do anything in the game then reverts after just one action. It's like a couple of morphs don't save. I used a couple of mods, but even if i removed them the bug was still there. Not like I miss fat characters, but who knows how many more morphs are not saving what you can't really tell at first glance. Any ideas what can cause that?
 
  • Like
Reactions: oldtaku

Deleted member 289409

Active Member
Nov 12, 2017
680
871
Hello everyone,
Does anyone has a weird bug where every chubby/fat character I add to contact list reverts back to stick figure? I tried changing characters manually also, it's all ok until i do anything in the game then reverts after just one action. It's like a couple of morphs don't save. I used a couple of mods, but even if i removed them the bug was still there. Not like I miss fat characters, but who knows how many more morphs are not saving what you can't really tell at first glance. Any ideas what can cause that?
I've only seen that happen when I have the fat morphs set at 0. It's like the game first generates them with the fat morph and then realizes the mistake and removes it. And I've only seen it with the fat morphs others don't seem to have that happen or at least I haven't seen it.
 

Scapdra1

Newbie
Feb 3, 2021
67
56
Is there a list for character tags and their effects anywhere? If someone could point me in the right direction or simply post the list here that would be appreciated.
 
Aug 8, 2017
374
294
Coding is a matter of logic, is not that hard.
<snip>, 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.

<snip>
The scene requires that you not be alone, and that your companion is someone you are interested in but not your significant other, relative, or the same gender as you. Actor is your companion, not a newly-generated NPC. Everything else in your analysis looks correct. I think you understand what '!' means, though your choice of 'warning' to describe it is a bit strange.
 

Fuzzcat

Active Member
Oct 27, 2017
624
662
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.
First of all, I really like your mods (Police one is awesome, and the reason I was asking around to change clothes textures was to make police uniforms. Luckily got solved by Vin's update. But I still would like to find a way to mod textures), I was just joking around! :D

About ideas for female and "female" characters... bah!
Don't overthink it. Noone is going to say "a woman wouldn't think that way" in a sex game lol.
Just go with it. If anything, any of your scenes could adapt for herms (because they're NOT shemales, dammit) at least, since they have both sexes.
And for full females, is not that difficult. Just think on what you'd like, and make it inverse.
You're a straight guy, that like women>a straight woman that likes guys *shrug* (I know it's a simplistic way of seeing it. But we're not talking about gender psychology, we're talking about the technical aspect of a sex game).
In any case, you don't do descriptions or write text of the sex scenes, so that's something you shouldn't worry.

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.

Hours Hum, great to know, thanks!
The scene requires that you not be alone, and that your companion is someone you are interested in but not your significant other, relative, or the same gender as you. Actor is your companion, not a newly-generated NPC. Everything else in your analysis looks correct.
I think you understand what '!' means, though your choice of 'warning' to describe it is a bit strange. You think that I think well, yeah. I just couldn't figure out an exact wording (non speak english good me)
P.D: your herm/shemale/trans scene mods are awesome. They made all the difference for me *bows*
I tend to confuse the "dating" with "real dating".
Meaning, like casually dating someone (going out or hanging out) and real dating (like a formal relationship).
Thanks for the heads up!
 
Aug 8, 2017
374
294
<snip>

I tend to confuse the "dating" with "real dating".
Meaning, like casually dating someone (going out or hanging out) and real dating (like a formal relationship).
Thanks for the heads up!
Yeah, this project has some idiosyncrasies in its vocabulary. I'm not sure how much of it is regional (I'm pretty sure Vinfamy is English) vs how much came about from the general development and extension - I suspect hanging out with someone was originally much more closely linked to forming a relationship, hence the vocab started out conflating the two.

PS. Glad to see you enjoy them!
 

fokrrk11

Member
Feb 17, 2021
184
38
You might want to save up for a gaming PC if you want to play most of the Unreal Engine or Unity games here.
The only games I know for sure that have an APK are some of the Renpy games and those are starting to become few due to the size of the games going above the limits for Android.
i will save for pc btw tnx man
 
3.30 star(s) 117 Votes