Jump to content

Kaphotics

Helpful Member
  • Posts

    6822
  • Joined

  • Last visited

  • Days Won

    315

Everything posted by Kaphotics

  1. Part of your save data is apparently corrupted; the program reads Gender from 0x3E3D within the save file, but your save file (0x3160-0x4000) is [00 39] repeating. Your trainer gender doesn't appear correctly at that offset, hence the program complaining about it.
  2. pkNX is a ROM editor; to edit a ROM, you need a hacked switch to dump your game data. Without a modded/hacked switch, you can't obtain the files or even load them back to your switch -- your switch needs to be modded to use the files too.
  3. Added in latest commit: https://github.com/kwsch/PKHeX/commit/3dd60890fb73dcc4824a8165687e28363144d127 The "Recent" tab shows the {X} most recently loaded files, and any from the custom folder paths (like jksv) or any you add (like vba's battery folder). Probably better to do that instead, since those will always be "recent". Setting: Settings.Backup.OtherBackupPaths
  4. Already reported & fixed & working just fine on the latest release (24.03.10); you're using an old version. https://github.com/kwsch/PKHeX/issues/4184
  5. Swellow does not have a valid PID/IV correlation, meaning that the RNG cannot generate the both PID and IVs that your Swellow has. All your Gen3 Pokémon are like this, even those for Gen4. >I edited the pokemon with PKSM If you change the PID/IVs/etc, then they aren't legitimate.
  6. Kaphotics

    pkhex question

    PKHeX is a save file editor, not a ROM editor. PKHeX does not change how the game behaves, or what content is innately available. It only modifies saved data that the game references.
  7. https://projectpokemon.org/home/forums/topic/64871-unable-to-load-file-error/?do=findComment&comment=288737
  8. thanks, fixed on latest commits https://github.com/kwsch/PKHeX/commit/2f08a35a5cd68ca79e2822713e58dfb342c5763e
  9. Everything is recognized correctly after the fixes from the latest commits (reported by posters prior); feel free to ignore the flags for those. Next release likely by the end of the weekend
  10. Already fixed on latest commits; https://github.com/kwsch/PKHeX/commit/7122c5c3f5f437c986e1910b825ae36a2e93d876 In the meantime, you can manually create the folder it is forgetting to create. In your case: E:\De Jure\Program Files\PKHeX\pkmdb\ Side note, PKHeX isn't really a "Program Files" level program, moreso a portable app. I don't think it will cause issues being there, but the program does not require any specific administrator permissions to function (reading and writing files isn't a special privilege for PCs).
  11. Connect online and do one Surprise Trade. Alternatively, wait until the next release as this has already been reported & fixed on latest commits.
  12. ty, fixed on latest https://github.com/kwsch/PKHeX/commit/7ac5da37b393e78c34da755d34f823bae8d0448f
  13. Do you have any info regarding the setup (seed) for this encounter? I don't see it in Pokefinder, or a frame where you get a Slot 11 roll for the regular result. Does Hustle/Pressure/Vital Spirit behave differently for Wild Pokemon (not forcing max level for the slot)?
  14. Thanks, fixed on latest commits: Fishing hook check (HG/SS +friendship mechanic): https://github.com/kwsch/PKHeX/commit/819f6009bfa827a64b28ec7078cc82e146d2e2de Honey Tree random level: https://github.com/kwsch/PKHeX/commit/a62e169258ed115b7767407516a85bdb4d7c6b7e
  15. Plugin issues are to be directed to the plugin author; I do not support everyone's plugins. https://github.com/Leanny/PKHeX_Raid_Plugin/issues/104 Plugin needs to be updated to work on the latest commit; otherwise, use an older release of PKHeX that the plugin supports.
  16. Be sure you're opening the file in a Scarlet/Violet save file.
  17. Wine stable 9.0 is not the latest; there are more recent updates (9.3+) with WinForms specific fixes.
  18. You need to elaborate: 1. Which version of wine did you install? The latest releases of Wine work for others; ensure you are running the latest. 2. Does the application even launch? Or does it give an error message. Since you are using a M1 mac, it is a different CPU architecture than the 64bit exe, and is likely not compatible. You can try compiling the exe for ARM on a Windows machine and see if that works, but idk. Nobody has tested that.
  19. The latest release is from January, and the Pokémon GO legality binaries are only manually updated every release. Recognition of Poipole being legal was added last week: https://github.com/projectpokemon/PoGoEncTool/commit/52434003764fe2a2dfaf137c558320979e515b4f
  20. Not a PKHeX error, please go direct plugin questions to the plugin author/repo.
  21. The latest release works fine, the development build is not ready/tested for public consumption. We hadn't yet double checked that form for correct behavior, but I've found the missing code and re-added the loading of that checkbox.
  22. Lucky you, I reverse engineered a 14 year old program to convert its functions into PKHeX for Gen4 battle video ripping See attached Uxie (assumed Platinum Acuity Cavern, since Version & Location aren't saved in battle videos), along with all 12 unfixed participating Pokémon. Other small things like Met Date, Ribbons, and Contest Stats are also not stored in battle videos, so you'll have to restore those however you see fit. 0480 - UXIE - B8F264593D2E.pk4dump.rar // ripped from offset 0x27000 (extdata block 02) var data = File.ReadAllBytes(@"D:\Kurt\Desktop\test.bv4"); var bv4 = new BattleVideo4(); bv4.Decrypt(); foreach (var pk in bv4.GetTeam(0)) File.WriteAllBytes(@$"E:\dump\0_{pk.FileName}", pk.DecryptedPartyData); foreach (var pk in bv4.GetTeam(1)) File.WriteAllBytes(@$"E:\dump\1_{pk.FileName}", pk.DecryptedPartyData); https://github.com/kwsch/PKHeX/commit/802974a42c91d209cc75c383b09402136ca8beea
  23. This thread is for reporting issues with PKHeX for legitimate pokemon, not for issues with other tools. https://projectpokemon.org/home/forums/topic/64728-pid-mismatch-shadow-gligar-colosseum/
  24. From PKHeX: // Version is not updated when hatching an Egg in Gen3. Version is a clear indicator of the game it originated on.
×
×
  • Create New...