image animation01V01 = Movie(play="images/V01/Videos/Animation1.webm") image animation02V01 = Movie(play="images/V01/Videos/Animation2.webm") image animation03V01 = Movie(play="images/V01/Videos/Animation3.webm") image animation04V01 = Movie(play="images/V01/Videos/Animation4.webm") image animation05V01 = Movie(play="images/V01/Videos/Animation5.webm") image animation06V01 = Movie(play="images/V01/Videos/Animation6.webm") image animation07V01 = Movie(play="images/V01/Videos/Animation7.webm") define rt01_v01 = False define rt02_v01 = False define in_erotic = False define mc_sin_name = Character (" ", color="#AFC7FF") define mc = Character ("Alex", color="#AFC7FF") define lang = "En" define partyv05 = False init python: from random import shuffle def change_and_shuffle_music(): if in_convento: shuffle(convet_music) renpy.music.queue(convet_music, "music") renpy.music.play(convet_music, "music") elif in_erotic: shuffle(musics_erotic) renpy.music.queue(musics_erotic, "music") renpy.music.play(musics_erotic, "music") elif inhalloween2024: renpy.music.queue(halloween_music, "music") renpy.music.play(halloween_music, "music") elif inchristmas2024: renpy.music.queue(christmas_music, "music") renpy.music.play(christmas_music, "music") elif partyv05: renpy.music.queue(party_music, "music") renpy.music.play(party_music, "music") else: shuffle(game_music) renpy.music.queue(game_music, "music") renpy.music.play(game_music, "music") image creditosAnimacion = Movie(play="images/animacionfinal.webm") screen credits: add "images/V05/ENDv05.png" vbox: xalign 0.1 yalign 0.84 spacing -50 hbox: spacing 80 imagebutton auto "images/logos/subs_%s.png" action OpenURL("https://subscribestar.adult/game-sara") imagebutton auto "images/logos/discord_%s.png" action OpenURL("https://discord.gg/C9jV6qatE8") hbox: spacing 80 ypos 100 xpos 115 imagebutton idle "images/logos/x_idle.png" action OpenURL("https://twitter.com/Nightaku69") ypos -10 imagebutton auto "images/logos/itchio_%s.png" action OpenURL("https://nightaku.itch.io/") ypos -5 xpos 85 screen credits_events: add "images/events/Halloween2024/endhalloween2024.png" vbox: xalign 0.23 yalign 0.95 spacing -50 hbox: spacing 80 imagebutton auto "images/logos/subs_%s.png" action OpenURL("https://subscribestar.adult/game-sara") imagebutton auto "images/logos/discord_%s.png" action OpenURL("https://discord.gg/C9jV6qatE8") hbox: spacing 80 ypos 100 imagebutton idle "images/logos/x_idle.png" action OpenURL("https://x.com/Nightaku69") ypos -60 imagebutton auto "images/logos/itchio_%s.png" action OpenURL("https://nightaku.itch.io/") ypos -5 style no is text: size 80 color "#FFFFFF" hover_color "#FF0000" bold True italic True style si is text: size 80 color "#FFFFFF" hover_color "#00FF00" bold True italic True screen warning: add "images/warning.png" frame: area ((40, 30, 1110, 900)) background None has vbox xpos 50 yalign 0.7 spacing 15 text __("WARNING") color "#FF0000" xalign 0.5 ypos -40 size 80 text __("This is a game for adults, it contains harsh language") xalign 0.5 text __("And sexual scenes. According to the laws of your country,") xalign 0.5 text __("All characters are of legal age,") xalign 0.5 text __("And both the story and its places and characters are fictitious,") xalign 0.5 text __("Any resemblance to real people is coincidental.") xalign 0.5 text __("It falls under your responsibility to continue.") xalign 0.5 hbox: xalign 0.5 ypos 50 spacing 50 textbutton __("YES") text_style "si" action [Hide("warning"), With(dissolve), Return()] textbutton __("NO") text_style "no" action Quit() label splashscreen: if not persistent.chooseLang1: call screen lang $ persistent.chooseLang1 = True call screen warning call screen warning_audio if _preferences.language == None: $ lang = "En" elif _preferences.language == "spanish": $ lang = "Es" elif _preferences.language == "portuguese": $ lang = "Po" elif _preferences.language == "russian": $ lang = "Rus" elif _preferences.language == "french": $ lang = "Fr" screen warning_audio: add "images/audio_warning.png" frame: area (165,150,1600,800) background None text __("WARNING") color "#39FF14" xalign 0.5 yalign 0.1 outlines [(1, "#000000", 0, 0)] size 80 text "We recommend headphones for a better experience" xalign 0.5 yalign 0.45 outlines [(1, "#000000", 0, 0)] size 45 imagebutton idle "images/phone/invisible.png" action Return() define lang_indx = 0 screen lang(): modal True add "gui/lang_select_background.png" if lang_indx >= 1: imagebutton idle "images/gallery/flecha_izquierda_idle.png" action [SetVariable("lang_indx", lang_indx-1), renpy.restart_interaction] xalign 0.17 yalign 0.6 if lang_indx < 4: imagebutton idle "images/gallery/flecha_derecha_idle.png" action [SetVariable("lang_indx", lang_indx+1), renpy.restart_interaction] xalign 0.45 yalign 0.6 if lang_indx == 0: text "Choose your language" size 50 xalign 0.27 ypos 150 vbox: xalign 0.26 ypos 320 spacing 20 imagebutton auto "gui/main_menu/flags/new_flags/eng_%s.png" action [Language(None), SetVariable("lang", "En"), SetVariable("persistent.style_main_menu", "Eng"), SetVariable("persistent.chooseLang1", True), Return()] textbutton "English" action [Language(None), SetVariable("lang", "En"), SetVariable("persistent.style_main_menu", "Eng"), SetVariable("persistent.chooseLang1", True), Return()] text_size 60 xalign 0.5 if lang_indx == 1: text "Escoge tu idioma" size 50 xalign 0.27 ypos 150 vbox: xalign 0.26 ypos 320 spacing 20 imagebutton auto "gui/main_menu/flags/new_flags/esp_%s.png" action [Language("spanish"), SetVariable("lang", "Esp"), SetVariable("persistent.style_main_menu", "Esp"), SetVariable("persistent.chooseLang1", True), Return()] textbutton "Español" action [Language("spanish"), SetVariable("lang", "Esp"), SetVariable("persistent.style_main_menu", "Esp"), SetVariable("persistent.chooseLang1", True), Return()] text_size 60 xalign 0.5 if lang_indx == 2: text "Choisis ta langue" size 50 xalign 0.27 ypos 150 vbox: xalign 0.26 ypos 320 spacing 20 imagebutton auto "gui/main_menu/flags/new_flags/fra_%s.png" action [Language("french"), SetVariable("lang", "Fra"), SetVariable("persistent.style_main_menu", "Fra"), SetVariable("persistent.chooseLang1", True), Return()] textbutton "Francais" action [Language("french"), SetVariable("lang", "Fra"), SetVariable("persistent.style_main_menu", "Fra"), SetVariable("persistent.chooseLang1", True), Return()] text_size 60 xalign 0.5 hbox: ypos 780 xpos 300 spacing 10 text "Traduction par: " imagebutton idle "gui/main_menu/flags/new_flags/franc_banner.png" ypos -28 if lang_indx == 3: text "Escolha a sua língua" size 50 xalign 0.27 ypos 150 vbox: xalign 0.26 ypos 320 spacing 20 imagebutton auto "gui/main_menu/flags/new_flags/port_%s.png" action [Language("portuguese"), SetVariable("lang", "Po"), SetVariable("persistent.style_main_menu", "Port"), SetVariable("persistent.chooseLang1", True), Return()] textbutton "Portuguese" action [Language("portuguese"), SetVariable("lang", "Po"), SetVariable("persistent.style_main_menu", "Port"), SetVariable("persistent.chooseLang1", True), Return()] text_size 60 xalign 0.5 if lang_indx == 4: text "Выберите Язык" size 50 xalign 0.27 ypos 150 vbox: xalign 0.26 ypos 320 spacing 20 imagebutton auto "gui/main_menu/flags/new_flags/rus_%s.png" action [Language("russian"), SetVariable("lang", "Rus"), SetVariable("persistent.style_main_menu", "Rus"), SetVariable("persistent.chooseLang1", True), Return()] textbutton "Русский" action [Language("russian"), SetVariable("lang", "Rus"), SetVariable("persistent.style_main_menu", "Rus"), SetVariable("persistent.chooseLang1", True), Return()] text_size 60 xalign 0.5 vbox: ypos 780 xpos 80 spacing 30 text "Слава Ульрих. Переводчик и разработчик визуальных новелл." size 45 imagebutton idle "gui/main_menu/flags/new_flags/telegram_icon.png" action OpenURL("https://t.me/+y9xrg3n9Xww1OGM6") xalign 0.5 screen notifySara(textn): frame: area (1550, 60, 350,50) background "images/notify.png" text textn size 25 xalign 0.5 yalign 0.45 style "gallery" outlines [(1, "#000000", 0, 0)] label after_load: python: change_and_shuffle_music() $ renpy.music.set_volume(0.4,0) if not renpy.exists("patch.rpy") or not renpy.exists("patch.rpa") or not renpy.exists("patch.rpyc"): define patch = True #KoGa3 else: #KoGa3 define patch = True #KoGa3 return screen warning_screen: add "images/warning.png" label start: python: change_and_shuffle_music() $ renpy.music.set_volume(0.4,0) #KoGa3 START# $ KoGa3GameProgress = "v0.1" #KoGa3 END# scene pro01 with Dissolve(0.2) "As soon as his boat's engine stopped and the GPS stopped emitting a signal, anxiety took over." scene pro02 with Dissolve(0.2) "No food, no water, nothing around him." "Only despair and anguish." scene pro03 with Dissolve(0.2) "When all seemed lost..." "Something happened." scene pro04 with Dissolve(0.2) "He showed up few years later on a raft, and was rescued by an Ocean Liner." "Unconscious but in good shape." scene pro05 with Dissolve(0.2) "His transfer to the hospital made the the doctors scratch their heads." "What happened? How did he get there? Who is he?" scene pro06 with Dissolve(0.2) "And most importantly:" "Where is Sara?" scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... Two years later ...{/color}{/size}{/font}" with moveinright show ma01 $ renpy.pause(2.4) scene 01003 with Dissolve(0.2) drn "Good morning, Annie." scene 01004 with Dissolve(0.2) ani "Dr. Nolan, the results are in." scene 01005 with Dissolve(0.2) drn "Any news?" scene 01006 with Dissolve(0.2) ani "None, everything's still the same." scene 01007 with Dissolve(0.2) drn "It's the first case we've had like this." drn "He's been in a coma here for two years and we don't know a single thing about him." scene 01008 with Dissolve(0.2) ani "He didn't get any visitors either, no one's asked for him." scene 01009 with Dissolve(0.2) drn "I'll keep checking the missing persons records." drn "But I doubt anything will turn up after all this time." scene 01010 with Dissolve(0.2) drn "For the time being, just keep looking after him and we'll wait and see what happens." scene 01011 with Dissolve(0.2) ani "Okay Doctor, I'll take care of him." scene 01012 with Dissolve(0.2) drn "Thanks, Annie. You find anything, let me know." scene 01013 with Dissolve(0.2) ani "Yes Doctor, I'll let you know, don't worry." show ma02 $ renpy.pause(2.4) scene 01016 with Dissolve(0.2) ani "(Who are you?)" ani "(Nobody knows anything about you.)" scene 01017 with Dissolve(0.2) ani "(I'll take care of you, I give you my word.)" ani "(I won't leave you alone.)" scene 01018 with Dissolve(0.2) drn "Good morning, I'm calling from Thompson Hospital, this is Dr. Nolan." scene 01019 with Dissolve(0.2) drn "I'm calling regarding the John Doe that's been in here for two years." drn "To find out if there was any update or if he's been reported missing." show ma03 $ renpy.pause(0.8) drn "I understand." show ma04 $ renpy.pause(0.8) drn "Yes, the only information we have is the one I already gave when he arrived here at the hospital." drn "He was brought in by some dock workers. They said they found him on the high seas." scene 01024 with Dissolve(0.2) drn "They were coming in on a cargo ship and saw a wooden raft, with someone unconscious lying on it." drn "He was practically naked, no documents, nothing." scene 01025 with Dissolve(0.2) drn "They believe he left from a nearby island. He was found more than 4,000 miles offshore." drn "Over 4,000 miles." scene 01026 with Dissolve(0.2) drn "We don't know how long he was there, but the analysis we performed on him when he was brought in indicated that he fed on plants and meat, as well as drinking water." drn "He had no clear abnormalities" drn "Surprisingly, we don't know how he could have ended up like that." show ma05 $ renpy.pause(1) drn "Okay, thanks. Please let me know if there are any news." show ma06 $ renpy.pause(1) drn "(Who the hell are you, kid?)" scene 01031 with Dissolve(0.2) $ renpy.pause() scene 01032 with Dissolve(0.2) play sound "audio/sfx/KnockDoor.mp3" $ renpy.pause() scene 01033 with Dissolve(0.2) drn "Come in." scene 01034 with Dissolve(0.2) ani "Doctor, I'm done with my shift." scene 01035 with Dissolve(0.2) ani "I left everything ready, and there's nothing new." scene 01036 with Dissolve(0.2) drn "Perfect, Annie, thank you." drn "Good night." scene 01037 with Dissolve(0.2) ani "Same to you, Doctor." scene 01038 with Dissolve(0.2) $ renpy.pause() scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... Minutes later at Annie's house ...{/color}{/size}{/font}" with moveinright scene 01039 with Dissolve(0.2) ani "I'm home!" scene 01040 with Dissolve(0.2) ani "Kayla!" scene 01041 with Dissolve(0.2) $ renpy.pause() scene 01042 with Dissolve(0.2) ani "Kayla!!!" scene 01043 with Dissolve(0.2) $ renpy.pause() scene 01044 with Dissolve(0.2) $ renpy.pause() show animation01V01 with fade $ renpy.pause(6.5) scene 01044a with Dissolve(0.2) $ renpy.pause() scene 01044b with Dissolve(0.2) play sound "audio/sfx/nalgada.mp3" $ renpy.pause() scene 01045 kay "Ahhh!" scene 01046 kay "Bitch, that hurts!" scene 01047 with Dissolve(0.2) ani "Oh come on, I didn't hit you that hard." scene 01048 with Dissolve(0.2) ani "I was calling you!" ani "Did you get dinner ready?" scene 01049 with Dissolve(0.2) kay "I'm not your maid, order something." if patch: kay "You're the big sister, you're the one supposed to prepare dinner." else: kay "You're the one supposed to prepare dinner." scene 01050 with Dissolve(0.2) ani "I have to work, wash, clean and prepare the food." ani "Meanwhile, you're just sitting there doing nothing." scene 01051 with Dissolve(0.2) kay "That's right." kay "It's enough that every morning I go looking for a job." scene 01052 with Dissolve(0.2) if patch: ani "I'm not mom, you can't fool me." else: ani "You can't fool me." ani "You're always going to the mall with your friends." scene 01053 with Dissolve(0.2) ani "Stop doing that already." scene 01054 with Dissolve(0.2) kay "Whatever you say." scene 01055 with Dissolve(0.2) ani "(God, you're unbelievable, Kayla.)" ani "(I can't handle you.)" scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... One hour later ...{/color}{/size}{/font}" with moveinright scene 01057 with Dissolve(0.2) ani "You could say 'thank you for dinner'." scene 01058 with Dissolve(0.2) if patch: kay "Thanks for dinner sis, you're the best." else: kay "Thanks for dinner, you're the best." scene 01059 with Dissolve(0.2) if patch: ani "See, that's so much better, being thankful to your sister for taking care of you, even if you're just pretending." else: ani "See, that's so much better, being thankful to your roomie for taking care of you, even if you're just pretending." scene 01060 with Dissolve(0.2) kay "Haha, dummy." scene 01061 with Dissolve(0.2) ani "Seriously Kayla, I need you to help around the house. I can't do everything myself." scene 01062 with Dissolve(0.2) ani "I'm not asking you to work 10 hours a day." ani "But maybe one of those part-time jobs. The coffee shop around the corner usually needs waiters." scene 01063 with Dissolve(0.2) kay "Oh, come on, putting up with stupid people and washing dishes?" scene 01064 with Dissolve(0.2) kay "No way." scene 01065 with Dissolve(0.2) kay "You know I'm not like you, taking care of and washing a dead man in a bed." scene 01066 with Dissolve(0.2) ani "Don't say that. He's a person just like everyone else, and he has no one." ani "You know I like taking care of people, that's why I became a nurse." scene 01067 with Dissolve(0.2) ani "It feels good to help others, you'd know if you tried it." scene 01068 with Dissolve(0.2) kay "No, I'm gonna be famous, marry a millionaire and live the good life." kay "You help others if you want to." scene 01069 with Dissolve(0.2) kay "But taking care of someone? No way." scene 01070 with Dissolve(0.2) ani "God, I can't handle you." scene 01071 with Dissolve(0.2) play sound "audio/sfx/CellphoneRingtoneAnnie.mp3" volume 0.7 $ renpy.pause() stop sound scene 01072 with Dissolve(0.2) ani "Yes?" scene 01073 with Dissolve(0.2) $ renpy.pause() scene 01074 with Dissolve(0.2) ani "How? Right now?" scene 01075 with Dissolve(0.2) $ renpy.pause() scene 01076 with Dissolve(0.2) ani "I'm coming over right now." scene 01077 with Dissolve(0.2) kay "What's wrong? Another one pooped themselves and you have to go clean it up?" scene 01078 with Dissolve(0.2) ani "No, stupid." ani "It's the person that was in the coma." scene 01079 with Dissolve(0.2) ani "He just woke up." scene 01080 with Dissolve(0.2) kay "That's nice, tell him to thank you for helping him." scene 01081 with Dissolve(0.2) ani "I'm getting dressed and leaving. I love you, crazy girl." scene 01082 with Dissolve(0.2) kay "I know." scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... A few minutes later at the hospital ...{/color}{/size}{/font}" with moveinright scene 01083 with Dissolve(0.2) dan "Stop!" scene 01084 with Dissolve(0.2) drn "Don't move!" scene 01085 with Dissolve(0.2) mc_sin_name "Ahhhh!!" scene 01086 with Dissolve(0.2) mc_sin_name "SARA!" mc_sin_name "Where is she!" scene 01087 with Dissolve(0.2) drn "There's no one called Sara here." drn "Calm down." scene 01088 with Dissolve(0.2) ani "Doctor!" scene 01089 with Dissolve(0.2) drn "Quick, Annie, bring 1 mg of Midazolam and 2.5 mg of Clonazepam." scene 01090 with Dissolve(0.2) drn "Please calm down." scene 01091 with Dissolve(0.2) mc_sin_name "SARAAA!" scene 01092 with Dissolve(0.2) mc_sin_name "SARAAA!" scene 01093 with Dissolve(0.2) ani "I'm here, let me." scene 01094 with Dissolve(0.2) ani "Calm down, easy." ani "Calm down." scene 01095 with Dissolve(0.2) dan "I don't think that's going to be enough." dan "He's too strong for someone that's been in a coma for so long." scene 01096 with Dissolve(0.2) drn "We can't give him any more until we see how he reacts." scene 01097 with Dissolve(0.2) mc_sin_name "AHHHHHHHH!" mc_sin_name "Let me go!" scene 01098 with Dissolve(0.2) ani "Now the second dose." scene 01099 with Dissolve(0.2) drn "Quick, Annie." scene 01100 with Dissolve(0.2) mc_sin_name "Damn it! Let go of me right now!" mc_sin_name "SARAA!" scene 01101 with Dissolve(0.2) mc_sin_name "Where are you?" scene 01102 with Dissolve(0.2) mc_sin_name "Sara, honey, come here!" scene 01103 with Dissolve(0.2) mc_sin_name "Don't go." mc_sin_name "Stay with me." scene 01104 with Dissolve(0.2) ani "Who could this Sara be?" scene 01105 with Dissolve(0.2) drn "I don't know. But don't worry, I know this gets to you." drn "You've grown fond of him after all this time, it's normal for you to feel bad." scene 01105a with Dissolve(0.2) drn "He's woken up, that's something." drn "We can find out who this Sara is later." scene 01106 with Dissolve(0.2) drn "Thank you, Daniel." drn "Are you okay?" scene 01107 with Dissolve(0.2) dan "Yes, Doctor, don't worry." dan "What a beast, I thought he'd be weaker." scene 01108 with Dissolve(0.2) drn "We can see he's not, and we don't know how long he was missing until they found him." scene 01109 with Dissolve(0.2) ani "Any news on that?" scene 01110 with Dissolve(0.2) drn "Nothing." drn "I spoke to the missing persons registry and port authority earlier, but it's business as usual." scene 01111 with Dissolve(0.2) drn "No one's looking for him or reported him missing." drn "All we have is a name: Sara." scene 01112 with Dissolve(0.2) drn "For now, let's see how he evolves these next few days." drn "And then we'll see what we do." scene 01113 with Dissolve(0.2) drn "Go rest, Annie." scene 01114 with Dissolve(0.2) drn "Daniel, keep an eye out tonight in case he wakes up again." drn "If that happens, give him 10 mg of Olanzapine, so we can try to calm those hallucinations." scene 01115 with Dissolve(0.2) drn "Thanks guys, good job." show ma08 $ renpy.pause(7) scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... An hour later at Annie's ...{/color}{/size}{/font}" with moveinright scene 01120 with Dissolve(0.2) ani "(You finally woke up.)" ani "(We'll finally find out who you are.)" scene 01121 with Dissolve(0.2) ani "(And who this Sara is.)" scene 01122 with Dissolve(0.2) ani "(Everything changed for me the day you arrived.)" scene 01123 with Dissolve(0.2) ani "(I wanted to know what happened to you, where you'd been.)" scene 01124 with Dissolve(0.2) ani "(If someone helped you.)" scene 01125 with Dissolve(0.2) ani "(I just hope you get your life back, just the way it was.)" scene 01126 with Dissolve(0.2) $ renpy.pause() scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... The next morning ...{/color}{/size}{/font}" with moveinright pause scene 01127 with Dissolve(0.2) mc_sin_name "Sara?" scene 01127a with Dissolve(0.2) mc_sin_name "Sara, where are you?" scene 01128 with Dissolve(0.2) menu: "Get up[KoGa3WTChange1](choice is not essential/more content)": jump versionunolevantarse "Remain still[KoGa3WTChange1](choice is not essential)": jump versionunoquieto label versionunolevantarse: scene r010101 with Dissolve(0.2) $ renpy.pause() scene r010102 with Dissolve(0.2) mc_sin_name "Sara!" scene r010103 with Dissolve(0.2) mc_sin_name "Sara, come here!" scene r010104 with Dissolve(0.2) play sound "audio/sfx/caidaAlSuelo.mp3" $ renpy.pause() stop sound scene r010105 with Dissolve(0.2) mc_sin_name "Saraaaa!" scene r010105a with Dissolve(0.2) $ renpy.pause() scene r010106 with Dissolve(0.2) ani "My God." scene r010107 with Dissolve(0.2) ani "Easy, you can't be moving." ani "You're still too weak." scene r010108 with Dissolve(0.2) mc_sin_name "Sara?" scene r010109 with Dissolve(0.2) ani "I'm not Sara, my name is Annie." ani "Let's get you back to bed." scene r010110 with Dissolve(0.2) mc_sin_name "But Sara needs..." scene r010111 with Dissolve(0.2) ani "Hey, you need to relax." ani "Stay calm." scene r010112 with Dissolve(0.2) ani "Who's Sara?" ani "You keep calling for her." scene r010113 with Dissolve(0.2) mc_sin_name "She's..." scene r010114 with Dissolve(0.2) $ renpy.pause() scene r010115 with Dissolve(0.2) ani "Who is she? Tell me." scene r010114 with Dissolve(0.2) $ renpy.pause() jump versionunocontinua label versionunoquieto: scene r010201 with Dissolve(0.2) mc_sin_name "Sara!" scene r010202 with Dissolve(0.2) s "Don't worry, it's all right." s "I'm here." scene r010203 with Dissolve(0.2) s "Don't get up." scene r010203a with Dissolve(0.2) mc_sin_name "Sara! Honey." scene r010115 with Dissolve(0.2) ani "I'm not Sara." ani "Who is she?" scene r010113 with Dissolve(0.2) mc_sin_name "Sara is..." scene r010115 with Dissolve(0.2) ani "Calm down, tell me." ani "Who is she?" scene r010113 with Dissolve(0.2) mc_sin_name "My..." scene r010208 with Dissolve(0.2) ani "Your what?" scene r010209 with Dissolve(0.2) ani "Come on, tell me." jump versionunocontinua label versionunocontinua: scene 01129 with Dissolve(0.2) drn "Good morning, Annie." scene 01130 with Dissolve(0.2) drn "Any news?" scene 01131 with Dissolve(0.2) ani "Good morning doctor, I heard voices and came in." ani "He was conscious, but went right back to sleep." scene 01132 with Dissolve(0.2) drn "That's normal, until the brain recovers its functions, he will show some abnormalities." drn "We'll have to run some tests after watching him for a few days to see if he's suffered brain damaged." scene 01133 with Dissolve(0.2) drn "For the time being we'll keep administering painkillers, along with more saline." drn "He will have to gradually recover with that." scene 01134 with Dissolve(0.2) ani "Good, doctor. I have a question." scene 01135 with Dissolve(0.2) ani "What happens once he recovers?" scene 01136 with Dissolve(0.2) drn "In the event that he fully recovers, I don't know, but we can't keep him here any longer." drn "We have a lot of people waiting for a bed." scene 01137 with Dissolve(0.2) drn "And if he doesn't fully recover, we'll have to take him to the psychiatric recovery center." drn "From the way he woke up yesterday and the strength he showed, I think it would be for the best." scene 01138 with Dissolve(0.2) ani "But doctor, he doesn't have anyone that we know of, he won't be in any condition to be outside alone." ani "He came in here with no clothes, nothing." scene 01139 with Dissolve(0.2) drn "I know, Annie, but unless you can come up with a better solution, that's all the Hospital can do for him." scene 01140 with Dissolve(0.2) drn "I'll be doing my rounds with the patients." drn "If anything else happens, let me know." scene 01141 with Dissolve(0.2) ani "Yes, doctor." scene 01142 with Dissolve(0.2) $ renpy.pause() scene 01143 with Dissolve(0.2) ani "(I'll figure something out, I won't leave you alone.)" scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... That same night ...{/color}{/size}{/font}" with moveinright scene 01144 with Dissolve(0.2) $ renpy.pause() scene 01145 with Dissolve(0.2) $ renpy.pause() scene 01146 with Dissolve(0.2) mc_sin_name "Sara." scene 01147 with Dissolve(0.2) $ renpy.pause() scene 01148 with Dissolve(0.2) ani "Hello." scene 01149 with Dissolve(0.2) ani "Shhh." scene 01150 with Dissolve(0.2) ani "My name is Annie." ani "Do you remember your name?" scene 01151 with Dissolve(0.1) mc_sin_name "I..." $ f_name = renpy.input(__("{b}What's your name?{/b}")) $ f_name = f_name.strip() if f_name == "": $ mc = Character ("Alex", color="#AFC7FF") elif True: $ mc = Character ("[f_name!t]", color="#AFC7FF") scene 01151a with Dissolve(0.2) ani "Easy." scene 01151b with Dissolve(0.2) mc "[mc]." scene 01152 with Dissolve(0.2) ani "Hello, [mc], who is Sara?" scene 01153 with Dissolve(0.2) if patch: mc "She's my... daughter." else: mc "She's my... best friend." scene 01154 with Dissolve(0.2) mc "She was right there." scene 01155 with Dissolve(0.2) ani "No, she wasn't there, that was me." ani "You've been hallucinating." scene 01156 with Dissolve(0.2) ani "Do you know where you are?" scene 01157 with Dissolve(0.1) mc "No." scene 01156 with Dissolve(0.1) ani "What's the last thing you remember?" scene 01157 with Dissolve(0.1) mc "I was testing a boat I'd just rented." scene 01160 with Dissolve(0.2) ani "Okay, what next?" scene 01161 with Dissolve(0.1) mc "I don't know, I don't remember more than that." mc "Where's Sara? I want to see Sara!" scene 01162 with Dissolve(0.2) ani "Sara's not here. You've been here for two years, no one came to see you or asked for you." ani "Calm down, don't get upset." ani "I'm here to help you." scene 01164 with Dissolve(0.2) ani "You've been in a coma for a long time, so it's only natural that you're disoriented and seeing things that aren't there." ani "Your brain was off for a long time, it needs to slowly get back to normal." scene 01165 with Dissolve(0.1) mc "But..." scene 01166 with Dissolve(0.2) ani "Now rest." ani "You need it." scene 01167 with Dissolve(0.2) mc "Thank you." scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... A few months later ...{/color}{/size}{/font}" with moveinright scene 01168 with Dissolve(0.2) "After much work, recovery and many nights in the Hospital, [mc] managed to regain quite a bit of mobility in his body." scene 01169 with Dissolve(0.2) "He managed to control his impulses and his mind, but still maintains a state of partial amnesia." scene 01170 with Dissolve(0.2) "He barely remembers anything from that morning when he went out on the boat, or even what happened afterwards." scene 01171 with Dissolve(0.2) "Every day, Annie was building a very strong friendship with [mc], and he saw her as the only person he could trust." scene 01172 with Dissolve(0.2) "After all this time, it was time for the final review." scene 01173 drn "Well, [mc]." drn "I'm very surprised with all your progress." scene 01174 with Dissolve(0.2) mc "I wouldn't have made it without Annie." mc "I have her to thank for that." scene 01175 with Dissolve(0.2) drn "I know. Even after her shift, she'd often stay with you." drn "Having someone around during difficult times can help a lot." scene 01176 with Dissolve(0.2) drn "I don't think it will be necessary to send you to the psychiatric recovery center." drn "You're able to control your impulses, and with the necessary medication, you won't have any issues." scene 01177 with Dissolve(0.2) drn "The only problem we have now is, due to this evaluation report, we can't keep you here any longer." drn "We have too many patients and not enough rooms available." scene 01178 with Dissolve(0.2) drn "Do you have somewhere to go?" scene 01179 with Dissolve(0.2) mc "I'm not sure, Doctor. Ever since I got here, I don't know anything about my situation outside." scene 01180 with Dissolve(0.2) ani "I gathered information about [mc] during this time." ani "With the information he gave me, I was able to find that he was declared missing a few years ago." scene 01181 with Dissolve(0.2) ani "Some time later, he was officially declared dead after a tour boat was found on the high seas with some of his belongings, but with no body." scene 01182 with Dissolve(0.1) mc "About that day, I remember the man from the port company. He told me that the owner had left me the keys so I could test the boat." scene 01183 with Dissolve(0.2) ani "The problem is that company has been closed for more than ten years, nobody works there." scene 01184 with Dissolve(0.2) mc "But there was this guy, I remember him very well, he was wearing a port worker uniform. He was cleaning around and gave me the keys to the boat." scene 01185 with Dissolve(0.1) ani "I checked the reports from the port, it had stopped providing service, and all the companies left the area." ani "The port and all of its workers moved to Maple Grove." scene 01186 with Dissolve(0.2) drn "So if you were declared dead, you have nothing." scene 01187 with Dissolve(0.1) mc "Looks like it." scene 01188 with Dissolve(0.2) drn "I can try talking to some contacts." drn "I might be able to get some halfway house for under-resourced patients." scene 01189 with Dissolve(0.2) ani "No need." scene 01190 with Dissolve(0.2) ani "If [mc] would accept, he can come to my house until he finds something." scene 01191 with Dissolve(0.2) ani "If it's okay with you." scene 01192 with Dissolve(0.2) mc "Thank you Annie, I appreciate everything you do for me. I'll go with you." mc "But only for a while, until I find something." scene 01193 with Dissolve(0.2) drn "Perfect." scene 01194 with Dissolve(0.2) drn "The only thing left to do would be to get your legal status sorted out, have it declared you're not dead." drn "It would only take a few days." scene 01195 with Dissolve(0.1) mc "No, Dr. Nolan, not right now. I'd rather they keep thinking I'm missing or dead, at least for a while." scene 01196 with Dissolve(0.2) mc "I want to know what happened to me." mc "And if there's someone responsible for all this." scene 01197 with Dissolve(0.2) mc "Only then I'll do everything else." mc "Please." scene 01198 with Dissolve(0.2) drn "Okay, your hospital data for the moment will remain confidential." drn "But you'll need to fix the legal issues." scene 01199 with Dissolve(0.1) mc "I will, I promise." scene 01200 with Dissolve(0.2) drn "Well, that's all we have to talk about." drn "You can leave whenever you wish, [mc]." scene 01201 with Dissolve(0.2) mc "Thank you, Doctor." scene 01202 with Dissolve(0.2) ani "Wait for me in the cafeteria, I'll come get you after my shift, then we can leave." scene 01203 with Dissolve(0.2) mc "Okay." scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... Two hours later ...{/color}{/size}{/font}" with moveinright scene 01204 with Dissolve(0.2) ani "I'm done, let's we go?" scene 01205 with Dissolve(0.2) mc "Yes." mc "But I wanted to ask you something." scene 01206 with Dissolve(0.2) ani "Sure, ask away." scene 01207 with Dissolve(0.1) menu: "Why are you helping me?[KoGa3WTChange1](your preferred choice/no big game impact so far)[KoGa3WTChange1](maybe better choice)": $ rt01_v01 = True jump respuestaunov01 "What interest do you have in all this?[KoGa3WTChange1](your preferred choice/no big game impact so far)": $ rt02_v01 = True jump respuestadosv01 label respuestaunov01: scene r010301 with Dissolve(0.2) ani "I'd just started working at the Hospital, and it was my first night in the emergency room." ani "Over the past two years, I tried to find out everything about you." show screen notifySara(__("Annie will remember this")) scene r010302 with Dissolve(0.2) ani "But you were such a mystery." ani "And also because I saw the days going by and no one came to see you." hide screen notifySara scene r010303 with Dissolve(0.2) ani "That also had quite an impact on me, seeing that people had visitors or acquaintances asking questions." ani "And you had no one. In a coma, alone in a room." scene r010304 with Dissolve(0.2) ani "That's why I want to help you get your life back." ani "To find out what happened." scene r010305 with Dissolve(0.2) mc "I appreciate it Annie, I really do." mc "I also want to get back what I had." jump haciacasa label respuestadosv01: scene r010401 with Dissolve(0.2) ani "I have no ulterior motives." ani "Just helping you." show screen notifySara(__("Annie will remember this")) scene r010402 with Dissolve(0.2) ani "You don't always have to assume someone wants to hurt you." ani "We don't know if someone is involved in what happened to you." hide screen notifySara scene r010403 with Dissolve(0.2) ani "Maybe it just happened." ani "But I ask that you never doubt me again." scene r010404 with Dissolve(0.2) mc "I'm sorry, I didn't mean to." mc "And I want the same thing you do, to find out what happened." jump haciacasa label haciacasa: scene 01208 with Dissolve(0.2) ani "Come on, I'm sure you want to get out of here now." scene 01209 with Dissolve(0.1) mc "Yeah, let's go." scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... At Annie's ...{/color}{/size}{/font}" with moveinright scene 01210 with Dissolve(0.2) ani "I'm home Kayla, I have a visitor!" scene 01211 with Dissolve(0.2) if patch: ani "Kayla is my little sister." else: ani "Kayla is my roomie." ani "She's a bit rebellious, but she's a good girl." scene 01212 with Dissolve(0.2) mc "I don't want to be a bother." mc "I promise I won't stay long." scene 01213 with Dissolve(0.1) ani "Don't worry." ani "You can stay as long as you need to." scene 01213a with Dissolve(0.2) ani "And I wanted to tell you, I love the way your hair looks." ani "I took the liberty of cutting it and dyeing it to make it look darker." ani "It gives you a bad boy look." scene 01214 with Dissolve(0.2) mc "Thank you for everything you do, and for taking care of me." scene 01214a with Dissolve(0.1) ani "You don't have to thank me, [mc]." ani "I do it because I feel like it." scene 01215 with Dissolve(0.2) ani "Kayla!" ani "Come say hello!" scene 01217 with Dissolve(0.2) kay "I'm coming, I was in the bathroom." scene 01218 with Dissolve(0.2) kay "Why, hello, I'm Kayla." scene 01219 with Dissolve(0.2) mc "Hi Kayla, my name is [mc]." scene 01220 with Dissolve(0.2) ani "He'll be staying with us for a while." ani "So behave." scene 01221 with Dissolve(0.2) kay "Don't worry, I'll be a little angel." scene 01222 with Dissolve(0.2) kay "If [mc] wants to, he could sleep with me in my room." scene 01223 with Dissolve(0.2) ani "Stop it Kayla, I know what you're thinking, and no." ani "He'll sleep in your room and you'll sleep with me." scene 01224 with Dissolve(0.2) kay "Gee, that's too bad." scene 01225 with Dissolve(0.2) mc "I promise I won't leave you out of a room for long." mc "I don't want to intrude." scene 01226 with Dissolve(0.1) kay "Don't worry, it's good to have someone else in the house." kay "Just the two of us alone was kind of boring." scene 01227 with Dissolve(0.2) kay "But with you here, it might be interesting." kay "It's been a long time since a handsome man came into this house." scene 01228 with Dissolve(0.2) ani "That's enough, Kayla." scene 01228a with Dissolve(0.2) ani "And cover up a little bit because he can see everything." scene 01229 with Dissolve(0.2) ani "Forgive her, [mc]." ani "Come, I'll show you to your room." scene 01230 with Dissolve(0.2) ani "And see if there's anything in the fridge for dinner." scene 01231 with Dissolve(0.2) kay "There's never anything for dinner in this house, you know that." scene 01232 with Dissolve(0.2) ani "Then order something." scene 01233 with Dissolve(0.2) $ renpy.pause() scene 01234 with Dissolve(0.2) ani "You will sleep here." ani "I'll change your bed sheets later, I want you to have clean sheets." scene 01235 with Dissolve(0.2) mc "Wow, she loves to rock." mc "Now I understand what you meant when you said rebellious." scene 01236 with Dissolve(0.2) ani "Yeah, she loves it, that's why she's kinda uncontrollable sometimes." ani "But she'll help you if you need anything." scene 01237 with Dissolve(0.1) mc "Sara loved artistic gymnastics." mc "She would spend all day showing me new poses." scene 01238 with Dissolve(0.2) ani "I could tell you loved her very much." scene 01239 with Dissolve(0.1) mc "Yes, I don't know why her mother moved away from us." mc "She disappeared without a word." scene 01240 with Dissolve(0.2) mc "Sara and I became inseparable." mc "We were together all day." scene 01241 with Dissolve(0.1) ani "I'm going to help you, we'll find her." ani "And we'll find out what happened." scene 01242 with Dissolve(0.2) ani "Now make yourself comfortable, we'll have dinner afterwards." scene 01243 with Dissolve(0.2) mc "Thanks again, Annie." scene 01244 with Dissolve(0.2) $ renpy.pause() scene 01245 $ renpy.pause() scene 01246 with Dissolve(0.2) mc "(I will find you, honey.)" mc "(I'll find out what happened.)" scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... One hour later ...{/color}{/size}{/font}" with moveinright scene 01247 with Dissolve(0.2) mc "I'm full, thank you." scene 01248 with Dissolve(0.2) kay "Just like the food they used to give you in the Hospital?" scene 01249 with Dissolve(0.2) ani "Hey, their food isn't that bad." scene 01250 with Dissolve(0.2) mc "I agree with her, pizza is much better." scene 01251 with Dissolve(0.2) kay "[mc], you really don't remember anything that happened to you?" scene 01252 with Dissolve(0.2) ani "Wow, you didn't seem all that interested when I was telling you about him." ani "All of a sudden you want to know." scene 01253 with Dissolve(0.2) kay "People change." scene 01253a with Dissolve(0.2) ani "Well, then change your manners, you're showing everything." scene 01253b with Dissolve(0.2) kay "Come on, leave me alone." scene 01253c with Dissolve(0.2) kay "So, [mc], you don't remember anything?" scene 01254 with Dissolve(0.2) mc "That's right, I don't remember anything that happened to me." mc "It's like everything after the day I went out on the boat just got erased." scene 01255 with Dissolve(0.2) kay "But will you get those memories back?" scene 01256 with Dissolve(0.2) mc "I don't know." scene 01257 with Dissolve(0.2) ani "According to the medical findings, it's hard to tell, maybe you do, maybe you don't." scene 01258 with Dissolve(0.2) ani "Sometimes, patients recover some memory through shock therapy." scene 01259 with Dissolve(0.2) kay "What's that?" kay "It sounds like they give you shocks to make you remember." scene 01260 with Dissolve(0.2) kay "They're going to torture you, [mc]!" scene 01261 with Dissolve(0.2) ani "No, silly." ani "Shock therapy is about putting the patient in a situation similar to when they lost their memory." scene 01262 with Dissolve(0.2) ani "That way, his mind assimilates and could bring back his memory of that moment in his life." scene 01263 with Dissolve(0.2) mc "Back to where it all started?" scene 01264 with Dissolve(0.2) ani "That's right, we could go back to the port where you say you saw that man, you might recall something." scene 01265 with Dissolve(0.2) kay "My way would be better, just punching him." scene 01266 with Dissolve(0.2) mc "Haha." scene 01267 with Dissolve(0.2) ani "Well, I think it's time to go to sleep." scene 01268 with Dissolve(0.2) ani "I think it will do you good." scene 01269 with Dissolve(0.2) mc "Yes, you're right." mc "I could use some rest." scene 01270 with Dissolve(0.2) mc "Thank you girls for tonight." mc "I really needed it." scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... A few hours later ...{/color}{/size}{/font}" with moveinright scene 01271 with Dissolve(0.2) $ renpy.pause() show animation02V01 with fade $ renpy.pause(0.8) scene 01272 with Dissolve(0.2) $ renpy.pause() scene 01273 with Dissolve(0.2) $ renpy.pause() scene 01274 with Dissolve(0.2) $ renpy.pause() scene 01275 with Dissolve(0.2) $ renpy.pause() scene 01276 with Dissolve(0.2) $ renpy.pause() show animation03V01 with fade $ renpy.pause(1.4) scene 01277 with Dissolve(0.2) $ renpy.pause() scene 01278 with Dissolve(0.2) $ renpy.pause() show animation04V01 with fade $ renpy.pause(1.1) scene 01279 with Dissolve(0.2) $ renpy.pause() scene 01280 with Dissolve(0.2) $ renpy.pause() scene 01281 with Dissolve(0.2) $ renpy.pause() scene 01282 with Dissolve(0.2) $ renpy.pause() scene 01282a with Dissolve(0.2) $ renpy.pause() scene 01282b with Dissolve(0.2) $ renpy.pause() scene 01282c with Dissolve(0.2) $ in_erotic = True $ renpy.pause() scene 01283 with Dissolve(0.2) python: change_and_shuffle_music() $ renpy.music.set_volume(0.4,0) mc "What are you doing?" mc "Why are you... ?" scene 01284 with Dissolve(0.2) kay "Shut up." kay "I'm here for you to make it up to me for taking my bed." scene 01285 with Dissolve(0.2) kay "Everything has a price." kay "And this is mine for letting you sleep here." scene 01286 with Dissolve(0.2) mc "And Annie?" scene 01287 with Dissolve(0.2) kay "She's asleep, so don't scream." scene 01288 with Dissolve(0.2) kay "And most importantly." kay "Don't say anything." scene 01289 with Dissolve(0.2) mc "All right." mc "I won't say anything." scene 01290 with Dissolve(0.2) kay "Now give me what I want." kay "All of it." show animation05V01 with fade $ renpy.pause() scene 01291 with Dissolve(0.2) if not persistent.kaylavid01: $ persistent.kaylavid01 = True show screen notifySara(__("Unlocked video: Kayla")) mc "Ahh" scene 01292 with Dissolve(0.2) kay "Yes, that's it, give me more." hide screen notifySara show animation06V01 with fade $ renpy.pause() scene 01293 with Dissolve(0.2) if not persistent.kaylavid02: $ persistent.kaylavid02 = True show screen notifySara(__("Unlocked video: Kayla")) kay "You're huge." kay "Keep going." hide screen notifySara show animation05V01 with fade $ renpy.pause() scene 01294 with Dissolve(0.2) kay "Now fuck me harder." kay "Fuck me, [mc]." scene 01296 with Dissolve(0.2) kay "I want to feel it deep inside me." kay "The whole thing." show animation07V01 with fade $ renpy.pause() scene 01297 with Dissolve(0.2) mc "I'm going to cum." if not persistent.kaylavid03: $ persistent.kaylavid03 = True show screen notifySara(__("Unlocked video: Kayla")) scene 01298 with Dissolve(0.2) kay "Do it inside." kay "I'm on the pill, don't worry." hide screen notifySara scene 01299 with Dissolve(0.1) mc "But..." scene 01298 with Dissolve(0.2) kay "Just shut up, shoot all that cum inside." kay "I love how it feels." show animation07V01 with fade $ renpy.pause() scene 01301 with Dissolve(0.2) mc "Ahhh." scene 01302 with Dissolve(0.2) kay "God, this is why I love fucking." kay "It's the best thing ever." scene 01303 with Dissolve(0.2) kay "And getting cum all over me." scene 01304 with Dissolve(0.2) mc "It felt so good, I needed that." scene 01305 with Dissolve(0.2) kay "It was quick but intense." kay "We'll take our time some other day." scene 01306 with Dissolve(0.2) kay "For now, just go to sleep." kay "Annie usually gets up several times a night." scene 01307 with Dissolve(0.2) kay "Sleep well, [mc]." scene 01308 with Dissolve(0.2) mc "You too." $ in_erotic = False scene 01309 with Dissolve(0.2) $ renpy.pause() python: change_and_shuffle_music() $ renpy.music.set_volume(0.4,0) scene 01310 with Dissolve(0.2) $ renpy.pause() scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... The next morning ...{/color}{/size}{/font}" with moveinright scene 01311 with Dissolve(0.2) $ renpy.pause() scene 01312 with Dissolve(0.2) mc "(God, what happened last night?)" scene 01313 with Dissolve(0.2) mc "(I really needed it after so long.)" mc "(I couldn't say no.)" scene 01314 with Dissolve(0.2) mc "(A long time ago I would've said no.)" mc "(But now I couldn't.)" scene 01315 with Dissolve(0.2) mc "(I hope Annie doesn't find out.)" scene 01318 with Dissolve(0.2) ani "You left your clothes on the floor last night." ani "You could have put them away." scene 01319 with Dissolve(0.2) kay "I was so hot." scene 01320 with Dissolve(0.2) if patch: kay "Don't complain so much, sis." else: kay "Don't complain so much." scene 01321 with Dissolve(0.2) ani "Hey, good morning." scene 01322 with Dissolve(0.2) ani "Did you sleep well?" scene 01323 with Dissolve(0.2) mc "Yes, I actually slept very well." mc "I needed that." scene 01324 with Dissolve(0.2) ani "I'm glad." scene 01325 with Dissolve(0.2) ani "There's coffee, help yourself." scene 01326 with Dissolve(0.2) mc "Good morning, Kayla." scene 01327 with Dissolve(0.2) kay "Hello, [mc]." kay "So, did you sleep well?" scene 01328 with Dissolve(0.2) mc "Yes, very much so." scene 01329 with Dissolve(0.2) kay "I'm glad. My bed is very comfortable." scene 01329a with Dissolve(0.2) menu: "What are we doing today?" if rt01_v01 and not rt02_v01: jump opcionunoV01 "Do you plan to do anything today?" if rt02_v01 and not rt01_v01: jump opciondosV01 label opcionunoV01: scene 010501 with Dissolve(0.2) ani "As I told you at the Hospital, I'm going to help you. So today we'll go to the port where you say you talked to the man." ani "We'll see where we go from there, depends on what we find." scene 010502 with Dissolve(0.2) ani "Right now we've got nothing, so that's the first place to look." scene 010503 with Dissolve(0.2) mc "Yeah, you're right." scene 010504 with Dissolve(0.2) mc "In that case, I'll get the coffee and we can go." jump continuafinal label opciondosV01: scene 010601 with Dissolve(0.2) ani "At the Hospital you gave me the impression you thought I had ulterior motives." ani "I don't. I'm just trying to help you, I hope you won't doubt me again." scene 010602 with Dissolve(0.2) ani "So today we will look for information on what happened to you." ani "But I will need you to trust me." scene 010603 with Dissolve(0.2) mc "It's okay, the hospital thing was my bad." mc "I'm sorry." jump continuafinal label continuafinal: scene 01330 with Dissolve(0.2) ani "I'm going to the bathroom, we can go after." scene 01331 with Dissolve(0.2) $ renpy.pause() scene 01332 with Dissolve(0.2) kay "I loved feeling all that inside." kay "We have to do it again." scene 01333 with Dissolve(0.2) mc "I liked it too." mc "But we'll have to be careful." scene 01334 with Dissolve(0.2) mc "Sometimes the pills don't work." scene 01336 with Dissolve(0.2) kay "Take it easy." kay "Are you afraid of being a daddy?" scene 01337 with Dissolve(0.1) if patch: mc "I already have Sara, I don't need anyone else." else: mc "No." scene 01338 with Dissolve(0.2) kay "Wow." if patch: kay "Can you imagine if we gave her a brother or sister." scene 01340 with Dissolve(0.2) mc "Stop it, Kayla." scene 01341 with Dissolve(0.2) mc "Sara and I..." scene 01342 with Dissolve(0.2) ani "I'm ready." scene 01343 with Dissolve(0.2) ani "We can leave whenever you want." scene 01344 with Dissolve(0.2) mc "Okay, let's go." scene 01345 with Dissolve(0.2) $ renpy.pause() scene 01346 with Dissolve(0.2) kay "We'll talk later, [mc]." scene 01347 with Dissolve(0.2) kay "Have fun." scene 01348 with Dissolve(0.2) ani "You be good, now." ani "And get a job like we discussed." scene 01349 with Dissolve(0.2) $ renpy.pause() scene 01350 with Dissolve(0.2) mc "Annie, there's a letter on the floor." scene 01351 with Dissolve(0.2) ani "That's strange, they never leave my letters like that." scene 01352 with Dissolve(0.2) $ renpy.pause() scene 01353 with Dissolve(0.2) $ renpy.pause() scene 01354 with Dissolve(0.2) $ renpy.pause() scene 01355 with Dissolve(0.2) ani "It can't be." scene 01356 with Dissolve(0.1) mc "Let's go." scene 01355 with Dissolve(0.1) ani "But we don't know if it's true." ani "[mc], we have to be careful." scene 01356 with Dissolve(0.1) mc "You said we don't have any clues, all we have is the last place I was." scene 01357 with Dissolve(0.2) mc "This changes everything." scene 01358 with Dissolve(0.2) $ renpy.pause() scene 01359 with Dissolve(0.2) ani "Kayla, don't open the door to anyone!" scene 01360 with Dissolve(0.2) kay "What's wrong?" scene 01361 with Dissolve(0.1) ani "Listen to me, stay here and don't let anyone through this door!" scene 01362 with Dissolve(0.2) kay "Okay." scene 01363 with Dissolve(0.2) ani "Come on, we have a long trip ahead of us." scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... Some time later ...{/color}{/size}{/font}" with moveinright scene 01364 with Dissolve(0.2) ani "This is all so weird." ani "How did they know you'd be at my house?" scene 01365 with Dissolve(0.2) mc "They might not know." mc "They know you've been looking into my past." scene 01366 with Dissolve(0.2) mc "What I don't understand is where those coordinates are for, and what Sara is doing there." scene 01367 with Dissolve(0.1) ani "I know where that address is." ani "But I want to be sure." scene 01368 with Dissolve(0.2) mc "Oh, it could be another trap, like the day I went to the harbor." scene 01369 with Dissolve(0.2) ani "Whatever it is, we'll find out." scene 01370 with Dissolve(0.2) ani "But I need to know where you are, in case we ever get separated." ani "There's a phone in the glove compartment." scene 01371 with Dissolve(0.2) ani "It's for you." ani "You already have my number and Kayla's number in the address book." scene 01372 with Dissolve(0.2) mc "Thanks a lot." mc "That's so nice of you." scene 01373 with Dissolve(0.2) ani "We'll get to the bottom of all this, [mc]." ani "I promise." scene background2 with Fade(0.3, 0.0, 0.3) centered "{font=fonts/Alice-Regular.ttf}{size=90}{color=#800020}... One hour later ...{/color}{/size}{/font}" with moveinright scene 01374 with Dissolve(0.2) show screen PhoneCall mc "Where are we going, Annie?" scene 01375 with Dissolve(0.2) ani "We're here." scene 01376 with Dissolve(0.2) mc "What would Sara be doing in this area?" scene 01377 with Dissolve(0.2) ani "There you go." scene 01378 with Dissolve(0.2) $ renpy.pause() scene 01379 with Dissolve(0.1) mc "But..." scene 01380 with Dissolve(0.2) ani "St. Michael's Convent." ani "This is where I went as a teenager." scene 01381 with Dissolve(0.2) ani "Before you ask, yes, I was planning to become a nun." ani "But I thought helping others from the outside would be better." scene 01382 with Dissolve(0.2) mc "But Sara isn't..." scene 01383 with Dissolve(0.1) ani "Relax, I think if she's here, she'll still be a novice." ani "She needs a few years to become a nun." scene 01384 with Dissolve(0.2) mc "Let's go, hurry." scene 01385 with Dissolve(0.2) ani "No, you stay here." ani "I'll go in and see if she's here." scene 01386 with Dissolve(0.2) ani "It's better for you to keep a low profile." scene 01387 with Dissolve(0.2) $ renpy.pause() scene 01388 with Dissolve(0.2) $ renpy.pause() scene 01389 with Dissolve(0.2) mc "(This is crazy.)" mc "(St. Michael's Convent.)" scene 01390 with Dissolve(0.2) mc "(Sara.)" jump v02 # Decompiled by unrpyc: https://github.com/CensoredUsername/unrpyc