home *** CD-ROM | disk | FTP | other *** search
- this.onEnterFrame = function()
- {
- this._y += Speed;
- if(this.hitTest(_root.laser) || this.hitTest(_root.WaveBlast))
- {
- _root.Special = "Destroyer";
- _root.SAmmo = 50;
- _root.TotSAmmo = 50;
- _root.attachMovie("DestroyerDeviceID","DestroyerDevice",1006);
- _root.attachMovie("PowerUpShineID","PowerUpShine",100);
- _root.PowerUpShine._x = this._x;
- _root.PowerUpShine._y = this._y;
- this.unloadMovie();
- }
- };
-