Search found 2 matches

by sweetchi
Sat Jan 15, 2022 1:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Using one save file
Replies: 2
Views: 270

Re: Using one save file

Thank you! This is exactly what I was trying to do.
by sweetchi
Sat Jan 15, 2022 11:34 am
Forum: Ren'Py Questions and Announcements
Topic: Using one save file
Replies: 2
Views: 270

Using one save file

I'm trying to make a game where clicking "Continue" on the title screen will send you to your most recently saved game but it will only do so if you have saved in the first place. define savecount = 0 label continue: if (savecount == 1): $ renpy.load("1-1") else: return ## Naviga...