home *** CD-ROM | disk | FTP | other *** search
- a.gotoAndStop("attack");
- d = 25;
- ys = -10;
- backoff = 0;
- if(random(100) > 50)
- {
- _xscale = -100;
- }
- onenterframe = function()
- {
- d--;
- if(d < 12)
- {
- r._x = random(10);
- r._y = random(10);
- if(d >= 10)
- {
- dx = math.abs(r.cbx - _X);
- if(dx < 150)
- {
- r.hit = 1;
- }
- }
- }
- if(!d)
- {
- r._x = 0;
- r._y = 0;
- _xscale = 100;
- gotoAndPlay(22);
- }
- };
- stop();
-