08.02.2015, 15:29
pawn Код:
new n1 = random(3); //or whatever should be the max value infront of the .
new n2;
if(n1 == 0)
n2 = random(50) + 50;
else if(n1 == 2)
n2 = random(16);
else
n2 = random(100);
new string[50];
format(string, sizeof(string), "%d.%d", n1, n2);
new Float:randomfloat = floatstr(string);
or that