From 614593d9c3e74a1156227be50fcc30b12ebd694e Mon Sep 17 00:00:00 2001 From: lunulae <45501964+lunulae@users.noreply.github.com> Date: Thu, 1 Jan 2026 23:23:39 -0600 Subject: [PATCH 1/3] new compliment --- .../game/script-compliments.rpy | 55 +++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/Monika After Story/game/script-compliments.rpy b/Monika After Story/game/script-compliments.rpy index b81b859430..6d90c51fa4 100644 --- a/Monika After Story/game/script-compliments.rpy +++ b/Monika After Story/game/script-compliments.rpy @@ -1358,3 +1358,58 @@ label mas_compliment_outfit_repeat: m 3hubsb "[other_quip]" return + +init 5 python: + addEvent( + Event( + persistent._mas_compliments_database, + eventlabel="mas_compliment_teaching", + prompt="Thanks for teaching me something new!", + unlocked=True + ), + code="CMP" + ) + +label mas_compliment_teaching: + if not renpy.seen_label("mas_compliment_teaching_2"): + call mas_compliment_teaching_2 + else: + call mas_compliment_teaching_3 + return + +label mas_compliment_teaching_2: + m 1hubla "Aww, [player]..." + m 3hublb "I'm glad I could teach you something!" + m 3ekb "It means a lot to me when you really take interest in what I'm saying..." + m 1eka "It really makes me feel appreciated." + menu: + "You inspire me to keep learning.": + $ mas_gainAffection(5, bypass=True) + m 1ekbfa "Oh, [player]..." + m 1hubfb "I'll do my best to keep thinking of things to teach, then!" + show monika 5hubfb at t11 zorder MAS_MONIKA_Z with dissolve_monika + m 5hubfb "Life is a long journey of learning, and I'm glad I'm on it with you." + + "You're so smart.": + $ mas_gainAffection(3, bypass=True) + m 1hublb "Ahaha~ You're too sweet." + m 3tublb "I do my best to keep sharp. Thank you for noticing!" + + "Will you do my homework for me?": + $ mas_loseAffection(0.5) + m 1eusdld "Uh..." + m 2rksdld "I think you should do it yourself, [player]." + return + +label mas_compliment_teaching_3: + python: + teaching_quips = [ + _("We're on a journey of learning together~"), + _("I'm happy to be your study buddy."), + _("I'll try to keep learning interesting things for you!'"), + ] + teaching_quip = random.choice(teaching_quips) + + m 1hubsb "[mas_compliments.thanks_quip]" + m 2ekbfb "[teaching_quip]" + return From abe0a617b14eb4362d0df3d63631cae0363588c6 Mon Sep 17 00:00:00 2001 From: lunulae <45501964+lunulae@users.noreply.github.com> Date: Thu, 1 Jan 2026 23:25:57 -0600 Subject: [PATCH 2/3] missing word --- Monika After Story/game/script-compliments.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monika After Story/game/script-compliments.rpy b/Monika After Story/game/script-compliments.rpy index 6d90c51fa4..33f4df3d67 100644 --- a/Monika After Story/game/script-compliments.rpy +++ b/Monika After Story/game/script-compliments.rpy @@ -1386,7 +1386,7 @@ label mas_compliment_teaching_2: "You inspire me to keep learning.": $ mas_gainAffection(5, bypass=True) m 1ekbfa "Oh, [player]..." - m 1hubfb "I'll do my best to keep thinking of things to teach, then!" + m 1hubfb "I'll do my best to keep thinking of things to teach you, then!" show monika 5hubfb at t11 zorder MAS_MONIKA_Z with dissolve_monika m 5hubfb "Life is a long journey of learning, and I'm glad I'm on it with you." From 16f9cf3f056f5fdbb3c518fd5d607986d4656234 Mon Sep 17 00:00:00 2001 From: lunulae <45501964+lunulae@users.noreply.github.com> Date: Fri, 2 Jan 2026 16:18:14 -0600 Subject: [PATCH 3/3] changed last quip --- Monika After Story/game/script-compliments.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Monika After Story/game/script-compliments.rpy b/Monika After Story/game/script-compliments.rpy index 33f4df3d67..c7546f2b4d 100644 --- a/Monika After Story/game/script-compliments.rpy +++ b/Monika After Story/game/script-compliments.rpy @@ -1406,7 +1406,7 @@ label mas_compliment_teaching_3: teaching_quips = [ _("We're on a journey of learning together~"), _("I'm happy to be your study buddy."), - _("I'll try to keep learning interesting things for you!'"), + _("I look forward to learning from you, too!"), ] teaching_quip = random.choice(teaching_quips)