home *** CD-ROM | disk | FTP | other *** search
- function shotGo()
- {
- this._y += speed;
- if(hitTest(_root.ship) && _root.ship.alive == true)
- {
- _root.ship.gotoAndPlay("die");
- this.destroy();
- }
- if(_Y > 650)
- {
- this.destroy();
- }
- }
- function destroy()
- {
- for(name in this)
- {
- delete this[name];
- }
- delete this;
- this.removeMovieClip();
- }
- speed = 8;
- this.onEnterFrame = shotGo;
- process = "shotGo";
-