forked from Cavemanon/SnootGame
Remove . from labels to prevent crash
This commit is contained in:
@ -1681,13 +1681,13 @@ label chapter_3:
|
|||||||
|
|
||||||
python:
|
python:
|
||||||
#menu item text then label to jump into
|
#menu item text then label to jump into
|
||||||
choices = [(_('Speak Up'), '.GuitarQuestionSpeakUp'),
|
choices = [(_('Speak Up'), 'GuitarQuestionSpeakUp'),
|
||||||
(_('Stay Silent'), '.GuitarQuestionStaySilent')]
|
(_('Stay Silent'), 'GuitarQuestionStaySilent')]
|
||||||
_value = renpy.display_menu(randomize_choices(choices))
|
_value = renpy.display_menu(randomize_choices(choices))
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
renpy.jump(_value)
|
renpy.jump(_value)
|
||||||
|
|
||||||
label .GuitarQuestionSpeakUp:
|
label GuitarQuestionSpeakUp:
|
||||||
|
|
||||||
$ fangscore += 1
|
$ fangscore += 1
|
||||||
|
|
||||||
@ -1749,7 +1749,7 @@ label chapter_3:
|
|||||||
jump .postguitarscene
|
jump .postguitarscene
|
||||||
|
|
||||||
|
|
||||||
label .GuitarQuestionStaySilent:
|
label GuitarQuestionStaySilent:
|
||||||
|
|
||||||
"Can’t guarantee their style won’t be better than dogshit if I lose this challenge."
|
"Can’t guarantee their style won’t be better than dogshit if I lose this challenge."
|
||||||
|
|
||||||
|
@ -646,13 +646,13 @@ label chapter_4:
|
|||||||
stop music fadeout 5
|
stop music fadeout 5
|
||||||
|
|
||||||
python:
|
python:
|
||||||
choices = [(_('Heads, ask Fang for help'), '.Heads'),
|
choices = [(_('Heads, ask Fang for help'), 'lHeads'),
|
||||||
(_('Tails, leave Fang alone'), '.Tails')]
|
(_('Tails, leave Fang alone'), 'lTails')]
|
||||||
_value = renpy.display_menu(randomize_choices(choices))
|
_value = renpy.display_menu(randomize_choices(choices))
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
renpy.jump(_value)
|
renpy.jump(_value)
|
||||||
|
|
||||||
label .Heads:
|
label lHeads:
|
||||||
|
|
||||||
$ fangscore += 1
|
$ fangscore += 1
|
||||||
|
|
||||||
@ -816,7 +816,7 @@ label chapter_4:
|
|||||||
jump .PostFlip
|
jump .PostFlip
|
||||||
|
|
||||||
|
|
||||||
label .Tails:
|
label lTails:
|
||||||
|
|
||||||
stop music fadeout 3
|
stop music fadeout 3
|
||||||
|
|
||||||
|
@ -1182,14 +1182,14 @@ label chapter_5:
|
|||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
python:
|
python:
|
||||||
choices = [(_('Explain it to her honestly, she should understand by now'), '.beHonest'),
|
choices = [(_('Explain it to her honestly, she should understand by now'), 'lbeHonest'),
|
||||||
(_('Joking is a good way to move past mistakes.'), '.jokeAround')]
|
(_('Joking is a good way to move past mistakes.'), 'ljokeAround')]
|
||||||
_value = renpy.display_menu(randomize_choices(choices))
|
_value = renpy.display_menu(randomize_choices(choices))
|
||||||
renpy.music.stop(fadeout=3)
|
renpy.music.stop(fadeout=3)
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
renpy.jump(_value)
|
renpy.jump(_value)
|
||||||
|
|
||||||
label .beHonest:
|
label lbeHonest:
|
||||||
|
|
||||||
$ anonscore += 1
|
$ anonscore += 1
|
||||||
|
|
||||||
@ -1299,7 +1299,7 @@ label chapter_5:
|
|||||||
jump .postAnonLaughReveal
|
jump .postAnonLaughReveal
|
||||||
|
|
||||||
|
|
||||||
label .jokeAround:
|
label ljokeAround:
|
||||||
|
|
||||||
"We’re good enough friends now, right?{w=.4} This’ll be {cps=*.3}fiiiine.{/cps}"
|
"We’re good enough friends now, right?{w=.4} This’ll be {cps=*.3}fiiiine.{/cps}"
|
||||||
window hide
|
window hide
|
||||||
|
@ -1697,13 +1697,13 @@ label chapter_6:
|
|||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
python:
|
python:
|
||||||
choices = [(_('Excuse myself'), '.AnonExcusesHimself'),
|
choices = [(_('Excuse myself'), 'lAnonExcusesHimself'),
|
||||||
(_('Wait for Fang'), '.AnonWaitsForFang')]
|
(_('Wait for Fang'), 'lAnonWaitsForFang')]
|
||||||
_value = renpy.display_menu(randomize_choices(choices))
|
_value = renpy.display_menu(randomize_choices(choices))
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
renpy.jump(_value)
|
renpy.jump(_value)
|
||||||
|
|
||||||
label .AnonExcusesHimself:
|
label lAnonExcusesHimself:
|
||||||
|
|
||||||
"I need to get away from here,{w=.4} fast."
|
"I need to get away from here,{w=.4} fast."
|
||||||
window hide
|
window hide
|
||||||
@ -1915,7 +1915,7 @@ label chapter_6:
|
|||||||
jump troodon
|
jump troodon
|
||||||
|
|
||||||
|
|
||||||
label .AnonWaitsForFang:
|
label lAnonWaitsForFang:
|
||||||
$ anonscore += 1
|
$ anonscore += 1
|
||||||
|
|
||||||
"{cps=*.1}...{/cps}No."
|
"{cps=*.1}...{/cps}No."
|
||||||
@ -2087,13 +2087,13 @@ label chapter_6:
|
|||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
python:
|
python:
|
||||||
choices = [(_('Ask Naser'), '.AskNaser'),
|
choices = [(_('Ask Naser'), 'lAskNaser'),
|
||||||
(_('Ask Fang'), '.AskFang')]
|
(_('Ask Fang'), 'lAskFang')]
|
||||||
_value = renpy.display_menu(randomize_choices(choices))
|
_value = renpy.display_menu(randomize_choices(choices))
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
renpy.jump(_value)
|
renpy.jump(_value)
|
||||||
|
|
||||||
label .AskNaser:
|
label lAskNaser:
|
||||||
|
|
||||||
A "Actually, Naser."
|
A "Actually, Naser."
|
||||||
|
|
||||||
@ -2304,7 +2304,7 @@ label chapter_6:
|
|||||||
jump .postAsking
|
jump .postAsking
|
||||||
|
|
||||||
|
|
||||||
label .AskFang:
|
label lAskFang:
|
||||||
|
|
||||||
$ fangscore += 1
|
$ fangscore += 1
|
||||||
|
|
||||||
|
@ -622,12 +622,12 @@ label chapter_8:
|
|||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
python:
|
python:
|
||||||
choices = [(_('Play The Guitar'), '.LetFangPlayGuit'),
|
choices = [(_('Play The Guitar'), 'lLetFangPlayGuit'),
|
||||||
(_('Get to Studying'), '.GetStartedOnStudy')]
|
(_('Get to Studying'), 'lGetStartedOnStudy')]
|
||||||
renpy.jump(renpy.display_menu(randomize_choices(choices)))
|
renpy.jump(renpy.display_menu(randomize_choices(choices)))
|
||||||
|
|
||||||
|
|
||||||
label LetFangPlayGuit:
|
label lLetFangPlayGuit:
|
||||||
$ fangscore += 1
|
$ fangscore += 1
|
||||||
|
|
||||||
pause .5
|
pause .5
|
||||||
@ -1570,7 +1570,7 @@ label chapter_8:
|
|||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
label GetStartedOnStudy:
|
label lGetStartedOnStudy:
|
||||||
pause 0.5
|
pause 0.5
|
||||||
"No, I should focus more on my midterms."
|
"No, I should focus more on my midterms."
|
||||||
pause 0.5
|
pause 0.5
|
||||||
|
@ -1077,13 +1077,13 @@ label chapter_9:
|
|||||||
$ TalkedWithTrish = 0
|
$ TalkedWithTrish = 0
|
||||||
|
|
||||||
python:
|
python:
|
||||||
choices = [(_('Talk with Trish'), '.TalkWithTrish'),
|
choices = [(_('Talk with Trish'), 'lTalkWithTrish'),
|
||||||
(_('Ignore Trish'), '.IgnoreTrish')]
|
(_('Ignore Trish'), 'lIgnoreTrish')]
|
||||||
_value = renpy.display_menu(randomize_choices(choices))
|
_value = renpy.display_menu(randomize_choices(choices))
|
||||||
renpy.pause(0.5)
|
renpy.pause(0.5)
|
||||||
renpy.jump(_value)
|
renpy.jump(_value)
|
||||||
|
|
||||||
label .TalkWithTrish:
|
label lTalkWithTrish:
|
||||||
|
|
||||||
$ TalkedWithTrish = 1
|
$ TalkedWithTrish = 1
|
||||||
|
|
||||||
@ -1166,7 +1166,7 @@ label chapter_9:
|
|||||||
jump .PostSpearsOfficeTrish
|
jump .PostSpearsOfficeTrish
|
||||||
|
|
||||||
|
|
||||||
label .IgnoreTrish:
|
label lIgnoreTrish:
|
||||||
|
|
||||||
stop music fadeout 5
|
stop music fadeout 5
|
||||||
pause .5
|
pause .5
|
||||||
|
Reference in New Issue
Block a user