Ah okay, thanks for letting me know, I will try and see if you're correct just a check, I know the dev has plans for a cheat menu in the full release(2026 ish) but it's a pretty hard grind rn and a long wait and some are time locked. If I have some more time later I will dive in the source code again and see what has changed in order to unlock the clothes. I also like to have them all
Cool thanks.
BTW, it should be possible to do this at the command line (linux/mac) with this:
cat legacy.json | base64 --decode | sed 's/oldString/newString/' > NEWlegacy.json
Picking whatever change you want in the sed command. That should take the original file, decode it, edit it, re-encode the result and save as a new file. Obviously we should work from a backup file so it'd be more like:
cat legacy.json.original | base64 --decode | sed 's/"congurencePoints":0/"congurencePoints":10/' > legacy.json
The security field looks like it could be an MD5 hash, but I've tried a few things and cant generate a value that matches the unedited file.