Jump to content

Kaphotics

Helpful Member
  • Posts

    7214
  • Joined

  • Last visited

  • Days Won

    356

Everything posted by Kaphotics

  1. Update your plugin. Plugins causing errors is not an issue with PKHeX
  2. Read the PKHeX changelog. Plugins that used the old Gen3 save file methods will need to be updated.
  3. I've fixed this in the latest batch of commits; just need to see if there's anything else that can be fixed prior to uploading a hotfix.
  4. Looks like invalid pkrs values. https://github.com/pret/pokeemerald/blob/5d7c438efcd341c777c866a7eb3f8401f8548dc5/src/pokemon.c#L6036-L6058 The byte at 0x44 has "01", which decomposes to "strain 0, days 1". Can't get strain 0, and when it's cured (days elapsed), it will never remember it had pkrs. I simulated the numbers to generate a list of possible PKRS values: https://github.com/pret/pokeemerald/blob/5d7c438efcd341c777c866a7eb3f8401f8548dc5/src/pokemon.c#L5940-L5978 var list = new List<int>(); for (int i = 0; i <= 255; i++) { var val = i; if ((val & 0x7) == 0) continue; if ((val & 0xF0) != 0) val &= 7; val |= (val << 4); val &= 0xF3; val++; $"{i:000}: {val:X2}".Dump(); list.Add(val); } list.OrderBy(z => z).Select(z => $"{z:X2}").Distinct().Dump(); And here is the list of initial values: 12 23 34 41 52 63 74 92 A3 B4 C1 D2 E3 F4 Note how strain 0 and strain 8 are not generatable. === Did you hack in PKRS with a cheat?
  5. Kaphotics

    Sigilyph

    ty fixed: https://github.com/kwsch/PKHeX/commit/1acefbcf9310570a6faa55825101fd62d46bde6d
  6. Open the decrypted data in a hex editor. It's empty data. Not a valid save file; working as intended.
  7. The game might not use the old logic flags, or the flags are differently ordered? I dunno.
  8. Fixed in latest commit; removed them from the legality lists. https://github.com/kwsch/PKHeX.EncounterSlotDumper/commit/6ad4416218885c935b1a7d1753f7455f9e3439a0 https://github.com/kwsch/PKHeX/commit/b36aa0ac99f2c31c5c76befbff332baf58e2fd73
  9. It's an RNG seed. You can replace it with another RNG seed, or you can use the current seed value to predict what the result will be (using another, undeveloped tool).
  10. PKHeX's pkm database allows you to toggle (dumped pkm) & (box data from saves). I know that OneDrive can also force keeping files locally, but you could temporarily download them and dump them. Or, you can change the behavior of LoadPKMSaves to use whatever keep-local folder(s) you want.
  11. Foreign Pokemon can't get the ribbon unless they're battle version is set. This is not the place to complain about your hacks being correctly flagged.
  12. gee i wonder if you *really* can receive the ash greninja gift on US/UM?
  13. Thanks, fixed in latest commit: https://github.com/kwsch/PKHeX/commit/332449f53d1dc7b982d71843479cf978531c0337 Use the dev build if this false flag bothers ya
  14. Thanks for reporting; it's a regression. Egg moves for gen6+ have to be in the relearn moves list (unless it is a "shared" egg move via Gen8's mechanic, which this pk7 is not). I've been wanting to refactor the moveset validation for a while now... maybe soon It's now fixed in the development build; next release should be in the next day or so.
  15. Do you even earn for playing the game? Personal enjoyment and sharing.
  16. You can reuse the PKHeX.Core.dll in other projects; like uploading the save file to your website and reading the party data directly.
  17. Why bother asking a hypothetical question if you haven't bothered checking the program?
  18. Sure, dump the game from your legitimately purchased copy of the game via your hacked switch.
  19. Just download one of their releases on GitHub.
  20. Thanks for reporting, fixed in latest commit: https://github.com/kwsch/PKHeX/commit/6d0da504d5c416a5aa4104b1b586c194357bf2a6 Wasn't fun tracking it down, haha. Was probably a typo error in noting the location ID via numpad.
  21. Modifying individual block flags is possible with the Block Data editor; there are thousands of possible flags to change, and localizing all of them for each supported language would be tedious. We have a guide on manually editing flags (which includes the Dynamax Adventures values): Clothing is again an issue with localization; having to detail what each piece of clothing is for each language is a large amount of bloat when 99% of users just want to "unlock all" clothing options. Unlocking all can be done by importing a block obtained from the forums. With each DLC / patch, the game may use more of the clothing bits, hence different possible bits. There's also the issue of legally-obtainable (gender-specific) clothes; having an editor with that metadata is a lot to manually document & maintain.
×
×
  • Create New...