16.07.2010, 03:02
random(6000) would only be from 0 - 5999 by the way.
If you want to do that, use this function from ******:
If you want to do that, use this function from ******:
pawn Код:
stock minrand(min, max) //By Alex "******" Cole
{
return random(max-min)+min;
}