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
841
977
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
386
302
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
664
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
386
302
<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
 

Fuzzcat

Active Member
Oct 27, 2017
624
664
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!
Agreed.
I usually find confusing (or not too clear) what is considered hanging out and dating. For me, it's two clear different things: I hang out with friends, but I don't date them lol
In game, when hanging out casually with someone, there are scenes when the MC reacts as if the partner was a spouse/lover for example, and that throws me off.

PPS:
not only enjoy them, but also learned a lot about how the code works, as well some tricks and code simplification.

I think your mods should be part of the actual game, not just mods.
When I look at scenes to see what triggers them, I often see that Vin almost disregards the futa option, usually takes into account being male or female.
Your mods add an extra layer, and I think paying more attention to the futa aspect would attract a LOT more people to the game.
I find myself redirecting people (that looks for futa content) to LifePlay, and aside of players that didn't know about the game, the ones that do didn't knew or realize that there's a ton of futa options (to the point that, like my case, is practically most of the content thanks to custom settings -and your mods!-
 

oldtaku

Member
Apr 3, 2018
156
153
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 find manually changing in the old character settings keeps them looking how you wanted them too where the new slider settings dont. although that only solved the fat problem. short characters change height all the time and often disappear and i dont know what to do about that.
 

straydogg

Member
May 9, 2017
260
123
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
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)
300 is what it takes for pregnacy, 9 months, sooo 1000 would roughly come to be 27 months
 
3.30 star(s) 118 Votes