You starting to play in the role of freelance programmer, whose career is not so successful as expected. Currently you are desperately seeking for the client who would buy the “special software” you have been working on for a while and you hope it will make you filthy rich. In the meantime, your sister is having argue with her daughter whether she will go on college or not. This argue ends in having your niece in your apartment free room. And she is currently looking for a job instead going to the college in order to be independent..
Installation: Extract, Run and Enjoy!
Developer: T4bbo
Censored: No
Version: Final
Language: English
Genre: 3DCG, Anal, blowjob, Corruption, Feet, Group Sex, Incest, Lesbian, Milf, NTR, Sleep, Spanking, Teen., Vaginal, Voyeurism
v0.2.2b Bonus
– fixed numerous grammar mistakes, naming mistakes etc.
– fixed wrong animation reference with pregnant Christine
– fixed bug with switching variables regarding Silver/Robert route and Christine narration
– added pregnant Veruca to non NTR endings
– prolonged Robert NTR ending
– updated walkthrough based on grammar changes + added some more hints to cuckold route
Download For Windows PC
Download For Mac OS
Download For Linux OS
Download For Android
Download Walkthrough, Multi-Mod,
Features:
- Adds an in-game walkthrough for the important choices.
- Adds option to see multiple scenes and award all points.
- Adds In-Game Hints.
- Adds Nav Bar.
- Adds Scene Replay to Main Menu.
NOTE: The Walkthrough follows the Happy-Ending Walkthrough. The Scene Replay does NOT contain any NTR scenes.
Installation:
PC: Unzip the mod and place the files in the “game” folder in your “Babysitter-0.2.2b.-pc” folder. Overwrite when prompted.
MAC: Unzip the mod -> Right-click your “Babysitter” app -> Click “Show Package Contents” -> Open the “Contents” then “Resources” folders -> Hold the Option key and drag the folder named “game” from the mod to the “autorun” folder -> Click merge
So, the most recent 0.2.2b clean version or linux seemed to have Christine referring to me as her Uncle. I’m not sure how/why, since I never downloaded the uncle restoration patch, but if anyone has the same problem I modified the patch that Penfold Mole uploaded.
I don’t really know python, but I tested it on my system and it seems to work.
# code inspired by bossapplesauce & Penfold Mole @ f95zone
init python:
hardcoded = {}
def rel_rest(text):
def text_repl(t):
if renpy.re.match("niece", t.group(0)): return "goddaughter"
elif renpy.re.match("uncle", t.group(0)): return "godfather"
elif renpy.re.match("Niece", t.group(0)): return "Goddaughter"
elif renpy.re.match("Uncle", t.group(0)): return "Godfather"
return hardcoded[text] if text in hardcoded else renpy.re.sub( r'(?:(?i)(?:uncle|niece))', text_repl, text )
config.say_menu_text_filter = rel_rest
Follow the same instructions in the quoted post above to install the Incest Nuker patch.
Since I tend to lurk and haven’t posted before, if for some reason the attached file doesn’t come through, you can either download Penfold Mole’s patch and update the text to match the code above, or copy the code above into a blank notepad and save the file as rel_rest.rpy.
This patch restores original roles of the main characters: godfather and goddaughter will become uncle and niece again, as they originally were before Patreon policy changed.
The patch was not originally made by me, I just modified it by replacing the Python startswith
method with the regex-aware re.match
and added a replacement filter for “goddaddy” and a misspelled “goddaughter” to it.
________________________________
(original post)
Added ‘goddaddy’ to the ‘Uncle Restoration’ patch to be replaced with ‘uncle’ (also works for the capitalized version):
# code inspired by bossapplesauce @ f95zone
init python:
hardcoded = {}
def rel_rest(text):
def text_repl(t):
if renpy.re.match("god+(?:daughter|daugther)", t.group(0)): return "niece"
elif renpy.re.match("god+(?:father|daddy)", t.group(0)): return "uncle"
elif renpy.re.match("God+(?:daughter|daugther)", t.group(0)): return "Niece"
elif renpy.re.match("God+(?:father|daddy)", t.group(0)): return "Uncle"
return hardcoded[text] if text in hardcoded else renpy.re.sub( r'(?:(?i)god+(?:father|daughter|daugther|daddy))', text_repl, text )
config.say_menu_text_filter = rel_rest
_______________________
update
Added misspelled version of goddaughter (‘goddaugther’) to the replacement filter
_______________________
update2
Added a fix for another misspelled version of goddaughter (‘godddaughter’) to the filter. Now it will catch them all, no matter how many d’s have been shoved in there in a row
(Thanks to Transcan for the report)
_______________________
rel_rest.rpy file from inside the zip archive goes into the ‘game’ subfolder in the game root folder:
Leave a Review