Jump to content

BlackShark

Contributor
  • Posts

    1692
  • Joined

  • Days Won

    102

Everything posted by BlackShark

  1. Read this: https://projectpokemon.org/home/tutorials/save-editing/managing-nds-saves/
  2. There are different methods to get your save files. Read these guides: https://projectpokemon.org/home/tutorials/save-editing/managing-gb-gbc-saves/ https://projectpokemon.org/home/tutorials/save-editing/managing-gba-saves/
  3. No. The offspring get its own PID, it's not connected to its parents.
  4. @Marie Shiomi @theSLAYER Stupid me already updated the plugin to NET9 ... sorry! Use the previous version (2.2.2), it still works fine on PKHeX 24.11.11. Update to v2.3 once PKHeX is on NET9. WC3Plugin-2.2.2.zip
  5. These are the relevant function: https://github.com/pret/pokeemerald/blob/master/src/field_specials.c#L1555 u16 GetDaysUntilPacifidlogTMAvailable(void) { u16 tmReceivedDay = VarGet(VAR_PACIFIDLOG_TM_RECEIVED_DAY); if (gLocalTime.days - tmReceivedDay >= 7) return 0; else if (gLocalTime.days < 0) return 8; return 7 - (gLocalTime.days - tmReceivedDay); } u16 SetPacifidlogTMReceivedDay(void) { VarSet(VAR_PACIFIDLOG_TM_RECEIVED_DAY, gLocalTime.days); return gLocalTime.days; } gLocalTime.days returns the current days from the RTC. In the Get function the last line "gLocalTime.days - tmReceivedDay" can result in a negative value if tmReceivedDay is greater gLocalTime.days, which can then result in high numbers. But it shouldn't be as high as 65,227.
  6. In PKHeX you can set constant 194 in the event flags research to the current number of elapsed days, or any lower number. That should fix it.
  7. It needs to enter HOME through Bank from any Gen 7 game or the Gen 1/2 VC games to get a valid tracker. Or it will stay illegal, there's no other way to get a valid tracker.
  8. You have to use Pokefinder to find a valid PID for your Groudon. Just follow this guide.
  9. Sky Editor can change the genders. Here is the latest version.
  10. You can ignore the error, wait for the next stable release of PKHeX or use the dev build until then.
  11. PKHeX doesn't have the data for them. Only a few event Pokemon have been serialized for Gen 2, the others would have to be added to this list https://github.com/kwsch/PKHeX.EncounterSlotDumper/blob/master/Resources/gen2/event2.csv
  12. The linked array was for the males, the females are right below. Here are both arrays with actual values instead of constants. private static readonly byte[] MaleTrainerTowerClasses = [ 0x0E, // FACILITY_CLASS_RUIN_MANIAC 0x11, // FACILITY_CLASS_TUBER_M 0x03, // FACILITY_CLASS_COOLTRAINER_M 0x15, // FACILITY_CLASS_RICH_BOY 0x17, // FACILITY_CLASS_POKEMANIAC 0x07, // FACILITY_CLASS_SWIMMER_M 0x0A, // FACILITY_CLASS_BLACK_BELT 0x19, // FACILITY_CLASS_GUITARIST 0x1A, // FACILITY_CLASS_KINDLER 0x1B, // FACILITY_CLASS_CAMPER 0x1D, // FACILITY_CLASS_BUG_MANIAC 0x1E, // FACILITY_CLASS_PSYCHIC_M 0x20, // FACILITY_CLASS_GENTLEMAN 0x26, // FACILITY_CLASS_SCHOOL_KID_M 0x29, // FACILITY_CLASS_POKEFAN_M 0x09, // FACILITY_CLASS_EXPERT_M 0x2B, // FACILITY_CLASS_YOUNGSTER 0x2D, // FACILITY_CLASS_FISHERMAN 0x2E, // FACILITY_CLASS_CYCLING_TRIATHLETE_M 0x30, // FACILITY_CLASS_RUNNING_TRIATHLETE_M 0x32, // FACILITY_CLASS_SWIMMING_TRIATHLETE_M 0x34, // FACILITY_CLASS_DRAGON_TAMER 0x04, // FACILITY_CLASS_BIRD_KEEPER 0x35, // FACILITY_CLASS_NINJA_BOY 0x3A, // FACILITY_CLASS_SAILOR 0x05, // FACILITY_CLASS_COLLECTOR 0x42, // FACILITY_CLASS_PKMN_BREEDER_M 0x44, // FACILITY_CLASS_PKMN_RANGER_M 0x43, // FACILITY_CLASS_BUG_CATCHER 0x00 // FACILITY_CLASS_HIKER ]; private static readonly byte[] FemaleTrainerTowerClasses = [ 0x0D, // FACILITY_CLASS_AROMA_LADY 0x10, // FACILITY_CLASS_TUBER_F 0x12, // FACILITY_CLASS_COOLTRAINER_F 0x0C, // FACILITY_CLASS_HEX_MANIAC 0x13, // FACILITY_CLASS_LADY 0x14, // FACILITY_CLASS_BEAUTY 0x1F, // FACILITY_CLASS_PSYCHIC_F 0x27, // FACILITY_CLASS_SCHOOL_KID_F 0x2A, // FACILITY_CLASS_POKEFAN_F 0x16, // FACILITY_CLASS_EXPERT_F 0x2F, // FACILITY_CLASS_CYCLING_TRIATHLETE_F 0x31, // FACILITY_CLASS_RUNNING_TRIATHLETE_F 0x33, // FACILITY_CLASS_SWIMMING_TRIATHLETE_F 0x36, // FACILITY_CLASS_BATTLE_GIRL 0x37, // FACILITY_CLASS_PARASOL_LADY 0x38, // FACILITY_CLASS_SWIMMER_F 0x1C, // FACILITY_CLASS_PICNICKER 0x02, // FACILITY_CLASS_PKMN_BREEDER_F 0x45, // FACILITY_CLASS_PKMN_RANGER_F 0x47 // FACILITY_CLASS_LASS ];
  13. It's not stored directly, but there is a trainer class stored at the offset right before the streak. From the list of possible classes for each gender you could determine what the player gender was https://github.com/pret/pokeemerald/blob/master/src/battle_tower.c#L153
  14. For the Switch the valid dates range from 01/01/2000 to 12/31/2099. You can use PKHeX's Block Data editor and change the date in the PlayerGeoLocation or Status block to something in the valid range.
  15. The AUT2010 Mew is the French version, Fall in French is Automne. The English version didn't differ between regions, it's always FAL2010.
  16. Here are the party Pokemon from the Let's Go Pikachu/Eevee Demo Version. This demo is currently still available on the eShop. The demo randomly boots into LGP or LGE. Though it feels like 90% of the time it is LGP.... The party consists of Pikachu, Eevee, Squirtel, Charmander, Bulbasaur and Meowth. All Pokemon are level 10 and have random stats, the starter has 6*31 IVs but anything else is random though. You will also either play as the male (Chase) or female (Elaine) character randomly, with random TID/SID. I don't think there's anything more special about the demo. LGPE Demo Party Pokemon.zip
  17. You can change the name and gender in the Trainer Info editor. However changing the gender in Gen 6+ is not possible, because it could break your game due to event flags depending on the chosen gender.
  18. Dont't use save states, save ingame as you would on your console.
  19. You can't. The Pokemon needs a HOME tracker which PKHeX can not assign, so it will be illegal. The only way would be uploading it to HOME through Pokemon Bank. However if you don't have an ongoing subscription that's also impossible since the eShop was shut down.
  20. By default PKHeX searches backups and other save paths and shows those Pokemon in the PKM Database. You can turn this off in the EntityDb Settings.
×
×
  • Create New...