Extra Chapters Menu

This commit is contained in:
2021-09-23 08:39:56 +10:00
parent 27701654a0
commit 33aa277c05
5 changed files with 154 additions and 2 deletions

View File

@ -1,3 +1,13 @@
init python:
def ending_image():
endings = 0b0000
_e = 0b1
for i in range(1, 5):
fn = str(i)+"of4"
endings |= (_e * renpy.seen_image(fn))
_e = _e << 0b1
persistent.endings = endings
label storyline:
call chapter_1
call chapter_2
@ -31,6 +41,7 @@ label storyline:
call chapter_12A
call chapter_13A
call chapter_14A
$ ending_image()
$ renpy.quit()
else:
#>>ERROR HANDLING OH SWEET BABY JESUS SHIT HIT THE FAN
@ -45,6 +56,7 @@ label storyline:
St "Yes, but you have to have something wrong with you to speedrun a visual novel beta"
"/dev/non" "well shit. Please do report this bug and all the choices you made that lead to this point. Something fucked up real bad"
#just liek maek gaem
$ ending_image()
call ending
return