Hey guys,
I worked on this little python script to decrypt nson files, which are the save files for games like "Wonder Save Trainer" or "Tomie Wanna Get Married". So far its really just a simple script that decompresses the nson files into plaintext json files. After editing you can then compress them again with the same script.
Tested on Ubuntu 20.04 with "Tomie Wanna Get Married".
To use the script rename the attached file to "nson_edit.py" and execute it like this to extract the json fiile.
Afterwords you can compress the json file again with this command:
Update: For Windows users: Replace "python3" with "py", that is the windows python launcher.
Feel free to ask me anything or provide helpful feedback how i could improve my post/program/writing whatever.
Have a nice day.
I worked on this little python script to decrypt nson files, which are the save files for games like "Wonder Save Trainer" or "Tomie Wanna Get Married". So far its really just a simple script that decompresses the nson files into plaintext json files. After editing you can then compress them again with the same script.
Tested on Ubuntu 20.04 with "Tomie Wanna Get Married".
To use the script rename the attached file to "nson_edit.py" and execute it like this to extract the json fiile.
Bash:
python3 nson_edit.py -x -i nsonfile -o jsonfile
Bash:
python3 nson_edit.py -c -i jsonfile -o nsonfile
Feel free to ask me anything or provide helpful feedback how i could improve my post/program/writing whatever.
Have a nice day.
Last edited: