Jump to content

Kaphotics

Helpful Member
  • Posts

    7199
  • Joined

  • Last visited

  • Days Won

    355

Everything posted by Kaphotics

  1. Implemented in the latest commits: If you check the legality of a Pokemon that evolved from Wurmple, it'll check to see if the calculation matches the end species. If you check the verbose legality of a Wurmple, it'll tell you what it will evolve into.
  2. Closing due to not being related to PKHeX.
  3. Implemented in latest commit. Thanks for reporting!
  4. Implemented in latest commit. Thanks for reporting
  5. That tutorial is only for earlier firmware versions. The only way on current firmware is Cubic Ninja or Ocarina of Time w/Powersaves. Once you get to homebrew menu, save_manager can dump restore saves. Just use PKHeX's trainer editor.
  6. Homebrew is available for current firmware consoles so long as you have an entry point to get to homebrew menu.
  7. You can, but PKHeX can take care of that for you automatically when that Modify PK6 option is checked. You've already seen it working as the loaded file flipped legality states when read back from the tabs. Just load it and set it back to tabs.
  8. PKHeX modifies the handling and geolocation if the modify pk6 option is checked. Try disabling that option before you click the legality indicator. Also, older versions may be lacking such checks.
  9. PKHeX uses an internal wonder card database. New event data can be added by creating a wc6 folder and putting new wonder cards in that folder.
  10. The last update was almost 3 years ago. You can always try older versions of programs.
  11. Right, the 'internal database' is a baked-in resource file, like sprites. Only way to update it is to recompile The local folder allows you to expand the internal database for the current session.
  12. Yes. Grabs all the files inside the wc6 folder, even sub folders. https://github.com/kwsch/PKHeX/blob/master/PKX/f1-Main.cs#L854-L858 if (Directory.Exists(WC6DatabasePath)) wc6db.AddRange(from file in Directory.GetFiles(WC6DatabasePath, "*", SearchOption.AllDirectories) let fi = new FileInfo(file) where fi.Extension == ".wc6" && fi.Length == WC6.Size select new WC6(File.ReadAllBytes(file)));
  13. PKHeX uses the database from this thread to check events, yeah it's only updated every-so-often. PKHeX allows you to expand its internal event database. Create a "wc6" folder in the same folder as PKHeX.exe, and it'll add them to the internal database when the program is launched. Alternatively, just take the zip from this thread and extract it to that folder
  14. No, but you could recompile it after changing the default checkedstate in the designer view. I can also add a prompt when importing a battle video to allow the user to temp bypass.
  15. Do you have a save file loaded when you drop the battle video in? PKHeX modifies the handling and geolocation if the modify pk6 option is checked. Try disabling that option before you load the video. Also, older versions may be lacking such checks.
  16. Not so much a bug, but a type of check that wasn't yet implemented. Implemented in latest commit. I was working on it earlier for the Eternal Flower / Vivillon pattern on bred pkm showing up as legal... so now PKHeX catches invalid battle forms (Aegislash etc) too. Thanks for reporting!
  17. Fixed in latest commit. Thanks for reporting!
  18. Posted new update, that bugfix was omitted previously. PKHeX has this same conversion implemented, so you shouldn't have to use this program. It's mainly to transfer 3->4->5.
  19. 256*counter. Every time the internal step counter is a multiple of 256, all hatch counters are decremented by 1. If a counter is zero, the egg will hatch.
  20. Fixed in latest commit. Thanks for reporting!
  21. If you had your save file loaded and dropped the wc6 in, the game version matches whatever your save file is. Only wc6full files store the compatible games. PKHeX uses community contributed wonder cards for legality checking. If you have an issue with a given event file, feel free to post in the appropriate forum. Fan sites aren't always correct
  22. PKHeX is still technically correct; there is no encounter where you can obtain a level 16 Camerupt I'll probably add some logic for level checking if the encounter is not valid so that the reason it is illegal may be more clear.
  23. Yup, location was missed. Had to manually code those types of encounters Implemented in latest commit, thanks for reporting!
×
×
  • Create New...