mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-03-25 03:14:51 +01:00
Replace get_ending label usage for new function in chapter 11
This commit is contained in:
parent
79569c7441
commit
4b662b5488
1 changed files with 7 additions and 8 deletions
|
@ -448,8 +448,9 @@ label chapter_11:
|
||||||
#THIS SECTION IS SCORE DEPENDENT
|
#THIS SECTION IS SCORE DEPENDENT
|
||||||
|
|
||||||
# Doomer ending skips this segment
|
# Doomer ending skips this segment
|
||||||
call get_ending from _call_get_ending
|
$ ending_score = get_ending()
|
||||||
if _return == 2:
|
|
||||||
|
if ending_score == 2:
|
||||||
stop music fadeout 3
|
stop music fadeout 3
|
||||||
pause 2
|
pause 2
|
||||||
jump lPromAnnouncement
|
jump lPromAnnouncement
|
||||||
|
@ -585,8 +586,7 @@ label chapter_11:
|
||||||
Nas "Don’t take it the wrong way, but my mind just screamed at me ‘worst case scenario’."
|
Nas "Don’t take it the wrong way, but my mind just screamed at me ‘worst case scenario’."
|
||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
call get_ending from _call_get_ending_1
|
if ending_score == 4: # Golden
|
||||||
if _return == 4: # Golden
|
|
||||||
jump lSortingThings
|
jump lSortingThings
|
||||||
elif _return == 3: # tradwife
|
elif _return == 3: # tradwife
|
||||||
jump lMendingThings
|
jump lMendingThings
|
||||||
|
@ -5211,8 +5211,8 @@ label chapter_11:
|
||||||
"Fang and I have been together for a month now."
|
"Fang and I have been together for a month now."
|
||||||
pause .5
|
pause .5
|
||||||
|
|
||||||
call get_ending from _call_get_ending_2
|
|
||||||
if _return == 3: # tradwife
|
if ending_score == 3: # tradwife
|
||||||
|
|
||||||
"Things are going pretty well. When we discount Trish’s weekly attempt to talk with Fang."
|
"Things are going pretty well. When we discount Trish’s weekly attempt to talk with Fang."
|
||||||
|
|
||||||
|
@ -5467,8 +5467,7 @@ label chapter_11:
|
||||||
"{cps=*.1}...{/cps}"
|
"{cps=*.1}...{/cps}"
|
||||||
|
|
||||||
# skip this segment if we're doing ending 1
|
# skip this segment if we're doing ending 1
|
||||||
call get_ending from _call_get_ending_3
|
if ending_score == 1: #shooter
|
||||||
if _return == 1: #shooter
|
|
||||||
return
|
return
|
||||||
|
|
||||||
# the following segment makes sense in the context of 11B+11C+11D
|
# the following segment makes sense in the context of 11B+11C+11D
|
||||||
|
|
Loading…
Add table
Reference in a new issue