btw
PozzGames, scripts/character/condition_def.rpy can be tidied up a lot. For example, code like
Python:
def c_unlock_pizza():
if dev.story == 2 or c_unlock_start():
return True
return False
can instead be rewritten as
Python:
def c_unlock_pizza():
return dev.story == 2 or c_unlock_start()
If you have a more complex code, like
Python:
def condition_p2():
if dev.story == 8 and momgirl.story == 3 and sisgirl.story == 9 and gymgirl.story == 6 and maidgirl.story == 14:
if toxgirl.story == 10 and anxgirl.story == 11 and docgirl.story == 3 and slavegirl.story == 16:
if pubgirl.story == 5 and gothgirl.story == 2 and shopgirl.story == 3:
if "BCSS1" in side_event and "SSSB1" in side_event:
return True
return False
you could instead write it as
Python:
def condition_p2():
return (
dev.story == 8
and momgirl.story == 3
and sisgirl.story == 9
and gymgirl.story == 6
and maidgirl.story == 14
and toxgirl.story == 10
and anxgirl.story == 11
and docgirl.story == 3
and slavegirl.story == 16
and pubgirl.story == 5
and gothgirl.story == 2
and shopgirl.story == 3
and "BCSS1" in side_event
and "SSSB1" in side_event
)