Jump to content

Kaphotics

Helpful Member
  • Posts

    7213
  • Joined

  • Last visited

  • Days Won

    356

Everything posted by Kaphotics

  1. https://github.com/kwsch/PKHeX/blob/5fe38e1707eaea84921df1f79b135e16172a1748/PKHeX.Core/Resources/text/items/gen2/text_ItemsG2_ja.txt
  2. Plugins are unrelated to base PKHeX. Keep in mind that date rollovers advance the RNG seed, so looking at previous-day save files and loading them with a future date will cause the shown results to be inaccurate.
  3. I only post stable releases once things have been determined as stable.
  4. Was reported and fixed yesterday, see more here: https://projectpokemon.org/home/forums/topic/57375-pkhex-new-update-legality-errors-contribution-page/?do=findComment&comment=269388
  5. If you scroll through the attached files, you'll see that none of them contain pk8/etc format data. It's thus inferred that HOME only serves you metadata, and you request different transactions. Besides some surface information, the data never leaves the server unless you're downloading into a secure device (Nintendo Switch), because they need to put the data in the games.
  6. There is no move deleter in Gen1. You cannot get empty move slots if the encounter has been leveled up enough to fill out its moveset. The catch rate is used as the Held Item ID in Gen2. The lack of a value there implies it was transferred to Gen2, which has a Move Deleter. Catch Rates are modified when transferred to Gen2, so having the original catch rate (depending on the value) implies your example was never traded to Gen2, thus, no Move Deleter. Feeling: Thanks, fixed in latest commit. There have been a lot of improvements in memory checking, which didn't reach PKHeX's transfer logic. https://github.com/kwsch/PKHeX/commit/113cd9be4fa14681db100fbe1f78c8e14b3753ef
  7. Re-read the readme for pkNX. It only supports v1.3 (latest) game backups.
  8. Your first picture clearly shows that the file is NOT in the exefs folder.
  9. Re-read the error message shown and think about it.
  10. Control click any of the Nickname/OT text boxes to view the raw / trash byte editor.
  11. Properly transfer the data. Something is truncating the final few byes off the end, leading to an irregular size.
  12. Kaphotics

    Error pokedex

    Fix the displayed gender in the pokedex.
  13. Slowpoke has 3 base egg moves, with Tackle last. Moves must be pushed out before they can be re-added. To push out 3 base moves to reapply Yawn, parents must have 3 shared level up moves, and Yawn last. The parents only have 4 move slots each, and all 4 have been used. We cannot have ANY egg moves, as there are no more parent move slots (need 3 between them). Working as intended.
  14. The mobile app is a proof-of-concept program; it does not have feature parity with the main application. There is no HaX mode.
  15. By researching the changes required to the save file to get the state you want, documenting them, and implementing them into the program? PKHeX is not magic.
  16. Not a bug; PKHeX just prevents you from toggling the Captured/Defeated state back to any of the not-presented states because a simple ComboBox does not handle the changes required to set the requested not-roamed or roaming state. // CurrentStat:ComboboxSource // Not roamed: Not roamed/Defeated/Captured // Roaming: Roaming/Defeated/Captured // Defeated: Defeated/Captured // Captured: Defeated/Captured // Top 2 bit acts as flags of some sorts for (int i = 0; i < cbr.Length; i++) { int c = SAV.Data[ofsRoamer + 0x2E + i]; var states = GetStates(); if (states.All(z => z.Value != c)) states.Add(new ComboItem($"Unknown (0x{c:X2})", c)); cbr[i].Items.Clear(); cbr[i].InitializeBinding(); cbr[i].DataSource = new BindingSource(states.Where(v => v.Value >= 2 || v.Value == c).ToList(), null);
  17. PKHeX converts between formats automatically, using transfer logic to mimic the games.
  18. Dump boxes->import boxes, or drag and drop individual files. Familiarize yourself with what the program can do.
  19. Use the encounter database. Stop trying to fudge data if you don't know the requirements for the encounter. 1. Should have 4 flawless IVs, not 3. 2. Should have a Dynamax Level of at least 8. 3. Must be ability 1. Changing the PID/EC/IV/Nature for these encounters is traceable, by the way. There's a correlation for Max Lair raids, but its computation is too slow to be done without impacting the program's performance.
  20. Programs don't magically become "smart". It takes time to add features. Old versions of the program don't have all the smarts that a prior version would have. We're skeptical of your memory, because multiple different tools are telling us the data did not originate how you're saying it originated. Programs don't magically become "smart". It takes time to add features. Old versions of the program don't have all the smarts that a prior version would have. If you use cheat codes, don't assume they have no side effect. The game generates data according to patterns, because that's how the game code works. If your data does not follow a pattern, then obviously you did something outside the bounds of normal gameplay (cheats). Again, programs don't become "smart" without effort. Nobody has documented, organized, and codified receivability restrictions for all games.
  21. Did you even bother looking at the save file within PKHeX? Literally everything is illegal, so this is a hacked save file for sure.
×
×
  • Create New...