number = RangeRand(maxValue);
UWORD RangeRand(UWORD);
RangeRand() accepts a value from 0 to 65535, and returns a value within that range.
maxValue is passed on stack as a 32-bit integer but used as though it is only a 16-bit integer. Variable named RangeSeed is available beginning with V33 that contains the global seed value passed from call to call and thus can be changed in a program by declaring:
extern ULONG RangeSeed;
the statistics of this "random generator" is less than ideal.
The overall quality of the random generator leaves a lot to be deserved.