These scripts will help you to edit save file of Forfotton Anne game. Game save is a plain JSON file stored as encrypted binary.
Use Get-Help .\dumper.ps1 -Detailed
or Get-Help .\compiler.ps1 -Detailed
to get the usage help offline.
Use dumper.ps1
to dump the encrypted save file to plain JSON.
.\dumper.ps1 -saveFile ./ForgottonAnne-Save.new.json -dumpFile ./ForgottonAnne-Save.dump.json
Location of encrypted save file.
Default is ./ForgottonAnne-Save.new.json
.
Location of output file.
Default is ./ForgottonAnne-Save.dump.json
.
Use compiler.ps1
to encrypt dump back to binary readable by the game.
.\compiler.ps1 -dumpFile ./ForgottonAnne-Save.dump.json -saveFile ./ForgottonAnne-Save.new.json
Location of decrypted dump file.
Default is ./ForgottonAnne-Save.dump.json
.
Location of output file.
Default is ./ForgottonAnne-Save.new.json
.