home *** CD-ROM | disk | FTP | other *** search
- this.stop();
- hadou_cnt = 45;
- hutosa = 1;
- a = 0;
- lineMC = this.createEmptyMovieClip("line",1);
- this.onEnterFrame = function()
- {
- x0 = 0;
- y0 = 0;
- if(hadou_base._y + _root.enemy._y > 240 && a < 100)
- {
- a += 15;
- }
- x01 = hadou_base._x + hutosa * 2 + a;
- y01 = hadou_base._y - 3;
- x05 = hadou_base._x;
- y05 = hadou_base._y;
- x09 = hadou_base._x - hutosa * 2 - a;
- y09 = hadou_base._y - 3;
- lineMC.clear();
- lineMC.moveTo(x0,y0);
- lineMC.beginFill(16764108,90);
- lineMC.lineStyle(1,16764108,0);
- lineMC.lineTo(x01,y01);
- lineMC.lineTo(x09,y09);
- lineMC.endFill();
- if(hutosa < 15)
- {
- hutosa += 0.25;
- }
- hadou_cnt -= 1;
- if(hadou_cnt == 7)
- {
- _root.enemy.robo.gotoAndPlay("hadou2");
- }
- if(hadou_cnt < 0)
- {
- _root.bg_sky.gotoAndStop(1);
- lineMC.clear();
- _root.enemy.robo.gotoAndPlay("gun");
- gotoAndStop(16);
- }
- };
-