Quote:
Originally Posted by Zimon95
@ronnie3148: they are random position but still defined.
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; }
|
I didn't understand that.