renpy does not like dots in labels pt.2 - fixed labels and jumps

yay
This commit is contained in:
2021-06-12 22:29:29 -05:00
parent 535298892b
commit cdec7f5ddd
28 changed files with 54 additions and 54 deletions

View File

@ -355,4 +355,4 @@ $ anonscore = 0
$ tradwife = False $ tradwife = False
pause 1.0 pause 1.0
jump chapter_1.0 jump chapter_1

View File

@ -1,4 +1,4 @@
label chapter_1.0: label chapter_1:
#First Day of School #First Day of School
"January sixth." "January sixth."
@ -1947,4 +1947,4 @@ Nas "I know babe. I just wish I could help them more."
A "Yeah. If you need any help Naser, I owe ya for the pizza." A "Yeah. If you need any help Naser, I owe ya for the pizza."
jump chapter_1.5 jump chapter_2

View File

@ -1,4 +1,4 @@
label chapter_8.25: label chapter_10:
scene black with fade scene black with fade
#Confession #Confession
@ -350,4 +350,4 @@ scene black with fade
stop music fadeout 1.0 stop music fadeout 1.0
"..." "..."
jump chapter_8.50 jump chapter_11

View File

@ -1,4 +1,4 @@
label chapter_8.50: label chapter_11:
scene room anon day scene room anon day
show fang neutral at sleft show fang neutral at sleft
@ -3212,16 +3212,16 @@ F "Anon, remind me, whats a quark again?"
#11 to ending is all a big if statement, just smooth sailing and Copy/Paste from here. #11 to ending is all a big if statement, just smooth sailing and Copy/Paste from here.
if anonscore >= 4 and fangscore >= 4: if anonscore >= 4 and fangscore >= 4:
jump chapter_8.50D jump chapter_11D
elif anonscore >= 3 and fangscore <=4: elif anonscore >= 3 and fangscore <=4:
jump chapter_8.50C jump chapter_11C
elif anonscore <= 3 and fangscore >=3: elif anonscore <= 3 and fangscore >=3:
jump chapter_8.50B jump chapter_11B
elif anonscore <= 2 and fangscore <= 2: elif anonscore <= 2 and fangscore <= 2:
jump chapter_8.50A jump chapter_11A
else: else:
#>>ERROR HANDLING OH SWEET BABY JESUS SHIT HIT THE FAN #>>ERROR HANDLING OH SWEET BABY JESUS SHIT HIT THE FAN

View File

@ -1,5 +1,5 @@
#label shooter: - commented out 6/12/21 - new format #label shooter: - commented out 6/12/21 - new format
label chapter_8.50A: label chapter_11A:
#Announcing a Plan | shooter #Announcing a Plan | shooter
show anon neutral at aleft show anon neutral at aleft
@ -110,4 +110,4 @@ F "Ill start looking for a good suit to wear!"
"Highlight of our time here at Volcano High indeed." "Highlight of our time here at Volcano High indeed."
stop music fadeout 1.0 stop music fadeout 1.0
jump chapter_8.75A jump chapter_12A

View File

@ -1,4 +1,4 @@
label chapter_8.50B: label chapter_11B:
#>>doomer | Announcing Nothing Important #>>doomer | Announcing Nothing Important
play music "audio/OST/Appreciating her Company.ogg" fadein 1.0 play music "audio/OST/Appreciating her Company.ogg" fadein 1.0
@ -170,4 +170,4 @@ stop music fadeout 1.0
"The two of us continue making plans up to the bell, and I toss the paper out when I leave." "The two of us continue making plans up to the bell, and I toss the paper out when I leave."
"..." "..."
jump chapter_8.75B jump chapter_12B

View File

@ -1,4 +1,4 @@
label chapter_8.50C: label chapter_11C:
#Announcing a Date | Tradwife #Announcing a Date | Tradwife
show anon neutral at aleft show anon neutral at aleft
@ -266,4 +266,4 @@ scene black with fade
stop music fadeout 1.0 stop music fadeout 1.0
"..." "..."
jump chapter_8.75C jump chapter_12C

