mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-03-26 11:54:49 +01:00
Remove . from labels to prevent crash
This commit is contained in:
parent
7793449cb0
commit
b9b6d8ca8b
6 changed files with 28 additions and 28 deletions
|
@ -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."
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue