Skip to content

Florararie/Phasmophobia-Save-Editor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Phasmophobia-Save-Editor

Just a simple script to decrypt Phasmophobia save files to readable JSON which you can then edit and re-encrypt for use.

Example Usage

if __name__ == "__main__":
    es3 = EasySave3("t36gref9u84y7f43g") # <-- Phasmophobia Password
    es3.decrypt_to_json("SaveFile.txt", "SaveFile.readable.json")

Encrypt again after any edits

if __name__ == "__main__":
    es3 = EasySave3("t36gref9u84y7f43g") # <-- Phasmophobia Password
    es3.encrypt_from_json("SaveFile.readable.json", "SaveFile.encrypted.txt")

I'm too lazy to develop past this point as I only made this for a few simple edits. So nothing fancy like a GUI will be made (but feel free to fork and add yourself if you'd like)

Some fields to note-

  • PlayersMoney : Self explanatory. The player's money.
  • NewLevel : Player's current level
  • Experience : How much experience you currently have, can add to make progress to next level quicker
  • <ItemType>TierThreeUnlockOwned : Whether or not you own tier three of that item. Can set to true to unlock them automatically
  • Bone<1-12> : Can set each of these entries to 3 to make them appear in the cabinet in the main lobby

That's all I cared to check. Of course other things can be changed, but do so at your own discretion.

Made with <3 by Flory

About

Just a simple script to decrypt Phasmophobia save files to readable JSON which you can then edit and re-encrypt for use.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages