Okay, so I\'m doing some research on how random numbers are generated with the Math.random method. So far I learned that it starts with a \"random\" seed, and that seed is p
No, you cannot predict the seed, but you can preemtively generate enough numbers in order to accurately brute force a match.
Anyhow, start of by reading the wiki page on RNG's - http://en.wikipedia.org/wiki/Random_number_generation, the look at the practical implementations of PRNG's.