:((((
Is it possible to do a math.random*something to make it easier? i abosutely HATE having to do crap like this:
timer = Math.random();
if (_root.timer>=.50) {
if (timer*100<=25) {
duplicateMovieClip(_root.walls.ball, "ballb"+i, i);
i++;
}
if (timer*100>=75) {
duplicateMovieClip(_root.walls.ball2, "ballb"+i, i);
i++;
}
if (timer*100>=50 and timer*100<=75) {
duplicateMovieClip(_root.walls.ball3, "ballb"+i, i);
i++;
}
}
if (timer*100>=25 and timer*100<=50) {
duplicateMovieClip(_root.walls.ball4, "ballb"+i, i);
i++;
}
That is what I am currently using... and its a giant pain.