Fix conditional dialogue to play properly while using the chapter select. Fix chapter 7's conditional dialogue to only play while on an ending 4 run

This commit is contained in:
Map 2024-10-11 18:48:01 -05:00
parent 83d3c129fa
commit 420ed93ee2
2 changed files with 5 additions and 5 deletions

View file

@ -265,19 +265,19 @@ label chapter_7:
#Decided to take the unholy if/else approach to this, if there is a better, cleaner, or faster way to do it then do point me to it. #Decided to take the unholy if/else approach to this, if there is a better, cleaner, or faster way to do it then do point me to it.
#Values here were decided by writers, not me #Values here were decided by writers, not me
if anonscore >= 3 and fangscore >= 4: if (anonscore >= 3 and fangscore >= 4) or ending_route_number == 4:
#>>golden #>>golden
St "Upright Strength." St "Upright Strength."
St "OH! {w=.3} I dont think you need to worry about whats to come, Anon." St "OH! {w=.3} I dont think you need to worry about whats to come, Anon."
elif anonscore >= 3 and fangscore <= 3: elif (anonscore >= 3 and fangscore <= 3) or ending_route_number == 3:
#>>tradwife #>>tradwife
St "Inverted Hierophant." St "Inverted Hierophant."
St "You need to be wary of your words and actions, Anon." St "You need to be wary of your words and actions, Anon."
elif anonscore <= 3 and fangscore >= 3: elif (anonscore <= 3 and fangscore >= 3) or ending_route_number == 2:
#>>doomer #>>doomer
St "Inverted Hermit." St "Inverted Hermit."
St "Anon, if you ever feel lonely you can come to me." St "Anon, if you ever feel lonely you can come to me."
elif anonscore <= 2 and fangscore <= 2: elif (anonscore <= 2 and fangscore <= 2) or ending_route_number == 1:
#>>shooter #>>shooter
St "Oh my, {w=.3} inverted Empress." St "Oh my, {w=.3} inverted Empress."
St "You need to be wary about future negligence, Anon." St "You need to be wary about future negligence, Anon."

View file

@ -1525,7 +1525,7 @@ label chapter_8:
"{cps=*.1}...{/cps}" "{cps=*.1}...{/cps}"
if anonscore >= 3 or fangscore >= 3: if (anonscore >= 4 and fangscore >= 4) or ending_route_number == 4:
pause 0.5 pause 0.5
play music 'audio/OST/its_footloose_now.ogg' fadein 1.0 play music 'audio/OST/its_footloose_now.ogg' fadein 1.0