home *** CD-ROM | disk | FTP | other *** search
- stop();
- this.onEnterFrame = function()
- {
- this._y += Speed;
- Player++;
- if(this._y > 660)
- {
- this.unloadMovie();
- }
- if(Player == 30)
- {
- play();
- Player = 0;
- }
- if(this.hitTest(_root.laser) || this.hitTest(_root.WaveBlast))
- {
- _root.Special = "Missile";
- _root.SAmmo = 20;
- _root.TotSAmmo = 20;
- _root.attachMovie("MissileLauncherID","MissileLauncher",1006);
- _root.attachMovie("PowerUpShineID","PowerUpShine",100);
- _root.PowerUpShine._x = this._x;
- _root.PowerUpShine._y = this._y;
- this.unloadMovie();
- }
- };
-