It's a love-hate thing. I mean, if I learn how to manipulate it well, I don't really need to trade anymore, you know? :P Maybe just for egg move parents or something.
Alright, after reading some more, I have to admit it's a bit confusing to me since the article's kind of assuming the reader knows a bit about emerald (and I don't), and some of the math terminology is confusing me.
I was testing this out on my platinum. I caught a gastly and wrote done a range of seconds I caught it at and found the seed for each using the program.
The RNG could very will still be running at some fixed frequency, as it does with emerald, so your seed would not in fact be the PID of the pokemon, but some other number a little furthur down the chain.The seed 8209000A was the one it was, because it was the only one with the same nature.
I think this is because your initial number was not actually the pid :(When I got to the ivs, they were not the same as it was in the game. According to the guide,
First Random Number: x|xxxxx|xxxxx|xxxxx
-|DefIV|AtkIV|HP IV
The gastly I caught IVs were 17/5/23/22/10/26 (HP/A/D/SA/SD/Spe)
My binary number is :
1|01110|10101|01011
which produces 14|21|11, not the IVs I got.
If instead you keep the first number, I noticed it results
10111|01010|101011
which produces 23|10|x
This way results in two correct IVs, Def and S Def. The last 6 numbers, no matter which 5 you choose ( keeping them in order obviously) do not create a third IV.
All the IVs, beside the HP IV, can be created by deleting one number in the first binary number. The HP IV can be created in the second random number
1100001110000011
by deleting a zero
1|100|0|01|110000011
No other IV can be created in the second random number line except by deleting 2 or more numbers.
I'll try and catch a pokemon later today, and see if the IVs form a pattern.
You are right. I messed up on the continue screen part.
How can you estimate how many frames you spent on it?
Also, how is the platinum RNG different from D/P RNG?
Can anyone explain to me how you get 2fd8 out of 2099 - 2000 + x?