Outside of some downright pedestrian, "obviously not play tested at all" bugs. Like calling image "LB_32_1" when the image is actually "LB32_1" ...
OUTSIDE OF THESE REALLY STUPID BUGS THAT SHOULD NEVER BE IN A FINISHED BUILD!
The game is outstanding. Oh ... my ... god. The sister and aunt most of all. But fuck it, everything is awesome!
Does someone here know more renpy? I'm trying to see if I can fix some of the scenes.
So scenario:
Python:
image sam_massageup = Movie(start_image="sam_top_first",play="/videos/update1/laurenmas/sam_massageup.webm" , loop = True)
scene sam_massageup with dissolve
scene SAM_21 with dissolve
He is loading a video in sam_massageup, and then calling "scene the-video-I-just-mentioned". Nexted he's calling a scene SAM_21 that is also a photo that's trying to laod, but the game is in conflict since the video should still be up, I think.
There's two scenarios and different problems in different parts of the code:
#1 The video should end so that the next immage "scene" can load. How to stop the video?
#2 Sometimes the scene name and photo are not the same, that is EASILY fixed by just changing "scene lb_13" into "scene lb13" and voila. Works.
EDIT
Nop, no idea why some of the SAM_X_Y images are not loading. There's no name conflict. There's no image looping over them or something like that. I just don't know renpy so that's up to someone else to figure out.
EDIT2
Managed to fix it:
Python:
image SAM_7_1 = "/images/update1/SAM/SAM_7_1.webp"
scene SAM_7_1
I literally have NO idea why it manages to load EACH AND EVERY OTHER IMAGE with just "scene [imageName]" but here it can't. There's no name conflict, no nothing. Literally everything else works, but a couple of images here refuse to.
Maybe something got screwy in the UNREN process and in the actual code there's a clearer situation. REGARDLESS, for people who want to fix their own game, these are the solutions.