diff --git a/game/script/3.showing-up-at-band-practice-and-giving-feedback.rpy b/game/script/3.showing-up-at-band-practice-and-giving-feedback.rpy index a088d83..af5ae0c 100644 --- a/game/script/3.showing-up-at-band-practice-and-giving-feedback.rpy +++ b/game/script/3.showing-up-at-band-practice-and-giving-feedback.rpy @@ -1681,13 +1681,13 @@ label chapter_3: python: #menu item text then label to jump into - choices = [(_('Speak Up'), '.GuitarQuestionSpeakUp'), - (_('Stay Silent'), '.GuitarQuestionStaySilent')] + choices = [(_('Speak Up'), 'GuitarQuestionSpeakUp'), + (_('Stay Silent'), 'GuitarQuestionStaySilent')] _value = renpy.display_menu(randomize_choices(choices)) renpy.pause(0.5) renpy.jump(_value) - label .GuitarQuestionSpeakUp: + label GuitarQuestionSpeakUp: $ fangscore += 1 @@ -1749,7 +1749,7 @@ label chapter_3: jump .postguitarscene - label .GuitarQuestionStaySilent: + label GuitarQuestionStaySilent: "Can’t guarantee their style won’t be better than dogshit if I lose this challenge." diff --git a/game/script/4.anon-needs-help-during-music-period.rpy b/game/script/4.anon-needs-help-during-music-period.rpy index 5da727a..3ee8df6 100644 --- a/game/script/4.anon-needs-help-during-music-period.rpy +++ b/game/script/4.anon-needs-help-during-music-period.rpy @@ -646,13 +646,13 @@ label chapter_4: stop music fadeout 5 python: - choices = [(_('Heads, ask Fang for help'), '.Heads'), - (_('Tails, leave Fang alone'), '.Tails')] + choices = [(_('Heads, ask Fang for help'), 'lHeads'), + (_('Tails, leave Fang alone'), 'lTails')] _value = renpy.display_menu(randomize_choices(choices)) renpy.pause(0.5) renpy.jump(_value) - label .Heads: + label lHeads: $ fangscore += 1 @@ -816,7 +816,7 @@ label chapter_4: jump .PostFlip - label .Tails: + label lTails: stop music fadeout 3 diff --git a/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy b/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy index 8880cc8..85667c2 100644 --- a/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy +++ b/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy @@ -1182,14 +1182,14 @@ label chapter_5: pause .5 python: - choices = [(_('Explain it to her honestly, she should understand by now'), '.beHonest'), - (_('Joking is a good way to move past mistakes.'), '.jokeAround')] + choices = [(_('Explain it to her honestly, she should understand by now'), 'lbeHonest'), + (_('Joking is a good way to move past mistakes.'), 'ljokeAround')] _value = renpy.display_menu(randomize_choices(choices)) renpy.music.stop(fadeout=3) renpy.pause(0.5) renpy.jump(_value) - label .beHonest: + label lbeHonest: $ anonscore += 1 @@ -1299,7 +1299,7 @@ label chapter_5: jump .postAnonLaughReveal - label .jokeAround: + label ljokeAround: "We’re good enough friends now, right?{w=.4} This’ll be {cps=*.3}fiiiine.{/cps}" window hide diff --git a/game/script/6.anon-helps-fang-find-a-venue-for-band.rpy b/game/script/6.anon-helps-fang-find-a-venue-for-band.rpy index e4b4825..2313231 100644 --- a/game/script/6.anon-helps-fang-find-a-venue-for-band.rpy +++ b/game/script/6.anon-helps-fang-find-a-venue-for-band.rpy @@ -1697,13 +1697,13 @@ label chapter_6: pause .5 python: - choices = [(_('Excuse myself'), '.AnonExcusesHimself'), - (_('Wait for Fang'), '.AnonWaitsForFang')] + choices = [(_('Excuse myself'), 'lAnonExcusesHimself'), + (_('Wait for Fang'), 'lAnonWaitsForFang')] _value = renpy.display_menu(randomize_choices(choices)) renpy.pause(0.5) renpy.jump(_value) - label .AnonExcusesHimself: + label lAnonExcusesHimself: "I need to get away from here,{w=.4} fast." window hide @@ -1915,7 +1915,7 @@ label chapter_6: jump troodon - label .AnonWaitsForFang: + label lAnonWaitsForFang: $ anonscore += 1 "{cps=*.1}...{/cps}No." @@ -2087,13 +2087,13 @@ label chapter_6: pause .5 python: - choices = [(_('Ask Naser'), '.AskNaser'), - (_('Ask Fang'), '.AskFang')] + choices = [(_('Ask Naser'), 'lAskNaser'), + (_('Ask Fang'), 'lAskFang')] _value = renpy.display_menu(randomize_choices(choices)) renpy.pause(0.5) renpy.jump(_value) - label .AskNaser: + label lAskNaser: A "Actually, Naser." @@ -2304,7 +2304,7 @@ label chapter_6: jump .postAsking - label .AskFang: + label lAskFang: $ fangscore += 1 diff --git a/game/script/8.anon-and-fang-study-together.rpy b/game/script/8.anon-and-fang-study-together.rpy index 27d78ae..7c6d7bf 100644 --- a/game/script/8.anon-and-fang-study-together.rpy +++ b/game/script/8.anon-and-fang-study-together.rpy @@ -622,12 +622,12 @@ label chapter_8: pause .5 python: - choices = [(_('Play The Guitar'), '.LetFangPlayGuit'), - (_('Get to Studying'), '.GetStartedOnStudy')] + choices = [(_('Play The Guitar'), 'lLetFangPlayGuit'), + (_('Get to Studying'), 'lGetStartedOnStudy')] renpy.jump(renpy.display_menu(randomize_choices(choices))) - label LetFangPlayGuit: + label lLetFangPlayGuit: $ fangscore += 1 pause .5 @@ -1570,7 +1570,7 @@ label chapter_8: return - label GetStartedOnStudy: + label lGetStartedOnStudy: pause 0.5 "No, I should focus more on my midterms." pause 0.5 diff --git a/game/script/9.anons'-dirty-laundry-gets-put-up-to-air.rpy b/game/script/9.anons'-dirty-laundry-gets-put-up-to-air.rpy index 9bd63da..0b1a094 100644 --- a/game/script/9.anons'-dirty-laundry-gets-put-up-to-air.rpy +++ b/game/script/9.anons'-dirty-laundry-gets-put-up-to-air.rpy @@ -1077,13 +1077,13 @@ label chapter_9: $ TalkedWithTrish = 0 python: - choices = [(_('Talk with Trish'), '.TalkWithTrish'), - (_('Ignore Trish'), '.IgnoreTrish')] + choices = [(_('Talk with Trish'), 'lTalkWithTrish'), + (_('Ignore Trish'), 'lIgnoreTrish')] _value = renpy.display_menu(randomize_choices(choices)) renpy.pause(0.5) renpy.jump(_value) - label .TalkWithTrish: + label lTalkWithTrish: $ TalkedWithTrish = 1 @@ -1166,7 +1166,7 @@ label chapter_9: jump .PostSpearsOfficeTrish - label .IgnoreTrish: + label lIgnoreTrish: stop music fadeout 5 pause .5