home *** CD-ROM | disk | FTP | other *** search
- function bankruptGo()
- {
- _Y = _Y + 4;
- if(_X < _root.ship._x)
- {
- _X = _X + 2.5;
- }
- else if(_X > _root.ship._x)
- {
- _X = _X - 2.5;
- }
- if(hitTest(_root.ship))
- {
- _root.ship.bonus = 0;
- _root.ship.shotType = "bullet";
- _root.ship.multiplier = 1;
- _root.ship.loadTime_p = 400;
- _root.ship.speed_p = 12;
- _root.score -= 5000;
- if(_root.score < 0)
- {
- _root.score = 0;
- }
- this.removeMovieClip();
- }
- if(_Y >= 600)
- {
- this.removeMovieClip();
- }
- }
- this.onEnterFrame = bankruptGo;
- process = "bankruptGo";
-