Functions included...

SeedRand( seed% )      -- Seed the random number generator
Rand32()               -- Return the next number in sequence
RandMax( hi% )         -- Return number from 1 - hi%
RandRange( lo%, hi% )  -- Return number from lo% - hi%

This mod implements the mersenne twist random number generator
which is arguably the best pseudo random number generator out 
there.  It has a sequence of 2^19937-1 which is faaaaaaar 
better than blitz, AND it's consistent across platforms (or at
least it has been in all tests I've made thus far).

Thanks to the guys on IRC that did some tests for me too:
Beaker, Gfk, Morduun...  

This was based on code found on the net and converted to blitz
userlibs and module by myself.

Kanati

