default iLinda = "Linda" default ChildscallMom = "Mommy" default LoChildscallMom = ChildscallMom.lower() default iDad_name = "Bob" default ChildscallDad = "Daddy" default LoChildscallDad = ChildscallDad.lower() init 100 python: Mom = Character("Mom", color="#CC00CC") Linda = Character("[iLinda]", color="#CC00CC") Dad = Character("Dad", color="#0000CC") Bob = Character("[iDad_name]", color="#0000CC") import inspect def replace_text(text): frame = inspect.currentframe() who = frame.f_back.f_locals.get('who') text = text.replace("We’ve known each other for YEARS! Caroline was the one who recommended I move in when Linda had another room available for renting. ", "") text = text.replace("The whole reason I took you in as a tenant was because you were a straight A student.", "Du warst schon immer ein Musterschüler.") text = text.replace("Well, I’m a fully grown adult and her tenant - she almost certainly would have left it where it was.", "Nun, ich bin eine erwachsene Frau und ihre Tochter - sie hätte es mit Sicherheit dort gelassen, wo es war.") text = text.replace("Cum for your best friend- Cum for me!", "Na los Spritz ab für deine große Schwester - ich will, dass du für mich kommst!") # text = text.replace("", "") # text = text.replace("", "") if who is MC: if not renpy.loadable("nomommy.rpy"): text = text.replace(" Mom ", " [ChildscallMom] ") text = text.replace(" mom ", " [LoChildscallMom] ") text = text.replace("Mom!", "[ChildscallMom]!") text = text.replace("mom!", "[LoChildscallMom]!") text = text.replace("Mom?", "[ChildscallMom]?") text = text.replace("mom?", "[LoChildscallMom]?") text = text.replace("Mom,", "[ChildscallMom],") text = text.replace("mom,", "[LoChildscallMom],") text = text.replace("Mom.", "[ChildscallMom].") text = text.replace(" Dad ", " [ChildscallDad] ") text = text.replace(" dad ", " [LoChildscallDad] ") text = text.replace("Dad!", "[ChildscallDad]!") text = text.replace("dad!", "[LoChildscallDad]!") text = text.replace("Dad?", "[ChildscallDad]?") text = text.replace("dad?", "[LoChildscallDad]?") text = text.replace("Dad,", "[ChildscallDad],") text = text.replace("dad,", "[LoChildscallDad],") text = text.replace("Dad.", "[ChildscallDad].") text = text.replace("Landlady", "Mom") text = text.replace("landlady", "mom") text = text.replace("landlord", "dad") text = text.replace("Linda", "Mom") text = text.replace("linda", "mom") text = text.replace("Sara or Bob", "[ChildscallMom] oder [ChildscallDad]") text = text.replace("to betray Bob", "Dad zu betrügen") text = text.replace("", "") if who is Sara: if not renpy.loadable("nomommy.rpy"): text = text.replace(" Mom ", " [ChildscallMom] ") text = text.replace(" mom ", " [LoChildscallMom] ") text = text.replace("Mom!", "[ChildscallMom]!") text = text.replace("mom!", "[LoChildscallMom]!") text = text.replace("Mom?", "[ChildscallMom]?") text = text.replace("mom?", "[LoChildscallMom]?") text = text.replace("Mom,", "[ChildscallMom],") text = text.replace("mom,", "[LoChildscallMom],") text = text.replace("Mom.", "[ChildscallMom].") text = text.replace(" Dad ", " [ChildscallDad] ") text = text.replace(" dad ", " [LoChildscallDad] ") text = text.replace("Dad!", "[ChildscallDad]!") text = text.replace("dad!", "[LoChildscallDad]!") text = text.replace("Dad?", "[ChildscallDad]?") text = text.replace("dad?", "[LoChildscallDad]?") text = text.replace("Dad,", "[ChildscallDad],") text = text.replace("dad,", "[LoChildscallDad],") text = text.replace("Dad.", "[ChildscallDad].") text = text.replace("Landlady", "Mom") text = text.replace("landlady", "mom") text = text.replace("Linda", "Mom") text = text.replace("linda", "mom") text = text.replace("", "") if who is Caroline: if not renpy.loadable("nomommy.rpy"): text = text.replace(" Mom ", " [ChildscallMom] ") text = text.replace(" mom ", " [LoChildscallMom] ") text = text.replace("Mom!", "[ChildscallMom]!") text = text.replace("mom!", "[LoChildscallMom]!") text = text.replace("Mom?", "[ChildscallMom]?") text = text.replace("mom?", "[LoChildscallMom]?") text = text.replace("Mom,", "[ChildscallMom],") text = text.replace("mom,", "[LoChildscallMom],") text = text.replace("Mom.", "[ChildscallMom].") text = text.replace(" Dad ", " [ChildscallDad] ") text = text.replace(" dad ", " [LoChildscallDad] ") text = text.replace("Dad!", "[ChildscallDad]!") text = text.replace("dad!", "[LoChildscallDad]!") text = text.replace("Dad?", "[ChildscallDad]?") text = text.replace("dad?", "[LoChildscallDad]?") text = text.replace("Dad,", "[ChildscallDad],") text = text.replace("dad,", "[LoChildscallDad],") text = text.replace("Dad.", "[ChildscallDad].") text = text.replace("Mom and", " [ChildscallMom] and") text = text.replace("Landlady", "Mom") text = text.replace("landlady", "mom") text = text.replace("Linda", "Mom") text = text.replace("linda", "mom") text = text.replace("", "") if who is Mom or who is Linda: text = text.replace("landlady", "mom") text = text.replace("Landlady", "Mom") text = text.replace("Auntie", "meine Schwester") text = text.replace("", "") if who is Dad or who is Bob: text = text.replace("", "") if who is Judy: text = text.replace("landlord", "dad") text = text.replace("landlady", "mom") text = text.replace("roommate", "schwester") text = text.replace("", "") if who is Macy: text = text.replace("landlady", "mutter") text = text.replace("Landlady", "Mutter") text = text.replace("roommate", "Schwester") text = text.replace("", "") if who is Sidra: text = text.replace("You’re one of her tenants?", "Bist du sein Sohn?") text = text.replace("Well, perhaps you can tell her that the Milfy Lane Homeowners’ Association has a strict limit of TWO tenants per household.", "Nun, vielleicht kannst du ihr sagen, dass die Genossenschaft der Hauseigentümer der Milfy Lane einige Regeln hat.") text = text.replace("", "") return text config.say_menu_text_filter = replace_text init 9999 python: config.label_overrides.update( { "start" : "istart" } ) label istart: scene ML_morning_scene0_v1_p3 $ iLinda = renpy.input("Wie heißt sie? (Gib hier nicht Mom ein)", "Linda") if not iLinda: $ iLinda = "Linda" $ temp = iLinda.strip() $ iLinda = temp[0].upper() + temp[1:] if temp else '' $ ChildscallMom = renpy.input("Wie willst du sie nennen?", "Mommy") if not ChildscallMom: $ ChildscallMom = "Mommy" $ temp = ChildscallMom.strip() $ LoChildscallMom = temp $ ChildscallMom = temp[0].upper() + temp[1:] if temp else '' scene d_ml_and_f_bedroom_mornig_scene_v1_p2 $ iDad_name = renpy.input("Wie ist sein Name? (Gib hier nicht Dad ein)", "Bob") if not iDad_name: $ iDad_name = "Bob" $ temp = iDad_name.strip() $ iDad_name = temp[0].upper() + temp[1:] if temp else '' $ ChildscallDad = renpy.input("Wie willst du ihn nennen?", "Daddy") if not ChildscallDad: $ ChildscallDad = "Daddy" $ temp = ChildscallDad.strip() $ LoChildscallDad = temp $ ChildscallDad = temp[0].upper() + temp[1:] if temp else '' python: config.label_overrides.update( { "start" : "start" } ) jump start