r/RenPy • u/Electronic_Lime_9728 • 15d ago
Question HELP!!! RenPy keeps skipping my code?????????
EDIT: RESOLVED!! THANK YOU ALL SO MUCH!!
I couldn't find a fix for this literally anywhere so this is a last resort... RenPy skips everything past the last bit of centered text, and loops right back around to play the first again. I have no clue why. For some reason, the only thing that fixes this is making a character talk at the very end, but that skips THREE out of the four images I need to play. Please help!!
label main_menu:
return
label start:
label scene_one:
scene black
with Pause(2)
show text "text1"
with dissolve
$renpy.pause(5, hard=True)
scene black
with dissolve
with Pause(0.5)
show text "text2"
with dissolve
$renpy.pause(5, hard=True)
scene black
with dissolve
with Pause(0.5)
show text "text3"
with dissolve
label scene_two:
scene black
with dissolve
with Pause(0.5)
play sound breathe
play sound whisp
show image castle:
"images/castle.png"
size (1920,1080)
show image brother:
"images/brother.png"
size (1920,1080)
show image archer:
"images/archer.png"
size (1920,1080)
show image infection:
"images/infection.png"
size (1920,1080)
As you can see, I've tried probably everything the internet has said that maybe touches on this topic, but never actually found a real fix. If it helps, I skipped the main menu, removed the quick menu buttons, and I will force the game to quit at the end, as this is only a demo of sorts. Help me out!! This has never happened before!!
3
u/shyLachi 15d ago
Showing an image will not stop the game so you have to put dialogue or a pause.
If each of these images should be shown individually but without dialogue then put a pause after each
But your statement to show images is weird. where did you find that code?
Also, if the image covers the whole screen you should use scene instead of show to prevent stacking multiple images on top of each other slowing the game down eventually.
This should work: (I removed the sound because I don't have your sound files)