She’s waiting… ready to tease you LIVE — come play. Join Now!
x
4.50 star(s) 379 Votes

Meabe37

Active Member
Mar 9, 2023
560
2,739
366
It's English and it's the US, isn't it? William is Bill, Richard is Dick, Robert is Bob, Edward is Ted and Margaret is Peggy. For all we know she can be Brianna, Brittany, Britney, Brigid or just Bree. Heck, she can be even Aubrey!
If her full name would be something else than Bree we would know imo. Most likely from when Caitlynn does the check at the beginning or maybe from the introduction class. And she would have probably reacted differently from the MC messing around with her name and randomly picking her real one by accident. Also naming MC Brianna doesn't trigger Caitlynn special line about having two student name the same.
 
  • Like
Reactions: Discrepancy

Meabe37

Active Member
Mar 9, 2023
560
2,739
366
Because there is a special line if you named your MC Bree? :LUL:
Yes for all the girls.

Also if you have numbers, special characters, a title, if it's gibberish or weird, bad words, also if your name is from certain origin like Scandinavian, if it's super long or super short.

it's a line from Mr. Hill when she do the presence check at the beginning.
 

alukar507

Newbie
May 29, 2021
18
3
21
Just to clear up any confusion since this problem is always coming up, while this is triggered by a language change, it's the result of a poorly implemented set of conditions, the relevant code is this:
Python:
if _preferences.language == None:
    hide screen introduction_sheet with dissolve
elif _preferences.language == "swedish":
    hide screen introduction_sheet_swedish with dissolve
This means any language other than None or swedish will not hide that screen, it's bad practice to program it this way even if they don't support mods, this screen must be hidden no matter what so, at the end of whatever list of conditions the devs want to account for, it should always end with:
Python:
else:
    hide screen introduction_sheet with dissolve
Until this is fixed by the devs (it's lines 756-759 of script_ch03.rpy in case you're reading this, you technically don't even need the conditions as Ren'Py will not care if you try to hide a screen that's already hidden) our options are to either ensure that no translation is active at the time this screen is supposed to be hidden, or hide it ourselves by running the hide screen introduction_sheet command from the developer console or a mod.
Thank you so much! You've completely saved me. I had completely lost hope of ever playing this visual novel, but I'm so glad I saw your post. Thanks to you, I can move forward! You're awesome!
 
4.50 star(s) 379 Votes