Babysitter -final V0.2.2b- -t4bbo- Link
The narrative explores balancing professional success with family responsibilities, dealing with a spoiled stepdaughter (Angelica), and the "tensions and temptations" that arise when hiring a babysitter (Erica).
The writing in v0.2.2b adopts a "slow burn" approach. This is not a game for players seeking instant gratification; it requires an investment of time to see the narrative payoffs.
Due to explicit adult content, themes of infidelity, and complex domestic relationships, the title is strictly intended for audiences aged 18 and older. Babysitter -Final v0.2.2b- -T4bbo-
The game runs on Windows, with community-made Wine wrappers for macOS and Linux. File size is approximately 450 MB.
A secure system for creating profiles for both babysitters and parents, with possibly some form of verification or background check to ensure safety. Due to explicit adult content, themes of infidelity,
T4bbo
Because of the fight, Christine moves into your apartment. Soon, she starts looking for work as a babysitter. As the player, you manage your own life while interacting with her and other characters. Key Game Features A secure system for creating profiles for both
The release of marked the official end of development for the standalone Babysitter title. Following its completion, the developer transitioned to an expanded spiritual successor titled Babysitters (plural). Game Title Narrative Focus Main Characters Babysitter Completed (v0.2.2b) Domestic Cohabitation, Tech Subplots Protagonist, Christine, Jessica Babysitters Active Development Modeling Industry, Marriage, Nanny Hiring Photographer, Lara, Angelica, Erica
That’s a brilliant tip and the example video.. Never considered doing this for some reason — makes so much sense though.
So often content is provided with pseudo HTML often created by MS Word.. nice to have a way to remove the same spammy tags it always generates.
Good tip on the multiple search and replace, but in a case like this, it’s kinda overkill… instead of replacing
<p>and</p>you could also just replace</?p>.You could even expand that to get all
ptags, even with attributes, using</?p[^>]*>.Simples :-)
Cool! Regex to the rescue.
My main use-case has about 15 find-replaces for all kinds of various stuff, so it might be a little outside the scope of a single regex.
Yeah, I could totally see a command like
remove cruftdoing a bunch of these little replaces. RegEx could absolutely do it, but it would get a bit unwieldy.</?(p|blockquote|span)[^>]*>What sublime theme are you using Chris? Its so clean and simple!
I’m curious about that too!
Looks like he’s using the same one I am: Material Theme
https://github.com/equinusocio/material-theme
Thanks Joe!
Question, in your code, I understand the need for ‘find’, ‘replace’ and ‘case’. What does greedy do? Is that a designation to do all?
What is the theme used in the first image (package install) and last image (run new command)?
There is a small error in your JSON code example.
A closing bracket at the end of the code is missing.
There is a cool plugin for Sublime Text https://github.com/titoBouzout/Tag that can strip tags or attributes from file. Saved me a lot of time on multiple occasions. Can’t recommend it enough. Especially if you don’t want to mess with regular expressions.