Forum rules - please read before posting.

Non-Encrypted Save Files

I've done a little bit of poking around, and it looks like AC encrypts save files. I'm wanting to make a project where manually editing the save files is a core part of how the player solves certain puzzles, and I'm wanting to devlop this using AC, so I'm wanting to know if it's possible to make it so save files are not encrypted so the player can easily do this. Is this possible with AC?

Comments

  • Interesting idea!

    On desktop platforms, AC save files uses binary formatting by default. However, it is possible to change this - either to a built-in alternative (XML or Json), or to a custom format by writing a custom IFileFormatHandler.

    See the Manual's "Custom save formats and handling" chapter. To switch to XML, for example, call:

    AC.SaveSystem.FileFormatHandler = new FileFormatHandler_XML ();
    
  • Ah nice! Thanks, I'll try that out!

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Welcome to the official forum for Adventure Creator.