Saves Directory change & Changed endings filename

This commit is contained in:
2021-10-15 06:17:08 +11:00
parent a77f97a565
commit 671ef6486a
12 changed files with 16 additions and 16 deletions

View File

@@ -1,10 +1,10 @@
init -1 python:
def ending_image():
#0b0000, ABCD, flash the bits with |=, check with &
#0b0000, DCBA, flash the bits with |=, check with &
endings = 0b0000
_e = 0b1
for i in range(1, 5):
fn = str(i)+"of4"
fn = "e"+str(i)+"of4"
endings |= (_e * renpy.seen_image(fn))
_e = _e << 0b1
persistent.endings = endings
@@ -86,6 +86,6 @@ label .ending:
pause 20
elif anonscore >= 4 and fangscore >= 4:
scene ending_d_cg with Dissolve(1.5)
pause 20
pause 20
scene black with Dissolve(2)
return