Saves Directory change & Changed endings filename
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
|
@ -150,7 +150,7 @@ define config.default_sfx_volume = 0.90
|
|||
## This generally should not be changed, and if it is, should always be a
|
||||
## literal string, not an expression.
|
||||
|
||||
define config.save_directory = "DinoGirlGamu-1592542119"
|
||||
define config.save_directory = "CavemanonSnootGame"
|
||||
|
||||
|
||||
## Icon ########################################################################
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
###Updater Python stuff###
|
||||
|
||||
init python:
|
||||
if renpy.variant("pc"): #Don't run this on mobile, not supported
|
||||
if persistent.updateresult is None:
|
||||
|
|
|
@ -930,7 +930,6 @@ transform wiggle:
|
|||
linear 10.0 yalign 1.0 clockwise circles 1
|
||||
repeat
|
||||
|
||||
|
||||
label start:
|
||||
$ fangscore = 0
|
||||
$ anonscore = 0
|
||||
|
|
|
@ -1056,7 +1056,7 @@ label chapter_14A:
|
|||
scene black with Dissolve(4)
|
||||
pause 2
|
||||
|
||||
scene 1of4 with Dissolve(2)
|
||||
scene e1of4 with Dissolve(2)
|
||||
pause
|
||||
|
||||
scene black with Dissolve(3)
|
||||
|
|
|
@ -327,7 +327,7 @@ label chapter_14B:
|
|||
window hide
|
||||
pause 2
|
||||
|
||||
scene 2of4 with Dissolve(2)
|
||||
scene e2of4 with Dissolve(2)
|
||||
pause
|
||||
|
||||
scene black with Dissolve(3)
|
||||
|
|
|
@ -739,7 +739,7 @@ label chapter_14C:
|
|||
|
||||
$ quick_menu = False
|
||||
window hide
|
||||
scene 3of4 with fade
|
||||
scene e3of4 with fade
|
||||
stop music fadeout 15.0
|
||||
pause 16
|
||||
scene black with fade
|
||||
|
|
|
@ -638,7 +638,7 @@ label chapter_14D:
|
|||
"Our lips meld together as we embrace just like we were teens again."
|
||||
$ quick_menu = False
|
||||
window hide
|
||||
scene 4of4 with fade
|
||||
scene e4of4 with fade
|
||||
stop music fadeout 15.0
|
||||
pause 16
|
||||
scene black with fade
|
||||
|
|
|
@ -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
|
||||
|
|