forked from Cavemanon/SnootGame
Bonus Chapter 10 Unlock Requirement
This commit is contained in:
@ -51,6 +51,14 @@ init python:
|
||||
if persistent.autoup == None:
|
||||
persistent.autoup = False
|
||||
|
||||
if persistent.bonus_chapters == None:
|
||||
if renpy.seen_image("big ending"): #for returning players
|
||||
persistent.bonus_chapters = 0b111111111
|
||||
persistent.old_bonus_chapters = 0b111111111
|
||||
else:
|
||||
persistent.bonus_chapters = 0b0
|
||||
persistent.old_bonus_chapters = 0b0
|
||||
|
||||
def randomize_choices(choices):
|
||||
# fine for size of 2
|
||||
if (renpy.random.randint(0, 1)):
|
||||
|
Reference in New Issue
Block a user