CREATE YOUR AI CUM SLUT ON CANDY.AI TRY FOR FREE
x

MD27

Member
Feb 28, 2020
286
354
Liked the attempt at redeeming both Mom and Raph, I think the message was put together acceptably, maybe not the best but meh, just something to try and fix the narrative mess and disappointment that last update was so thanks!
Although still leaves me with a sensation of emptiness as someone said. On that note what's the deal with Ghost? Guess we'll see.
And more importantly I can't read Azael, for moments so friggin' heatable but also takes a role and looks forward to spend time with MC idk what her deal is, most dialogues and interactons with her follow the same history and problems as last update ones, don't know whether to still think bad of her or what.
Overall not a bad one
 
  • Thinking Face
Reactions: Grelk

Azsouth

Member
Mar 1, 2021
369
409
what happened to Nyks after she sent the MC to earth? didn't he go back to hell and we still didn't see her? If he killed all the kings does that mean he killed the hot queen cousin? Because I remember after killing Zaks he turned his back on her, implying she's still alive.
 
  • Like
Reactions: Grelk

cariadult

Active Member
Jun 4, 2018
511
282
Can Luna materialized later into real being and not just MC's fragment of imagination? She is a better mom than Emma(so far) even though both are hot (according to me at least).

You don't have permission to view the spoiler content. Log in or register now.
 
May 3, 2022
174
439
As someone who just binged watch Lucifer few weeks ago, I am enjoying the direction in way story is moving but would love an equivalent to the detective/human LI.
 
  • Like
Reactions: m4pII

d3nial1

Newbie
Jun 16, 2019
57
165
Force Incest Patch for dialogues

This game has M/S and B/S relationships but no scenes as of now. Even it is a patreon build the relationships are not censored.

However, many dialogues feel out of place. Like when you talk to your sister about your mother, you don't refer your mother with her name right? Instead you should say "Mom" or "Our mom". This really wierded me out.

So I just did a simple Regex replacement in the game folder. As the script files (ch1, ch2, ch3) ar not encrypted, it was easy. Do the following:

Backup your game folder for easy reset.

Open any editor that supports Regex (VSCode, Sublime text, Notepad++), open the game folder(VS code) or chapter files individually and do this:

In Find field(enable regex and make sure there are no spaces around):
(\s+)(d|rap|aze) "(.*)?Emma(.*)?"

In Replace Field:
$1$2 "$3Mom$4"

Now it is a bit different for Dad. "Goddess" turns into "Daddess". So use this instead:
(\s+)(d|rap|aze) "(.*)?God(?!dess)(.*)?"

In Replace Field:
$1$2 "$3Dad$4"

* I didn't just upload the modded files as the game script has many typos and it will get fixed eventually thus rendering my files outdated.

* I don't know renpy or python otherwise maybe I could've made a runtime script that changes such strings on runtime without modifying base script. That would be the best future proof solution. If you think you can do it, feel free to do so. I will be greatly indebted to you.

Update: Thanks to oidex for making it possible. Post link here: Mommify Script
 
Last edited:
  • Heart
Reactions: CurtimusPrime92

Hellkinglucifer

Active Member
Apr 29, 2020
803
1,906
Wanted to give the game a last chance after the disaster that was chapter 2 to see what would be the dev do to improve the game but the game still trash just a slight improvement so ignore button it is. What a shame expected so much more after that badass of an intro but mommy fetish strikes again(n)

p.s i like incest game just not when they destroy the game potential.
 

burbero

Member
Jun 18, 2022
388
557
Well, it's frustrating when the most sensible character in the game until then is killed. I don't want to download the game, so that I would play it to the end with the CTRL button pressed to the bottom when the story also died at the same time. Or mostly the interest in that story, as I said completely pointless crap was that killing.

For me, killing someone near the MC is like NTR, which means it's game over.
so we choose a movie, this movie comes as a full package, it has a finale. We can see that an event that we do not like in the first half hour has a reason in the next hour. Now here, Inessa's death may seem unreasonable, but we will see together where it will connect in the next episodes. I know he didn't die for no reason, and who says he can't come back? Remember Emma can bend time and mc goes through a lot to find out.
 

mrmcfappen

Newbie
Sep 10, 2019
92
126
Update was very short. MC continuous to be an obvious slave to the narrative and the pacing forced down in our throats, not asking anything, not responding with anything remotely expectable. Which brings the question of why the fuck is this game not a kinetic novel?

Pretty much the only even remotely interesting change that came directly due to our choices was the goddess' kiss scene when leaving home for school, and that scene because of the devs mistake of <> signs occurs opposite of how it's supposed to.

Overall, I was disappointed with chapter 2 but still had hope and wanted to see what was going to happen in chapter 3. I was even a bit impatient in my waiting, I really wanted to see how the story would continue. Now, having seen the chapter 3, I couldn't give a shit if this games gets updated or abandoned.
 
Last edited:

Olo77

Newbie
Oct 2, 2017
22
50
Great VN, totally dont mind the lack of sex scenes, great character development, I will not agree with some reviews that it is not real, on the contrary they do everything as in life - referral to a professional and not scratching wounds.
But the update rate... As I understand this is the 3rd update from 2021? At this rate Im afraid the author won't finish the story in this decade.
And I really hate it when a good story doesnt have an ending - unfortunately there are plenty of VN like this here.
Yes I know money is important but the frequency of updates affects the number of people willing to support...
 
  • Like
Reactions: Laehtsia

oidex

Active Member
Jan 9, 2018
714
1,832
Force Incest Patch for dialogues

This game has M/S and B/S relationships but no scenes as of now. Even it is a patreon build the relationships are not censored.

However, many dialogues feel out of place. Like when you talk to your sister about your mother, you don't refer your mother with her name right? Instead you should say "Mom" or "Our mom". This really wierded me out.

So I just did a simple Regex replacement in the game folder. As the script files (ch1, ch2, ch3) ar not encrypted, it was easy. Do the following:

Backup your game folder for easy reset.

Open any editor that supports Regex (VSCode, Sublime text, Notepad++), open the game folder(VS code) or chapter files individually and do this:

In Find field(enable regex and make sure there are no spaces around):
(\s+)(d|rap|aze) "(.*)?Emma(.*)?"

In Replace Field:
$1$2 "$3Mom$4"

Now it is a bit different for Dad. "Goddess" turns into "Daddess". So use this instead:
(\s+)(d|rap|aze) "(.*)?God(?!dess)(.*)?"

In Replace Field:
$1$2 "$3Dad$4"

* I didn't just upload the modded files as the game script has many typos and it will get fixed eventually thus rendering my files outdated.

* I don't know renpy or python otherwise maybe I could've made a runtime script that changes such strings on runtime without modifying base script. That would be the best future proof solution. If you think you can do it, feel free to do so. I will be greatly indebted to you.
Maybe something like this?
Python:
init python:
    import inspect
    import re

    def mommify(text):
        who = inspect.currentframe().f_back.f_locals.get('who')
        if who is None:
            return text
    
        who = who if isinstance(who, str) else who.name
        if who in ('[name]', 'Azel', 'Raphael'):
            for reg, sub in ((r'\bEmma\b', 'Mom'),
                             (r'\bGod\b', 'Dad')):
                text = re.sub(reg, sub, text)
    
        return text


    config.say_menu_text_filter = mommify
EDIT: removed replace for "Goddess"
 
Last edited:
3.40 star(s) 77 Votes