Renpy Game Save Files On Mac

FilesDownload pc game save files

Nov 03, 2018 hi there guys. I'm not really writing about an issue but something related in general to RenPy system. I always thought the saves files were written in the game/saves subfolder related to the main game folder itself; but yesterday I noticed a big big big RenPy folder with a lot of subfolder. Jan 29, 2016 C: Users username AppData Local Renpy Mac is Users username Library Renpy C: Steam steamapps common No One But You game saves (for windows), to be exact, and this leads me exactly to my problem. What baffles me is that deleting the files there doesn't seem to delete them from ingame. Is there possibly another location the game copied the save.

Renpy Game Save Files On Mac Free

  1. # -*- coding: utf-8 -*-
  2. # python2 — for renpy
  3. # Created by Anonymous
  4. ''Let it loads its modules''
  5. sys.path.append(renpypath)
  6. import renpy.object
  7. import renpy.preferences
  8. global persname
  9. importcPickleaspickle
  10. s = pfl.read().decode('zlib')
  11. print('Loaded persistent data into pers variable')
  12. def save():
  13. global pers
  14. withopen(persname,'w+')as pfl:
  15. pfl.write(pdata.encode('zlib'))
  16. print('Saved persistent data from pers variable')
  17. def getargs():
  18. parser= argparse.ArgumentParser(description='RenPy pers shell')
  19. parser.add_argument('-ren','--renpy-file', required =True,help='RenPy persistent file')
  20. parser.add_argument('-gdr','--game-dir', required =True,help='Game dir with RenPy subfolder')
  21. returnparser.parse_args()
  22. def runipython(*kvargs, **kwargs):
  23. for(k,v)in kwargs.items():
  24. from IPython import embed
  25. global pers
  26. pers =None
  27. args = getargs()
  28. persname = args.renpy_file
  29. import_renpy(gdr)
  30. runipython(pers = pers, load = load, save = save)
  31. if __name__ '__main__':