Jump to content

BlackShark

Contributor
  • Posts

    1692
  • Joined

  • Days Won

    102

BlackShark last won the day on November 17

BlackShark had the most liked content!

Reputation

769 Excellent

General

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  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.
×
×
  • Create New...