Check the game/saves/ folder within the game's installation path.
: Ren'Py save files are usually stored in a directory designated by the game or Ren'Py. They can be in a binary format that isn't easily editable with a simple text editor. renpy edit save file link
Some games use config.save_encryption = True . Then saves are encrypted with a key derived from the game’s name and version. Check the game/saves/ folder within the game's installation
For maximum control, you can use Python scripts to dump a save file's contents into a readable format, edit it, and then repack it. This requires some programming knowledge. Tools like rpycdec include this functionality, allowing you to extract a save file to JSON, edit the JSON file, and then convert it back to a .save . A basic command might look like this: Some games use config