home *** CD-ROM | disk | FTP | other *** search
- onEnterFrame = function()
- {
- if(health > 0 && this.area.hitTest(_root.player._x,_root.player._y + 5,true))
- {
- health = 0;
- _root.player.health = 0;
- }
- if(health <= 0)
- {
- gotoAndPlay(38);
- onEnterFrame = function()
- {
- _X = _X - 3;
- _X = _X - _root.player.hSpeed;
- };
- }
- _X = _X - _root.player.hSpeed;
- if(health <= 0)
- {
- vSpeed++;
- if(!exploded)
- {
- _root.explode(2,_X,_Y);
- exploded = true;
- }
- }
- if(_X <= -400 || _X > 800)
- {
- _root.leftSideShip = false;
- this.removeMovieClip();
- }
- _X = _X + 3;
- };
-