Jump to content

Kaphotics

Helpful Member
  • Posts

    7216
  • Joined

  • Last visited

  • Days Won

    357

Everything posted by Kaphotics

  1. https://www.lifewire.com/how-to-install-the-wii-homebrew-channel-2498513 SaveGame ManagerGX https://www.youtube.com/watch?v=1_zZOkt4C3c
  2. export the save file with savedatafiler or another save data manager like checkpoint. you're looking for a file called 'main'; go watch a tutorial video.
  3. Can edit them in PKHeX by setting event flags 676-721. https://github.com/kwsch/PKHeX/issues/1819
  4. PKHeX does not modify the footer of save files. Emulators and virtual console titles do not save the RTC data the same way, and even emulators are inconsistent between themselves. public const int SIZE_G2RAW_U = 0x8000; public const int SIZE_G2VC_U = 0x8010; public const int SIZE_G2BAT_U = 0x802C; public const int SIZE_G2EMU_U = 0x8030; public const int SIZE_G2RAW_J = 0x10000; public const int SIZE_G2VC_J = 0x10010; public const int SIZE_G2BAT_J = 0x1002C; public const int SIZE_G2EMU_J = 0x10030; There's no need for PKHeX to support save file conversion; conversion would be best suited as a separate tool.
  5. Thanks, should be fixed in latest commit https://github.com/kwsch/PKHeX/commit/033d5baa060480b84a14f153987420da3be17c4d
  6. PKHeX is a computer program that does not interact with other programs. PKHeX cannot edit powersave files, as the sticky says.
  7. The RNG for the 3DS pkm games is 128 bit (SFMT) so it allows for any combination. Gen5's RNG is 64bit, not 2*32bit. There was also a Mersenne Twister which was responsible for IVs (regular pkm; wondercards used the aforementioned PIDRNG). Legality is based on whether or not the chance of getting that result is possible within the period of the RNG (time before it repeats). Since the period is orders of magnitude larger than the chance of getting a pkm combination, any combo is valid.
  8. Not happening. Any editor would need to be localizable to all languages, and would not result in much improvement vs time spent & program bloat. If you tell me what counts should be set for all 173 items I can alter the program so that it sets those counts instead of 25 for all. Until then, the functionality stays as is.
  9. Fixed as a side effect of the latest commit https://github.com/kwsch/PKHeX/commit/05c4a0f286ba3a93c553fb00ffb44d0fa6d9c6bb OT=Satoshi (for chs/cht) currently isn't in the database, will need to be added as another Simulated WC7 @Sabresite
  10. Were these transferred legally? Training Data is not cleared on pk6->pk7 transfer, but none of these pkm have any training data (thus cannot have the ribbon). https://github.com/kwsch/PKHeX/blob/07bd2412cb8c3bed2519abdeab4af902a89e2da4/PKHeX.Core/PKM/PK6.cs#L614
  11. JEREMY pkm were just wild captures that were cloned. There's nothing special about them
  12. ABDF: None ABEF: None BACD-R: Most gen3 events BACD-U: Mystery Mew (and maybe others, off the top of my head). You can see which type of method an individual pkm has with PKHeX (hold control and view the legality).
  13. Thanks, fixed in latest commit https://github.com/kwsch/PKHeX/commit/14fc71a5d25574c4ecb378f0b65ddc584fb55bf7 Zygarde can be 50/10% PC from any original form, only if it has inhabited gen7(++).
  14. Current checking code (see last if check): internal static bool IsFormChangeable(PKM pkm, int species, int form) { if (FormChange.Contains(species)) return true; if (IsEvolvedFormChange(pkm)) return true; if (species == 718 && pkm.InhabitedGeneration(7) && form != 1) return true; return false; } Is Zygarde forme 0 (50% AB) still not convertible to PC? And is PC->AB not possible? Can update the check with more accurate restrictions..
  15. Thanks, fixed in latest commit :0 https://github.com/kwsch/PKHeX/commit/382c94c3488fbcdaedb28f566168e6c8df42b9a5
  16. You can't catch Celebi outside of the virtual console games or a Japanese game. Working as intended.
  17. Kaphotics

    Gen2 Language

    Language in gen 2 is auto detected and is not a part of the saved pk2 data.
  18. Cottonee doesn't have the same abilities as Phanpy. Loading it to tabs has PKHeX refresh its ability. Set the ability/ability number. https://github.com/kwsch/PKHeX/blob/999427f484398192b246f06af916e94eaa72bfe0/PKHeX.WinForms/Subforms/PKM Editors/BatchEditor.cs#L611
  19. nobody has cared to go through the effort of documenting it either until someone documents it, it can't be edited. research forum -> here
  20. ... pkhex automatically fixes problems when you save it from tabs checking legality (from tabs) fixes problems. If you check legality from the slot, you get this: Invalid: Ability is not valid for species/form. === Valid Move 1: Relearnable Move. Valid Move 2: Relearnable Move. Valid Move 3: Relearnable Move. Valid Move 4: Relearnable Move. Valid Relearn Move 1: Relearnable Move. Valid Relearn Move 2: Relearnable Move. Valid Relearn Move 3: Relearnable Move. Valid Relearn Move 4: Relearnable Move. Fishy: TID and SID are 0. Valid: Able to hatch an Egg at Met Location. Valid: Nickname matches species name. Valid: Current level is not below met level. Valid: All ribbons accounted for. Valid: Ball possible for species. Valid: History block is valid. Valid: Geolocation: Country is in 3DS region. === Encounter Type: Egg (Phanpy) PID Type: None Working as intended.
×
×
  • Create New...