Hey
NeonGhosts there is a omitted variable for bri_fear on her nice paths. At the end of the nice options the variable bri_rel is there but not bri_fear. So when the conversation with Carolina comes up about a babysitter, an error pops up.
Code:
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/script.rpy", line 34083, in script
menu:
File "game/script.rpy", line 34103, in <module>
"Suggest Brittani." if brirel == 0 or brirel == 1 and bri_fear == False :
NameError: name 'bri_fear' is not defined
To anyone looking for quick and dirty fix, open up the script.rpy in the game folder.
Edit the following line from this:
Code:
label ch4_britt_photoshoot:
"Remembering your appointment with Brittani, you click your tongue."
To this:
Code:
label ch4_britt_photoshoot:
$ bri_fear = False
"Remembering your appointment with Brittani, you click your tongue."
Load a save before the photoshoot and play normally. I haven't checked all of the script, but the dark paths appear to correctly change this to false, its just the non-dark ones that are missing the variable. However, by adding my suggested change at the very beginning of the scene, at least it there is no way to accidentally skip over the variable regardless of any choices made during the photoshoot scene.