23.07.2010, 21:15
and if u want minimal amount and max:
pawn Код:
stock random2(min,max){
new x = max-min;
x = random(x);
x+=min;
return x;
}