Sasuke92

Member
May 3, 2017
308
668
Ultimately, it's like any porn game. At some point, every developer has enough of it, gets older, relationships, work, etc.
For them is only a can and not a must. We have to enjoy it as long as possible. I don't know the exact numbers, but I think it's also about money. If there is no financial support, it usually does not go on.
That's fine. He should admit to that then if he has any of those issues.

But DON'T say "i'm gonna release this soon, this month I promise, this x date" then leaves you hanging. Every. Single. Time.

That's what pisses people off the most.
 

Rickster82

Well-Known Member
Sep 10, 2017
1,360
2,857
That's fine. He should admit to that then if he has any of those issues.

But DON'T say "i'm gonna release this soon, this month I promise, this x date" then leaves you hanging. Every. Single. Time.

That's what pisses people off the most.
I guess most ppl who are pissed of supported him at PATREON.
 

ILikeTurtles420

New Member
Jun 29, 2019
6
4
I am interested in the story, I hope there will be one last update before the creator abandons the game. I will wait and see what happens...
 

Demandred32

New Member
Jan 16, 2020
13
6

Hello everyone,
I still have some work to do to get version 0.9 ready, especially with the images (editing), alone the clothing combinations with the clothes pregnant/not pregnant are around 700 renders. Also there are some problems with Nicole‘s pregnancy. So I‘ll split the update in two parts, the first one very soon, the second part at the end of February.

Maybe he thinks a month has 365 days
 

bosa43

Active Member
Oct 20, 2017
821
934

Hello everyone,
I still have some work to do to get version 0.9 ready, especially with the images (editing), alone the clothing combinations with the clothes pregnant/not pregnant are around 700 renders. Also there are some problems with Nicole‘s pregnancy. So I‘ll split the update in two parts, the first one very soon, the second part at the end of February.

Maybe he thinks a month has 365 days
He could be from Mercury where one day there is like 60 over here.
 

Knight2416

Member
Jul 16, 2017
489
941
I am not surprised, the clothes code is not pretty.
I know SAZ rewrote a lot of it in his mod file, before that it had ability to cause a lot of errors.
 

wep

OffLine
Respected User
Former Staff
Aug 16, 2016
2,899
16,828
Hi all,
An important news.

This thread is full of, more or less polite, posts against the dev for his delay again.

I would like to remember that this type of comments is in 99% of the case OT, it could easily start a flame and in some cases it could be seen as a personal attack too. We didn't delete this type of posts actively in the past, because we are not the fun police. We want all of our users to have a good time here. But game threads aren’t a place for people to just do what they want. We have a rules section.

The thread will be cleaned soon but we will take action only for the extreme cases (if any).
However in future we will enforce the rules more strictly.

Thanks
 

ghost24

Member
Jul 5, 2017
135
160
heyya guys, i gotta ask, trying the Alexis NTR route, what does the hint "stay the next weekend alone" mean? i tried skipping it, and going out with the other girls, but no new events with Davide shows up. I do have the SAZ mod installed.
 

Raknor

Member
May 12, 2019
484
236
heyya guys, i gotta ask, trying the Alexis NTR route, what does the hint "stay the next weekend alone" mean? i tried skipping it, and going out with the other girls, but no new events with Davide shows up. I do have the SAZ mod installed.
It means you don't go on ANY dates that weekend. You just skip the entire weekend masterbating.
 

ghost24

Member
Jul 5, 2017
135
160
It means you don't go on ANY dates that weekend. You just skip the entire weekend masterbating.
so i just hit the skip weekend button? does anything show up after that? cuz i tried that for like a couple of weekends, but nothing changes, might be doing smth wrong tho...i am using the cheat to mod the stats, so might have missed smth....

edit: think i got it, its the message....thanks for the help!
 
Last edited:

ChimeraIrl

