13.04.2011, 13:45
@ronnie3148: they are random position but still defined.
If you are looking for some random coords, here's the code:
If you are looking for some random coords, here's the code:
pawn Код:
RandomX = RandomEx(maxX, minX);
RandomY = RandomEx(maxY, minY);
stock RandomEx(min, max) //******
{
return random(max - min) + min;
}

