Qwokka / Cetus

Browser extension for hacking WebAssembly games a la Cheat Engine
Apache License 2.0
528 stars 45 forks source link

Issue with Saving Patches #57

Closed Riddle1001 closed 1 year ago

Riddle1001 commented 1 year ago

Hello,

I have been encountering a problem while trying to save patches multiple times. It seems that the operation isn't executing correctly. Here's what I've been doing:

  1. I find a specific value that needs to be patched.
  2. I identify the functions that are writing to this value.
  3. I proceed to modify the function accordingly.
  4. Finally, I attempt to save the patch.

However, the issue arises when I try to export the patch (Which also probably means it's not being applied). The exported JSON file doesn't appear to contain all the necessary elements. Specifically, I'm expecting to see the 'name', 'index', 'bytes', and 'url' fields in the exported file. But when I examine the file, all I see are the 'name' and 'url' fields.

Here's an example of what my exported JSON file looks like:

{
  "name": "invis",
  "url": "example.io/"
}

As you can see, the 'index' and 'bytes' fields, which I believe should be present, are missing from the exported JSON file.

Thanks

Riddle1001 commented 1 year ago

Was using a different chromium based browser, switch to firefox and it works correctly.