sorvo2750: The 102 I thought I seen is apparently true. Today I rolled a 100, so I guess 108 is achievable!
Actually, I wouldn't be so sure, at least not without figuring out what PRNG the game uses and analyzing it carefully.
Probability of rolling an 18 in a stat is 1 / 256.
Probability of rolling 6 18s is one in
101559956668416
Number of values that can be stored in a 32-bit integer is
4294967296
(Values put at the start of the line to make comparisons easier.)
Hence, if the PRNG has a 32-bit seed, then there is only something like a 1 in 23646 or so chance that are PRNG would have a random number sequence that would result in rolling 6 18s in a row. In other words, there *might not exist* a possible seed that would lead to rolling 6 18s in a row.
Of course, if the game's PRNG is better, then the situation might be different. However, this just goes to show that you can't always assume that the "random" numbers generated by a computer are truly random; extremely unlikely results might actually be impossible!
(Has anyone actually done any research on what PRNG the game actually uses? My best guess would be the one used in the Microsoft C standard library around the time of the game's release.)