home *** CD-ROM | disk | FTP | other *** search
- gotoAndStop(random(4) + 2);
- onEnterFrame = function()
- {
- _X = _X + 18;
- if(_X > 700)
- {
- this.removeMovieClip();
- }
- i = 1;
- while(i <= 20)
- {
- if(_root["baddy" + i].area.hitTest(this._x,this._y,true))
- {
- _root.makeFlowerExplosion(_X,_Y);
- _root["baddy" + i].health--;
- _root.score += 1;
- this.removeMovieClip();
- }
- i++;
- }
- i = 50;
- while(i <= 75)
- {
- if(_root["bullet" + i].hitTest(this))
- {
- _root.makeFlowerExplosion(_X,_Y);
- _root["bullet" + i].dead = true;
- _root.score += 5;
- this.removeMovieClip();
- }
- i++;
- }
- _X = _X - _root.player.hSpeed;
- };
-