after you call the screens to get the name add this
$ persistent.nome_protagonista = nome_protagonista
$ persistent.nome_landlady = nome_landlady
$ persistent.nome_ruolo = nome_ruolo
now for the fun part
in the replay.rpy file find this section
for i in range(start, end + 1):
if renpy.seen_label(Replay_items[i].replay):
imagebutton idle Replay_items[i].thumbs:
style "gallery_button"
action Replay(Replay_items[i].replay) # make changes to this line only!!!
and make this change
action [SetVariable("nome_protagonista", "[persistent.nome_protagonista]"), SetVariable("nome_landlady", "[persistent.nome_landlady]"), SetVariable("nome_ruolo", "[persistent.nome_ruolo]"), Replay(Replay_items[i].replay)]