home *** CD-ROM | disk | FTP | other *** search
- hutosa = 1;
- laser2_cnt = 135;
- lineMC = this.createEmptyMovieClip("line",1);
- this.onEnterFrame = function()
- {
- x0 = 0;
- y0 = 0;
- x05 = laser_base._x;
- y05 = laser_base._y;
- x11 = laser_base._x + hutosa * 3;
- y11 = laser_base._y - 3;
- x19 = laser_base._x - hutosa * 3;
- y19 = laser_base._y - 3;
- lineMC.clear();
- lineMC.lineStyle(hutosa,6750207,30);
- lineMC.moveTo(x0,y0);
- lineMC.lineTo(x05,y05);
- lineMC.lineStyle(1,6750207,100);
- lineMC.moveTo(x0,y0);
- lineMC.lineTo(x11,y11);
- lineMC.moveTo(x0,y0);
- lineMC.lineTo(x19,y19);
- if(hutosa < 5)
- {
- hutosa += 0.25;
- }
- laser2_cnt -= 1;
- if(laser2_cnt < 0)
- {
- lineMC.clear();
- _root.enemy.robo.gotoAndPlay("wait");
- gotoAndStop(34);
- }
- };
-