- Jan 9, 2018
- 713
- 1,830
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.
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
Cool dude!!! Exactly what we need. Hope some MODs put it up on the first post. Respect.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|\bGoddess\b)', 'Mom'), (r'\bGod\b', 'Dad')): text = re.sub(reg, sub, text) return text return text config.say_menu_text_filter = mommify
I'd be careful with that. I can already see it failing hilariously.Cool dude!!! Exactly what we need. Hope some MODs put it up on the first post. Respect.
Dang, wait for fix from dev thenThat's a bug in ch3.rpy, line 1023ff. That whole section is fucked.
Thats the reason why I wanted to skip changing the "Goddess" word. There are reasons to call her Goddess instead of just Emma.I'd be careful with that. I can already see it failing hilariously.
Dude: Why does she have superpowers?
MC: Emma's actually a Goddess. --> Mom's actually a Mom.
Wait, that actually kinda works.
Agreed. Code and zip file have been edited.Thats the reason why I wanted to skip changing the "Goddess" word. There are reasons to call her Goddess instead of just Emma.
- The MC copied Emma's powers. That is, he now unconsciously influences those around him, increasing their affection for him. She is under her own spell.Emma is still a creepy weirdo. Going to school makes no sense. It still feels like we are being railroaded into forgiving everyone.
I think we are in for a similar story as in Cyberpunk. Chost has his own plans, and I think they include the destruction ofThe scene where Ghost takes control of the main character is quite troubling, but it has a silver lining in that the way he dislikes Emma touching him suggests that he is immune to Emma's powers. Perhaps we can gain that ability in the future if these therapy session can fix our brain.
this is the end of the current update.sooo, i got it right that the scene with mad mc fighting azel and that game is showing like he tried to kill himself is the end of current version? or my gaming skills gave me bad end?
dev should have wrote that, looks very much like bad end . Thanks for answer.this is the end of the current update.
yeah the ending was very abrupt i thought my game crashed for a moment. Could possibly do with a little end title or something.dev should have wrote that, looks very much like bad end . Thanks for answer.