Newbie
Nov 25, 2017
24
52
so i just hit the skip weekend button? does anything show up after that? cuz i tried that for like a couple of weekends, but nothing changes, might be doing smth wrong tho...i am using the cheat to mod the stats, so might have missed smth
Check the messages on your phone for one from Davide and when you start the weekend events there should 2 Alexis events. 1 is her normal one and the second is the Davide ntr one. I think that's the way to do it but either way start the weekend event.
 

Prinplup

Member
Aug 6, 2016
154
298
A few improvements to the coding style I would like to humbly suggest:

1.) Clothing should probably be expressed as a variable e.g. nicolewear = "babydoll"/"leggings"/... rather than something like
"nicolebabydollwear = true and nicolerobewear = false and ... and ...", also making it cleaner to manage clothing changes.

2.) (a and b) or (a and c) or (a and d) or (a and e) is equal to a and (b or c or d or e)

interactions.rpy is particularly tortured:

if vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolesweaterpantswear == True or vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolerobewear == True or vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolereddresswear == False and nicolebabydollwear == False and nicolesweaterpantswear == False and nicolerobewear == False


I suggest:

def mom_is_love(): return (momlove > momcorruption)
def mom_is_corrupt() : return (momcorruption > momlove)

Then the following line is equivalent:

if (nicolewear == "sweaterpants" or nicolewear == "robe" or nicolewear == "leggings") and momlove >= 60 and mom_is_love() and vlroom8momtalknight2 = True
Not surprised the update is taking a while given the need to rewrite his code - his previous clothing code was clumsy to begin with and trying to persist with the old style while adding pregnancy into the mix would be near impossible.
 
Last edited:
  • Like
Reactions: ghost24

ghost24

Member
Jul 5, 2017
135
160
A few improvements to the coding style I would like to humbly suggest:



2.) (a and b) or (a and c) or (a and d) or (a and e) is equal to a and (b or c or d or e)

interactions.rpy is particularly tortured:

if vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolesweaterpantswear == True or vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolerobewear == True or vlroom8momtalknight2 == True and momlove >= 60 and momcorruption < momlove and nicolereddresswear == False and nicolebabydollwear == False and nicolesweaterpantswear == False and nicolerobewear == False


I suggest:

def mom_is_love(): return (momlove > momcorruption)
def mom_is_corrupt() : return (momcorruption > momlove)

Then the following line is equivalent:

if (nicolewear == "sweaterpants" or nicolewear == "robe" or nicolewear == "leggings") and momlove >= 60 and mom_is_love() and vlroom8momtalknight2 = True
why not use a if else statement?

if (mom_corrupt > mom_love){
mom_status == corrupt
}
elif (mom_love>mom_corrupt){
mom_status == love
}

or smth like that, sorry if the syntax is wrong, having a jumble of languages in my head right now
 
  • Like
Reactions: Knight2416
Jul 31, 2017
47
29
why not use a if else statement?

if (mom_corrupt > mom_love){
mom_status == corrupt
}
elif (mom_love>mom_corrupt){
mom_status == love
}

or smth like that, sorry if the syntax is wrong, having a jumble of languages in my head right now
with this implementaton you will have an exeption wen love=corruption it's better to use
if (mom_corrupt > mom_love){
mom_status == corrupt
}
else{
mom_status == love
}
 
Apr 26, 2018
45
106

Hello everyone,
I still have some work to do to get version 0.9 ready, especially with the images (editing), alone the clothing combinations with the clothes pregnant/not pregnant are around 700 renders. Also there are some problems with Nicole‘s pregnancy. So I‘ll split the update in two parts, the first one very soon, the second part at the end of February.

Maybe he thinks a month has 365 days
Remember last spring when he said he would finish the game by the end of summer, and we were all joking that he probably meant the summer 2020? TBH his predictions are so waaaaaaayyyyy off target that it's hilarious. I can't even get upset when his deadlines aren't reached :p
 
3.50 star(s) 120 Votes