Search results

  1. Past Gen RNG Research

    After intensive debugging it turned out Pokemon Platinum uses standard PRNG to decode/encode whole section containing achievements like: trainer card score, number of link battles, number of trades, number of wins in link battles, number of loses in link battles, etc. Section responsible for...
  2. Most Generation PRNG Help / Information

    Not really, when you save the game in place where rng is not moved by default ( no moving npcs ), all you will achieve is exact initial seed. That DOES NOT remove randomness from rng as rng by itself IS NOT LOCKED/FROZEN at all. Furthermore even in normal gameplay (not when you start new game...
  3. Most Generation PRNG Help / Information

    I know main point is not to just make AR codes, more like better analyze the game internal workings (like for instance which zones have walking trainers and forward PRNG). If you know the values of seeds (like using RAM Watch) its easy to tell if there are any or not. If location does not have...
  4. Most Generation PRNG Help / Information

    Pokemon Platinum Some insight into Pokemon Platinum RNG: - current PRNG seed memory address: 0x021BFB14 - Mersenne Twister seed table (624 32bit values): 0x021BFB18-0x021C04D4 - index of next IRNG seed used (index from table, values are 1-624 and always taken as mod 624, therefore for 624...
Top