RedEnchilada (notice the lack of a space) (redenchilada)'s status on Friday, 23-May-14 16:24:45 UTC
-
@pony Not for most cases. For the average computer program, the pRNG seed is initialized to some value (often the computer time), and calls to rand() and similar functions will perform some sort of math on the seed and return that value. A game I've poked at the source for has a custom pRNG system (because it needs to sync across netgames) that demonstrates the concept. Basically, if srand() is called with the same value, successive calls to rand() will return the same sequence of values.
That said, clock drift can be used for randomness. It's usually pretty slow, however, so it's better to use one of the methods Cinnamon mentioned, or if desired use clock drift to seed a pRNG.