Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

you mean this? $ renpy.end_replay() 

If you talk about the exit button nope, I don't have it in my replays

(1 edit)

No add that at the start of the replay area (the label that you start the replay at) add that code

label firstfall:   # <-- replay label to start the replay
    if _in_replay:  # add this and the next 3 lines of code
        $ nome_protagonista = persistent.nome_protagonista
        $ nome_landlady = persistent.nome_landlady
        $ nome_ruolo = persistent.nome_ruolo


you will have to add this to every replay label...

ok I'll try it tonight, but when I give it that "persistent" it always gives me a yellow underline saying that I haven't defined the persistents, I'll see if it works like that

you don't have to define or default persistent variables, but the renpy extension for VScode still complains about it

it works! Really thanks a lot!

(+1)

you're welcome

good luck with your project