31.12.2010, 17:58
Quote:
You didn't understand me. I want to do a string like this x.x.x.x.x.x.x.x.x.x.x where x are random numbers from 0 to 9
|
pawn Код:
new string[20];
format(string, sizeof(string), "%i.%i.%i.%i.%i.%i.%i.%i.%i", random(10), random(10), random(10), random(10), random(10), random(10), random(10), random(10), random(10), random(10));
print(string);