View File

@ -1,4 +1,4 @@
label chapter_8.50C: label chapter_11C:
#label golden: - commented out 6/12/21 - redundant with new chapter labels #label golden: - commented out 6/12/21 - redundant with new chapter labels
#Announcing a Show | Golden #Announcing a Show | Golden
@ -297,4 +297,4 @@ stop music fadeout 1.0
"Man, I hope dads suit has actually been to the cleaner, I dont wanna disappoint." "Man, I hope dads suit has actually been to the cleaner, I dont wanna disappoint."
"..." "..."
jump chapter_8.75D jump chapter_12D

View File

@ -1,4 +1,4 @@
label chapter_8.75A: label chapter_12A:
#Lets all go to the Museum #Lets all go to the Museum
scene black with fade scene black with fade
@ -550,4 +550,4 @@ stop music fadeout 1.0
"..." "..."
jump chapter_9.0A jump chapter_13A

View File

@ -1,4 +1,4 @@
label chapter_8.75B: label chapter_12B:
#Let's all go to a Concert #Let's all go to a Concert
scene room anon day scene room anon day
@ -368,4 +368,4 @@ scene black with fade
stop music fadeout 1.0 stop music fadeout 1.0
#Prom is For Suckers #Prom is For Suckers
"..." "..."
jump chapter_9.0B jump chapter_13B

View File

@ -1,5 +1,5 @@
#TODO: script differs a bit here - renaming of files would prob be good #TODO: script differs a bit here - renaming of files would prob be good
label chapter_8.75C: label chapter_12C:
scene room anon night with fade scene room anon night with fade
stop music fadeout 1.0 stop music fadeout 1.0
@ -576,4 +576,4 @@ F "I love you."
scene black with fade scene black with fade
stop music fadeout 1.0 stop music fadeout 1.0
"..." "..."
jump chapter_9.0C jump chapter_13C

View File

@ -1,4 +1,4 @@
label chapter_8.75D: label chapter_12D:
scene black with fade scene black with fade
pause 3 pause 3
@ -425,4 +425,4 @@ scene aquariumoutside with dissolve
stop music fadeout 1.0 stop music fadeout 1.0
"..." "..."
jump chapter_9.0D jump chapter_13D

View File

@ -1,4 +1,4 @@
label chapter_9.0A: label chapter_13A:
scene home fang day scene home fang day
show fang a prom happy flip at sright show fang a prom happy flip at sright
@ -1383,4 +1383,4 @@ scene black with fade
"..." "..."
jump chapter_10.0A jump chapter_14A

View File

@ -1,4 +1,4 @@
label chapter_9.0B: label chapter_13B:
"-One Month Later-" "-One Month Later-"
@ -630,4 +630,4 @@ stop music fadeout 1.0
scene black with fade scene black with fade
"..." "..."
jump chapter_10.0B jump chapter_14B

View File

@ -1,5 +1,5 @@
#TODO: script differs a bit here - beach and prom are both in this file. renaming of files would prob be good #TODO: script differs a bit here - beach and prom are both in this file. renaming of files would prob be good
label chapter_9.0C: label chapter_13C:
pause 3 pause 3
@ -1379,4 +1379,4 @@ with move
scene black with fade scene black with fade
stop music fadeout 1.0 stop music fadeout 1.0
"..." "..."
jump chapter_10.0C jump chapter_14C

View File

@ -1,4 +1,4 @@
label chapter_9.0D: label chapter_13D:
scene black with fade scene black with fade
#label PromIsMemorable: - commented out 6/12/21 - redundant with new system of chapter labels #label PromIsMemorable: - commented out 6/12/21 - redundant with new system of chapter labels
@ -2442,4 +2442,4 @@ stop music fadeout 4.0
pause 6 pause 6
"..." "..."
jump chapter_10.0D jump chapter_14D

View File

