home *** CD-ROM | disk | FTP | other *** search
- stop();
- time = 0;
- g = 0.5;
- v = 0;
- b = new Sound(this);
- b.attachSound("bomb");
- if(_root.sound)
- {
- b.start();
- }
- this.onEnterFrame = function()
- {
- if(_root.paused)
- {
- return undefined;
- }
- time++;
- v -= g;
- _Y = _Y - v;
- if(_root.bg.hitTest(_X,_Y + 10,true))
- {
- delete onEnterFrame;
- gotoAndStop(2);
- }
- if(time > 10)
- {
- if(_root.boss.health > 0)
- {
- if(this.hitTest(_root.car))
- {
- _root.kill();
- }
- }
- }
- if(_root.level !== 5)
- {
- this.removeMovieClip();
- }
- if(_root.car.dead)
- {
- this.removeMovieClip();
- }
- };
-