home *** CD-ROM | disk | FTP | other *** search
- stop();
- g = 0.5;
- v = 0;
- this.onEnterFrame = function()
- {
- if(_root.paused)
- {
- return undefined;
- }
- v -= g;
- _Y = _Y - v;
- if(_root.bg.hitTest(_X,_Y + 10,true))
- {
- g = undefined;
- }
- if(_root.car.hitTest(_X,_Y,true))
- {
- delete onEnterFrame;
- gotoAndStop(2);
- }
- if(_root.level !== 5 and _root.level !== 11)
- {
- this.removeMovieClip();
- }
- if(_root.car.dead)
- {
- this.removeMovieClip();
- }
- };
-