Giter Site home page Giter Site logo

phasmoeditor's Introduction

hellooooo i am cnnd

i write code in TypeScript & Go

contact me on my website! discord is preferred :)

phasmoeditor's People

Contributors

connordennison avatar dependabot[bot] avatar inzgiba avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

phasmoeditor's Issues

Can't change my level

editing the "level" stat does nothing and I want to go from level 8 to 20 and I'm not sure how edit it.

The editor is not available

While I was improving my reputation, The editor is not available. Please repair as soon as possible, thanks ~~~

"Error decrypting save file"

I have bad news, either your project can't decrypt save file anymore or after several edits of file I forgot something..

aQzsh315ky.mp4

image
the path I used

feature: Translating a key into a name

How about implementing functionality that will allow to adapt the "key" of the fields to be changed into a "human" name

As an implementation you can use the library - react-i18next / next-i18next

That in the future will allow to add localization to different languages and make the project more friendly for different speakers of languages

Will this get me banned?

I know this isn't an issue with the program itself but, I've seen people getting banned for editing their save file. I just want to give myself infinite money but I don't want to get a game ban on my account.

Error decrypting...

image
I've done a bit of experimenting using Python and it seems like this error randomly happens after using ALT+F4 to exit the game causing the save file to fail decrypt.
I suspect and figure it's because randomly parts of the JSON file are missing or unfinished.

Example

"SanityMedication1Tier" : {"__type" : "int","value" : 0},"SoundSensor1Tier" : {"__type" : "int","value" : 0},"Tripod1Tier" : {"__type" : "int","value" : 0},"Loadout0Name" : {"__type" : "string","value" : "Loadout 1"},"Bone7" : {"__type" : "int","value" : 1}, <-- (Random unexpected JSON)

My experiment in trying to fix this.

    def _decryptFile(self, data):
        try:
            if not data:
                return None

            iv = data[:16]
            decipher = AES.new(
                hashlib.pbkdf2_hmac('sha1', b't36gref9u84y7f43g', iv, 100, dklen=16),
                AES.MODE_CBC,
                iv
            )
            decrypted = decipher.decrypt(data[16:])
            clean_decrypted = ''.join(chr(byte) for byte in decrypted if 32 <= byte <= 126)
            clean_decrypted = re.sub(r'"playedMaps"(\s|)\:(\s){\s*.*\s*.*\s*.\s*.*\s*', '', clean_decrypted)

            print(clean_decrypted)

            return clean_decrypted
        except Exception as e:
            print(e)
            return None

I guess the only solution at the moment is to run the output through a JSON repair API or function to try to remove any decrypt artifacts or any oddities.

not working

i make a save, put it in the game, boot it up and it says "Successfully reverted to backup". how do i fix this?

Safety

Hiya, not so much an issue but wondering how safe it is to use it since the update? Are there anythings in particular we should be careful to change etc to avoid getting detected. Thanks

Save File error

when i try to upload my save file it keep saying that "Error decrypting save file - make sure you're using the correct file (and that it's valid)" but when i use it earlier it was fine only change my prestige

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.