Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/31/21 in all areas

  1. 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?
    2 points
  2. For anyone still struggling with 30 dark types remember to play on April 1st, Purrloin will be one of the featured spawns for that day only. Source: BREAKING: Pokémon mischief is on the rise, and Team GO Rocket has an Aipom problem - Pokémon GO (pokemongolive.com) I'm slowly getting there, I just need 5 dark to progress now
    2 points
  3. Once you use the item, Flapple will appear there till the end of the day. Time manipulation via changing Switch clock will cause the raid to disappear. You can only catch it once (once you catch that Flapple, the raid disappears.) I am not sure, but I think you can invite people every time you attempt to catch it. It saves right as you use the Crystal, so the clock starts ticking down from there. It follows Switch time, and ends at midnight (the Crystal usage doesn't count 24 hours for you, purely depends on when midnight is.)
    1 point
  4. Version 17.08.19

    10734 downloads

    Converts a pkm/3gpkm file to any of the forward generation formats, depending on what the user selects. Drag & Drop tool that emulates: Any official transfer method Fakes non-official transfer methods (backwards conversion)
    1 point
×
×
  • Create New...