Renpy Game Save Location | Extended

# Portable mode (saves inside game folder) config.save_directory = "game/saves" Place this at the top of options.rpy :

init python: def list_saves(): import os save_dir = config.savedir saves = [f for f in os.listdir(save_dir) if f.endswith(".save")] return sorted(saves) renpy game save location

init python: # Relative to the game directory config.save_directory = "saves" # Or absolute path (Windows example) # config.save_directory = "C:/CustomSaves/MyGame" # Portable mode (saves inside game folder) config

textbutton _("Open Saves Folder") action OpenDirectory(config.savedir) renpy game save location

AmCham Membership Enquiry

Please enter your details below and a member of our team will contact you at a time that suits you to discuss options and how becoming an AmCham member can benefit your business.

  • This field is for validation purposes and should be left unchanged.
  • Please hold Ctrl (Windows PC) or Command (Mac) to select multiple choices

This will close in 0 seconds

Join an AmCham Committee

Please enter your details below and a member of our team will contact you at a time that suits you to discuss your application to join an AmCham committee.

  • This field is for validation purposes and should be left unchanged.

This will close in 0 seconds