@ -1,5 +1,5 @@
#label BowlingForVolcanoHigh: - commented out 6/12/21 - redundant with new label/jump per chapter #label BowlingForVolcanoHigh: - commented out 6/12/21 - redundant with new label/jump per chapter
label chapter_10.0A: label chapter_14A:
scene room anon day scene room anon day

View File

@ -1,6 +1,6 @@
#Anon and the Infinite Sadness #Anon and the Infinite Sadness
#label clusterfuck - commented out 6/12/21 - you know the drill, redundant, etc. #label clusterfuck - commented out 6/12/21 - you know the drill, redundant, etc.
label chapter_10.0B: label chapter_14B:
"After Fang broke up with me everything just fell apart." "After Fang broke up with me everything just fell apart."
"I couldnt be bothered with school anymore, instead shutting myself in my room and replaying old games." "I couldnt be bothered with school anymore, instead shutting myself in my room and replaying old games."

View File

@ -1,4 +1,4 @@
label chapter_10.0C: label chapter_14C:
#Volcano Highschool Musical #Volcano Highschool Musical
"-Three years later-" "-Three years later-"

View File

@ -1,4 +1,4 @@
label chapter_10.0D: label chapter_14D:
"-Five Years Later-" "-Five Years Later-"

View File

@ -1,4 +1,4 @@
label chapter_1.5: label chapter_2:
scene black with fade scene black with fade
@ -1515,4 +1515,4 @@ A "See ya."
scene black with fade scene black with fade
#jump StartOfChap3 - commented out 6/12/21 - confuses with new file consistency + in line with og script #jump StartOfChap3 - commented out 6/12/21 - confuses with new file consistency + in line with og script
jump chapter_2.0 jump chapter_3

View File

@ -1,4 +1,4 @@
label chapter_2.0: label chapter_3:
#Band Practice #Band Practice
#label StartOfChap3: commented out 6/12/21 - confuses with new file consistency + in line with og script #label StartOfChap3: commented out 6/12/21 - confuses with new file consistency + in line with og script
@ -762,4 +762,4 @@ if persistent.lewd == True:
"Fuck." "Fuck."
"..." "..."
jump chapter_3.0 jump chapter_4

View File

@ -1,4 +1,4 @@
label chapter_3.0: label chapter_4:
#Music class #Music class
scene black with fade scene black with fade
@ -596,4 +596,4 @@ scene black with fade
"God, I feel like a jerk now." "God, I feel like a jerk now."
"..." "..."
jump chapter_4.0 jump chapter_5

View File

@ -1,4 +1,4 @@
label chapter_4.0: label chapter_5:
#Gardening Club #Gardening Club
scene skinrow scene skinrow
@ -2544,4 +2544,4 @@ scene black with fade
"..." "..."
jump chapter_5.0 jump chapter_6

View File

@ -1,4 +1,4 @@
label chapter_5.0: label chapter_6:
#Not A Date #Not A Date
scene room anon dark with fade scene room anon dark with fade
@ -2687,4 +2687,4 @@ scene black with fade
"..." "..."
jump chapter_6.0 jump chapter_7

View File

@ -1,4 +1,4 @@
label chapter_6.0: label chapter_7:
#Concert Day #Concert Day
"-One Week Later-" "-One Week Later-"
@ -1041,4 +1041,4 @@ scene black with fade
"..." "..."
jump chapter_7.0 jump chapter_8

View File

@ -1,4 +1,4 @@
label chapter_7.0: label chapter_8:
scene black with fade scene black with fade
#Study Session #Study Session
@ -1298,4 +1298,4 @@ stop music fadeout 1.0
"..." "..."
jump chapter_8.0 jump chapter_9

View File

@ -1,4 +1,4 @@
label chapter_8.0: label chapter_9:
#jump ChVVURMDRAMA - commented out 6/12/21 - probably redundant with new "system" #jump ChVVURMDRAMA - commented out 6/12/21 - probably redundant with new "system"
#TODO: Double check it schizo fgt #TODO: Double check it schizo fgt
@ -1307,4 +1307,4 @@ stop music fadeout 1.0
"..." "..."
jump chapter_8.25 jump chapter_10