- Sep 13, 2021
- 6
- 1
I am just starting ep2 but i cant find save files to start. I tried to copy a save file and paste it in ep2 save files folder but it doesnt work. Then i checked its migrate_saves.rpy file to see the codes and i think my ep1 files are saved in the folder it has written.
This is the codes -
init python:
def check_saves_for_migration():
global renpy
saves_directory = os.path.join(renpy.config.savedir, "")
old_saves_directory = saves_directory.replace("fashionbusiness1_renpy", "TestProj-1525113205")
if os.path.exists(old_saves_directory):
return True
return False
def migrate_saves():
global renpy
saves_directory = os.path.join(renpy.config.savedir, "")
old_saves_directory = saves_directory.replace("fashionbusiness1_renpy", "TestProj-1525113205")
for r, d, f in os.walk(old_saves_directory):
for file in f:
in_filename = os.path.join(r, file)
out_filename = os.path.join(saves_directory, file)
print in_filename
print out_filename
copyfile(in_filename, out_filename)
return True
label migrate_saves:
call screen confirm(message="Your current saves will be overwritten.\nAre you sure?", yes_action=Return(1), no_action=Return(0))
$ print _return
if _return == 1:
$ migrate_saves()
$ renpy.full_restart()
# $ MainMenu(confirm=False)()
return
and my path of save file folder of ep 1 is -C:\Users\ASUS\AppData\Roaming\RenPy\fashionbusiness1_renpy
Plz check and tell me how to solve it. I do have 3 random saved files showing in ep2 but since those are files from the middle of the game, i cant load them as well.
I saw official answers and questions regarding to this game and it is recommended to just answer the questions and start the game. But it skipped a lot of scenes and it doesnt start from waking up. Suggest me how to solve it plz.
This is the codes -
init python:
def check_saves_for_migration():
global renpy
saves_directory = os.path.join(renpy.config.savedir, "")
old_saves_directory = saves_directory.replace("fashionbusiness1_renpy", "TestProj-1525113205")
if os.path.exists(old_saves_directory):
return True
return False
def migrate_saves():
global renpy
saves_directory = os.path.join(renpy.config.savedir, "")
old_saves_directory = saves_directory.replace("fashionbusiness1_renpy", "TestProj-1525113205")
for r, d, f in os.walk(old_saves_directory):
for file in f:
in_filename = os.path.join(r, file)
out_filename = os.path.join(saves_directory, file)
print in_filename
print out_filename
copyfile(in_filename, out_filename)
return True
label migrate_saves:
call screen confirm(message="Your current saves will be overwritten.\nAre you sure?", yes_action=Return(1), no_action=Return(0))
$ print _return
if _return == 1:
$ migrate_saves()
$ renpy.full_restart()
# $ MainMenu(confirm=False)()
return
and my path of save file folder of ep 1 is -C:\Users\ASUS\AppData\Roaming\RenPy\fashionbusiness1_renpy
Plz check and tell me how to solve it. I do have 3 random saved files showing in ep2 but since those are files from the middle of the game, i cant load them as well.
I saw official answers and questions regarding to this game and it is recommended to just answer the questions and start the game. But it skipped a lot of scenes and it doesnt start from waking up. Suggest me how to solve it plz.