Not sure where it is in Win7 but for XP it's 'C:Documents and SettingsApplication DataRenPykatawashoujoactual'. This is all your save files. If you can't find that for some reason, the first save is called '1-LT1.save' so you can just do a search for that, if you prefer.
How To Find Renpy Saves
Renpy Save Edit
- # -*- coding: utf-8 -*-
- # python2 — for renpy
- # Created by Anonymous
- ''Let it loads its modules''
- sys.path.append(renpypath)
- import renpy.object
- import renpy.preferences
- global persname
- importcPickleaspickle
- s = pfl.read().decode('zlib')
- print('Loaded persistent data into pers variable')
- def save():
- global pers
- withopen(persname,'w+')as pfl:
- pfl.write(pdata.encode('zlib'))
- print('Saved persistent data from pers variable')
- def getargs():
- parser= argparse.ArgumentParser(description='RenPy pers shell')
- parser.add_argument('-ren','--renpy-file', required =True,help='RenPy persistent file')
- parser.add_argument('-gdr','--game-dir', required =True,help='Game dir with RenPy subfolder')
- returnparser.parse_args()
- def runipython(*kvargs, **kwargs):
- for(k,v)in kwargs.items():
- from IPython import embed
- global pers
- pers =None
- args = getargs()
- persname = args.renpy_file
- import_renpy(gdr)
- runipython(pers = pers, load = load, save = save)
- if __name__ '__main__':