Recent content by Synthlight

  1. S

    ROM Hack nexomon extinction save editing

    The item is used in game is the string "quest-supplies". When serialized (when the object is written to the save file), a number is used instead. In this case, that number is 7299 (not hex, this is an int). So if you're looking for that in the save file, convert it to 4 byte hex and search...
  2. S

    ROM Hack nexomon extinction save editing

    With my save editor you should be able to select the item (row) from the list and delete it. I can guess at the item though: "Supply Box" / "quest-supplies" / 7299 (Serialization ID for saves.)
  3. S

    ROM Hack nexomon extinction save editing

    My bad. Sorry!
  4. S

    ROM Hack nexomon extinction save editing

    Because it's a windows executable that requires .net core/desktop 3.1? I have no idea what the switch can run and never intended it to be run there in the first place. I designed it as a windows executable. I know practically NOTHING about the switch or what it's capable of. My best guess is...
  5. S

    ROM Hack nexomon extinction save editing

    No. The first couple of lines are the same struct, that didn't change, at least for the Switch save someone sent me. The problem with the Switch save is the monster struct lacks the cosmic field. The Switch save has a version of 13, Windows save has a version of 20. Cosmic field was added in...
  6. S

    ROM Hack nexomon extinction save editing

    I threw together a save editor for the Steam version: github /Synthlight/Nexomon-Extinction-Save-Editor (Can't post links yet so you'll need to assemble it yourself.) Unknown how the saves work on other platforms of how you'll get them to edit them, but there you go. As for the data types...