init 9070 python: def nameChange( txt ): if "[Kate]" in txt: return txt.replace("[Kate]","Aunt") elif "[Julia]" in txt: return txt.replace("[Julia]","Mom") elif "[Andrew]" in txt: return txt.replace("[Andrew]","Dad") else: return txt config.say_menu_text_filter = nameChange init 9090 python: def replace_text(t): t = t.replace("Julia", "Mom") t = t.replace("Katherine", "Aunt") t = t.replace("Andrew", "Dad") t = t.replace("Kate", "Aunt") return t config.replace_text = replace_text init 9999 python: config.label_overrides.update( { "intro_1": "intro_1Patched" } ) label intro_1Patched: $ renpy.scene(layer = "screens") $ renpy.scene(layer = "gui") $ renpy.scene(layer = "pc") play music "audio/music/Warm Nights.mp3" fadein 2.0 scene black pause(1.0) scene afna with slowfade pause(4.0) scene intro_1_1 with slowfade Michael "(Now then... this is us... I mean you... Me? Anyway...)" Michael "(Just trying to have a little bit of peace, some time for myself.)" scene intro_1_2 with dissolve Michael "(Not that it's ever possible... Not with Emily around.)" with dissolve Michael "(My sister and a real she devil.)" scene intro_1_3 with fade Michael "What are you doing! I could have drowned.." Emily "Haha! Really? In 5 inches of water? You said you were a good swimmer. Were you bullshitting all this time?" Michael "Funny! Guess who's gonna learn to swim now!" scene intro_1_4 with dissolve Emily "Ahhh please don't, I don't want to get my hair wet. I am sorry." Michael "I'm sure you are sorry. Yep, you sure look like.." Emily "No I mean it, I really am sorry." Michael "(Beside Emily, I'm here with my mom and aunt)" scene intro_1_5 with dissolve Michael "(Ahh there they are)" scene intro_1_6 with fade Michael "(The lady on the right is my mom.Her name is Julia.)" Michael "(A very kind and caring person.)" Michael "(And the one on the left is my aunt Katherine, my mom's sister.)" Michael "(My dad is some business man, but he is rarely at home.)" scene intro_1_7 with fade Michael "(With his business trips, god knows where he is.)" Michael "(He knows how to make money, but that's about it.)" Michael "(I've always kinda wondered... ah nevermind.)" scene intro_1_8 with dissolve Michael "(He is never home, so guess who needs to repair things when they get broke.)" Michael "(But at least I managed to pick up some usefull skills.)" Michael "(You know what they say, If you can’t fix it with duct tape you’re not using enough duct tape.)" scene intro_1_9 with fade Julia "You see! You didn't want to come with us yet you haven't stopped smiling." Kate "What can I say, I am really enjoying this." Kate "When was the last time we've been together like this?" Julia "We?... Probably long time ago, as you don't really leave your house." Kate "Ohhh be quiet." Kate "[Michael] is very handsome, how are things between you two?" Julia "Good, He's always so helpful." scene intro_1_10 with dissolve Julia "Why are you talking so quietly all of a sudden?" scene intro_1_11 with fade Kate "I wanted to ask you... You are close with him, aren't you." scene intro_1_12 with dissolve Julia "Yes we are close, what are... but we aren't that close. You know I would tell you if something happened." Kate "I know, but I wanted to be sure." Kate "Living under the same roof... how are you resisting?" Julia "Aren't I a little old? I bet he prefers a younger women." Kate "Ahh stop it, you could say exactly the same about me, you are in your prime. You are assuming things, you don't even know." Julia "Because I am scared. How would I be able to look in his eyes again." Kate "I just want you to be happy." scene intro_1_13 with dissolve Kate "Sooo you've never thought about it?" Julia "..." Kate "Aaaaa?" scene intro_1_14 with dissolve Julia "Stop with your inappropriate ideas." scene intro_1_15 with dissolve Kate "Hihi, what was that sudden pause there?" Kate "You can't hide it from me." Julia "I really can't, can I. Sometimes I don't know what I would do without you." Kate "I know you too well." scene intro_1_16 with fade Emily "What are you two doing there?" Kate "Nothing... just having a little chat." Emily "You can't sit there all day. Come feel the water, [Michael] already did... against his will though." Julia "Wait! no one is going anywhere yet, I want us to take a photo." scene intro_1_17 with dissolve Emily "Sure, we can take a photo. Use my phone." Julia "[Michael] your shoulders are looking kind of red." Michael "Yeah I feel like I'm starting to burn a little." Kate "You should smother him with sunscreen or he's gonna feel it tomorrow." Julia "Good idea! In the meantime you two go pick a nice place." Julia "Let me just take off my coverup, Then come sit down in front of me." scene intro_1_18 with dissolve Julia "You should have done this when we got here." Michael "I kind of forgot about that." scene intro_j_back with dissolve Julia "Yeah that's it, don't worry your gonna be fine." Julia "Maybe we could stop for a lunch somewhere on the way back?" Michael "That would be great." scene intro_1_19 with dissolve Julia "*Whispering* Oh god you smell so good." Michael "Did you say something [Julia]?" Julia "No... no, I'm just about... done." scene intro_1_20 with dissolve Emily "Hey stop cuddling over there and get over here." Julia "Okey! jeez, were are coming." scene intro_1_21 with fade Emily "I hope you're not going through my gallery [Kate]." Kate "Haha no I got it... don't you dare blink. Alright... now, say cheese." scene intro_1_22 with Fade(0.1,0.02,2.0, color="#fff") pause scene black with Fade(1.0,1.0,1.0) stop music fadeout 3.0 scene title_cutscene with dissolve pause(5.0) if in_replay: scene black with Fade(1.0,1.0,1.0) menu: "Continue in replaying scene" if True: pass "Stop and go back to pc" if True: $ in_replay = False jump pc jump intro_2