home *** CD-ROM | disk | FTP | other *** search
- TotalBalls = 20;
- dblPI = 6.283185307179586;
- Reflect = [undefined,3.141592653589793,4.71238898038469,0,1.5707963267948966];
- i = 1;
- while(i <= TotalBalls)
- {
- duplicateMovieClip("Pacman","P" + i,16384 + this.getNextHighestDepth());
- this["P" + i].x = this["P" + i]._x = random(450);
- this["P" + i].y = this["P" + i]._y = random(425);
- this["P" + i].Dir = Math.random() * dblPI;
- this["P" + i].Speed = 5 + Math.random() * 7;
- i++;
- }
- Pacman._visible = false;
-