Jump to content

Kaphotics

Helpful Member
  • Posts

    7271
  • Joined

  • Last visited

  • Days Won

    362

Everything posted by Kaphotics

  1. Both should be fixed in the next release; there's two areas that get stuck in an infinite loop
  2. The goal of the 'database' is to have the fastest load & search speeds possible. Sorting the database within the GUI isn't really intended; it's more for searching through your dumped pkm & sav backup contents. For speed, the program loads data on parallel threads, so ordering isn't preserved. If you add the below line of code: RawDB.Sort((x, y) => x.Species.CompareTo(y.Species)); ... right above this line (link) and recompile, the program will sort the database once it's done loading all the files. For a database of 111,000 -- mine, the Species Sort took 137ms; I have a 4x4GHz processor, others might not have comparable specs. I prefer to keep the original sorted order, as the bak savefiles are loosely grouped together in slot order. Species order is meh, others might prefer ordering by format, or a more complex sort (which would take a non-negligible amount of time for larger databases). For a more complex sort: RawDB = RawDB.OrderBy(z => z.Format).ThenBy(z => z.Species).ThenBy(z => z.Gender).ToList(); That will sort by format, then by... but takes a bit more RAM/cpu to process the sorting.
  3. You can manage your exported files however you want.
  4. PKHeX can read encrypted pbr saves. No need to decrypt with other tools after you extract it from PBR.
  5. You lend a pkm to an old man
  6. Will be possible in the next release for acquired secret base data. Import/Export {location - trainer name.sb6} data
  7. That might be why I shifted by 1 for my testing savefile back 3 years ago; you might have to debug for that one. XD saves aren't the same as mainline saves, they're kinda dynamically saved.
  8. https://github.com/kwsch/PKHeX/blame/63c705061de58fd5bc44cc04c65d51f7c05ef74f/PKHeX.Core/Saves/SAV3XD.cs#L280 and Line 298, added via https://github.com/kwsch/PKHeX/commit/78cb0d87fa8f65fafa2b91c9b831f400a105010e Should be resolved in the latest commit: https://github.com/kwsch/PKHeX/commit/e81e5f31daadd481c24d404072ace956e3720df1 ty
  9. You'd have to debug the program to see why it's acting incorrectly; I don't really care much for the C/XD minor features.
  10. Try moving the exe to a different location, if that doesn't allow things, run as administrator. The error message you posted is not from dragging a Pokemon, it's from dragging a wonder card in the mystery gift editor.
  11. You need to load save files instead of save states. .sa# (save state) is not a .sav (save file).
  12. Thanks, will be handled more cleanly in future releases: https://github.com/kwsch/PKHeX/blob/a30a00317fc2602606c771403cc93c28079474e5/PKHeX.Core/Saves/Substructures/Gen6/MysteryBlock6.cs#L58-L76
  13. Giving yourself the Mega Ring doesn't unlock the functionality. Use the trainer editor. Out-of-battle Mega formes aren't supported; whatever behavior it has is what you get.
  14. The underlying question is: why do you even want to do illegal transfers? Anything is possible if you bend the rules. If you really want gen2-->gen3, you're creating invalid data since the source cannot be transferred legally.
  15. Gen2 cannot transfer to Gen3. PKHeX emulates all transfer methods that the games allow. If you want backwards or disallowed conversion methods, you'd just be faking the data.
  16. Update your Windows. Windows 7 (service pack 1) can install net 4.6 https://www.microsoft.com/en-us/download/details.aspx?id=48130
  17. Restore backups and only randomize/bump levels once. If you keep repeating the action, it'll compound their levels.
  18. Close the program to save / flush all changes.
  19. Download some premade files. The batch editor edits, it does not create.
  20. Find the language ID you need to set (view a pkm with the selected language, then check what the Batch Editor says the Language value currently is). .Language=(insert value here) .IsNicknamed=false
  21. If it doesn't line up with the RNG algorithms (PKHeX nor RNG Reporter), it's likely something wrong on the user's end (emulation, active cheats, idk).
  22. Might be worth checking if this is an antishiny spread
  23. PKHeX marks nicknamed events as Fishy. You can access the full report by holding control when clicking. It's possible to nickname anything, so long as you have the same trainer details (can be done via RNG abuse).
×
×
  • Create New...