- Mar 21, 2020
- 1,255
- 1,643
And u were waiting so loong to leave your first comment right now? Yeah,right...all this time waiting for this garbage ? seriously ?
And u were waiting so loong to leave your first comment right now? Yeah,right...all this time waiting for this garbage ? seriously ?
(\s+)(d|rap|aze) "(.*)?Emma(.*)?"
$1$2 "$3Mom$4"
(\s+)(d|rap|aze) "(.*)?God(?!dess)(.*)?"
$1$2 "$3Dad$4"
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.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.
That's a bug in ch3.rpy, line 1023ff. That whole section is fucked.I have emma hug true and emmap at 5 but still he rejected him after the kiss on the cheek.
Maybe something like this?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.
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