4.10 star(s) 187 Votes

-CookieMonster666-

Message Maven
Nov 20, 2018
12,166
18,079
Hey guys, any ideas if there is an Eta for next update and if there are animations planned?
I have to confess, I like the design and artwork, but sex scenes where a disappointment to be fair considering the awesome graphics.
No ETA that I can find; this just got released, so I would think at least a month. This is the dev's first game, so animations right now are 2-image ones (i.e., a blowjob animation might be just the hand at the tip of the penis and then at the other end, back and forth several times). He seems to be doing pretty well, though (over $2K/month), so hopefully things will just improve, whether in this game or in the next game he does.
 

-CookieMonster666-

Message Maven
Nov 20, 2018
12,166
18,079
if you choose brandy you have to lose vanessa
Ultimately, almost certainly yes. For now, however, if you tell Vanessa the truth for each answer until the last one and then say "What could happen when you're the only one I could think of?", you can end up having some fun with her.
 

NaughtyDeveloper

Member
Game Developer
Jun 29, 2017
173
1,339
alright according to incest the patch in chapter 4 at 7:55 i need to go to the bathroom to check on Jeane. so i enter and i thought i need to or it will trigger some event but nothing comes up I can't even click on her. is it normal? or am i missing something?
 
Last edited:

Uriel ☁

Well-Known Member
Nov 28, 2017
1,592
9,951
It's so sad to see this game rushing to get to an end.

The last two updates are nothing but sex scenes with barely any prelude, story or anything inbetween them. The dialogues between scenes also switched to third person when the rest of the game was in first person (Brian's POV). It's almost like the dev is detaching himself.

And the sex scenes feels like a chore that he got to do to end the game. How many sex scenes do I need to complete the game? 14?! Ok, let's make a Jeane scene... then a Vanessa scene... How many more? 12? Ok, let's put a scene with Rene's sister in...

I'm extremely saddened to make this comment, this used to be a top 3 game of mine.
 

Gardan

Member
May 3, 2019
390
711
It's so sad to see this game rushing to get to an end.

The last two updates are nothing but sex scenes with barely any prelude, story or anything inbetween them. The dialogues between scenes also switched to third person when the rest of the game was in first person (Brian's POV). It's almost like the dev is detaching himself.

And the sex scenes feels like a chore that he got to do to end the game. How many sex scenes do I need to complete the game? 14?! Ok, let's make a Jeane scene... then a Vanessa scene... How many more? 12? Ok, let's put a scene with Rene's sister in...

I'm extremely saddened to make this comment, this used to be a top 3 game of mine.
Stop your childish whining and enjoy the game !
 

Penfold Mole

Engaged Member
Respected User
May 22, 2017
3,175
7,852
Bugfix patch updated to v0.10.2, v0.10.3 and v0.10.4 (achievments.rpy files are identical in these three)

Everything I wrote previously about v0.9.1 still stands, only achievments.rpy had to be updated, but the few old bugs mentioned below are still in there, also no fix for old saves exists in the official version of the game. Fine for new playthrough's, not so much for old saves.
The game is playable without the bugfix, but if you want to see the full achievements page without anything missing there and not to crash the game while looking at the profile pages of the Al-Tamer couple, then just apply this patch.

Attention: the bugfix patch that is attached here is for the v0.10.2 of this game only! Do not use it on any other versions of the game.

_________________________

What seems to be fixed since the previous v0.9.0 version is the bug in characters.rpy with the mistyped profile image file names for Taahir and Mahabbah and ep3_convs.rpy with Stephania's movie achievement variable being wrongly named and therefore never actually unlocked.

Also, in the achievments.rpy the trigger for saeki2 achievement is now correctly defined, but...

achArr array - a list of all achievement images on the achievement page is still missing both - saeki2 and alisuz1 achievements, which means that neither can be seen there.

And a major problem is that just fixing profile images in characters.rpy and the variable name for Steph's movie achievement in ep3_convs.rpy will not fix these problems for old saves where these variables are already faulty. In the fixed version v0.9.1 of the game Taahir's and Mahabbah's profiles will not throw an error message only for old saves created before meeting these characters in the game and Steph's movie achievement will properly unlock only for saves that were created before the movie scene in episode 3! (unless they have already been fixed by my previous bugfix in v0.9.0)
And, of course, any newly started games will not have these problems.

However, to fix these two problems for any old saves you need the code I added to my previous bugfix in a separate file, that will trigger after loading any saved game:
Python:
label after_load:

    # Background image fix for old saves since v0.8.0
    python:
        for x in person_list:
            if 'BGK' in x.backgroundImage:
                x.backgroundImage = renpy.re.sub('BGK' , 'BKG' , x.backgroundImage)
       
    # Fix for e3_movie_stephania_success bug for old saves, unlocking the image for those who unlocked the achievement in EP3
    if e3_movie_stephania:
        $e3_movie_stephania_success = True

    return
Only this will fix these bugs for saves created in the bugged versions of the game, that is, pre-v0.9.1.

I did specifically mentioned, that royalcandy has my permission to use this file exactly as it is to resolve the bugged savegame problem, but neither did I found that file in the new version of the game nor has this code or any other kind of code been added to any other files of this game, that would trigger after loading a savegame (any code marked with a special label named "after_load"). I guess he probably didn't understand its rather critical importance. I guess I didn't emphasize it strongly enough.

This patch will add that file to the game again, so all those bugged old saves will work.

Just as with the previous bugfixes, I did not try to fix any dialogue - my English isn't good enough for proofreading. I did notice that in the conversation between Jeane and Brian, it's clearly Brian who should answer "Okay boss!" and not Jeane, but I didn't fix that line, either. (line 1323 in ep9_convs.rpy)


In case anyone is interested, the old bugfix for v0.9.0 is still here

____________________________________

How to patch the game:

Extract the contents of the patch file into the root folder of the game (the main folder with the game launcher NoMoreSecrets.exe and NoMoreSecrets.sh files in it).
Let it overwrite the original files.

archiver is recommended for Windows (use msi installer), for Mac.
Debian and its derivate users (Ubuntu and others) will have to install p7zip-full package to be able to extract the file
(sudo apt install p7zip-full)
 
Last edited:
4.10 star(s) 187 Votes