Merge pull request 'Save incomptibility' (#107) from nutbuster/SnootGame:Monster-Update-6 into Monster-Update-6

Reviewed-on: https://git.snootgame.xyz/Cavemanon/SnootGame/pulls/107
This commit is contained in:
Nutbuster 2021-10-14 19:45:25 +00:00
commit 55825bc6ac
12 changed files with 16 additions and 16 deletions

View File

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 61 KiB

View File

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -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 ## This generally should not be changed, and if it is, should always be a
## literal string, not an expression. ## literal string, not an expression.
define config.save_directory = "DinoGirlGamu-1592542119" define config.save_directory = "CavemanonSnootGame"
## Icon ######################################################################## ## Icon ########################################################################

View File

@ -1,4 +1,5 @@
###Updater Python stuff### ###Updater Python stuff###
init python: init python:
if renpy.variant("pc"): #Don't run this on mobile, not supported if renpy.variant("pc"): #Don't run this on mobile, not supported
if persistent.updateresult is None: if persistent.updateresult is None:

View File

@ -930,7 +930,6 @@ transform wiggle:
linear 10.0 yalign 1.0 clockwise circles 1 linear 10.0 yalign 1.0 clockwise circles 1
repeat repeat
label start: label start:
$ fangscore = 0 $ fangscore = 0
$ anonscore = 0 $ anonscore = 0

View File

@ -16,7 +16,7 @@ label chapter_14A:
"I pull back the curtain to reveal that a thick Sunday fog had rolled in overnight." "I pull back the curtain to reveal that a thick Sunday fog had rolled in overnight."
"What time is it?" "What time is it?"
"Guess Ill check my phone{cps=*.1}...{/cps}" "Guess Ill check my phone{cps=*.1}...{/cps}"
show anonphone at scenter with easeinbottom show anonphone at scenter with easeinbottom
@ -233,7 +233,7 @@ label chapter_14A:
show fang: show fang:
ease_cubic 1 xalign 0.7 ease_cubic 1 xalign 0.7
show fang considering flip with Dissolve(.25) show fang considering flip with Dissolve(.25)
F "It isnt, Anon." F "It isnt, Anon."
A "But-" A "But-"
@ -292,7 +292,7 @@ label chapter_14A:
"Oh shit, Fang and I are beyond late." "Oh shit, Fang and I are beyond late."
pause .5 pause .5
"Wait, where is Fang?" "Wait, where is Fang?"
"Her backpack is gone, too." "Her backpack is gone, too."
@ -426,7 +426,7 @@ label chapter_14A:
pause .5 pause .5
stop music1 fadeout 4 stop music1 fadeout 4
scene hallway scene hallway
show dimmer_lighter show dimmer_lighter
with Dissolve(1) with Dissolve(1)
pause .5 pause .5
@ -631,7 +631,7 @@ label chapter_14A:
pause .5 pause .5
image fangfog = im.Blur(im.MatrixColor("fang/emotive set/fang anguish.png",im.matrix.brightness(-1)), 1.5) image fangfog = im.Blur(im.MatrixColor("fang/emotive set/fang anguish.png",im.matrix.brightness(-1)), 1.5)
scene roof fog scene roof fog
show fangfog: show fangfog:
yanchor 0.5 xanchor 0.5 yanchor 0.5 xanchor 0.5
ypos 0.6 xpos 0.5 ypos 0.6 xpos 0.5
@ -759,7 +759,7 @@ label chapter_14A:
pause .5 pause .5
image red = "#ff0000" image red = "#ff0000"
scene a10 scene a10
show red: show red:
alpha 0 alpha 0
block: block:
@ -815,7 +815,7 @@ label chapter_14A:
"End of the line." "End of the line."
hide red hide red
hide dimmer_lighter hide dimmer_lighter
with Dissolve(2) with Dissolve(2)
@ -1056,7 +1056,7 @@ label chapter_14A:
scene black with Dissolve(4) scene black with Dissolve(4)
pause 2 pause 2
scene 1of4 with Dissolve(2) scene e1of4 with Dissolve(2)
pause pause
scene black with Dissolve(3) scene black with Dissolve(3)

View File

@ -327,7 +327,7 @@ label chapter_14B:
window hide window hide
pause 2 pause 2
scene 2of4 with Dissolve(2) scene e2of4 with Dissolve(2)
pause pause
scene black with Dissolve(3) scene black with Dissolve(3)

View File

@ -739,7 +739,7 @@ label chapter_14C:
$ quick_menu = False $ quick_menu = False
window hide window hide
scene 3of4 with fade scene e3of4 with fade
stop music fadeout 15.0 stop music fadeout 15.0
pause 16 pause 16
scene black with fade scene black with fade

View File

@ -638,7 +638,7 @@ label chapter_14D:
"Our lips meld together as we embrace just like we were teens again." "Our lips meld together as we embrace just like we were teens again."
$ quick_menu = False $ quick_menu = False
window hide window hide
scene 4of4 with fade scene e4of4 with fade
stop music fadeout 15.0 stop music fadeout 15.0
pause 16 pause 16
scene black with fade scene black with fade

View File

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