ࡱ                >  	                                      R o o t   E n t r y                                                  p|YrRASH               R@0N   @
      C o n t e n t s                                                                                                     P a g e   1                                                                                                     S y m b o l   2                                                                                            	                  	   
                                 !   "   #   $   %   )   *   +   ,   -   .   R o o t   E n t r y                                                  p|YrRASH              b   @
      C o n t e n t s                                                                                            /         P a g e   1                                                                                                    S y m b o l   2                                                                                            	                                    &                  '   (   0   1   2   3   4   5   6   7   8   S y m b o l   1                                                                                                 S y m b o l   3                                                                                       $   4                                                                                                                                                                                                                                              S y m b o l   1                                                                                                 S y m b o l   3                                                                                       $   4                                                                                                                                                                                                                                                          CDocumentPagePage 1Scene 1                          c:              :e:                     Symbol 3Symbol 3                         P8e:              8e:                Symbol 2gun                        $c:              (c:                Symbol 1bullet                        c:              8e:                            *      @    h   h  h  h  h                               	 CColorDef                                  3   P    f   P  0     P  H     P  `     P  x 3        33   (   3f   <  0 3   C  H 3   F  ` 3   H  x f       0 f3     0 ff   (  0 f   5  H f   <  ` f   @  x            333      0              3      33  x    f3  d  0  3  ]  H  3  Z  `  3  X  x 3 3     333      0 3f3  P P H 33  P x ` 33  P  x 33  P   f 3    0 f33    P H ff3  ( P H f3  < x ` f3  C  x f3  F              fff      `              f    0  3f    0  ff  x  0  f  k  H  f  d  `  f  `  x 3 f    0 33f   P H 3ff  x P H 3f  d x ` 3f  ]  x 3f  Z   f f    0 f3f   P H fff      ` ff  P 0 x ff  P x  ff  P                                      H  3    H  f    H    x  H  ̙  n  `    h  x 3     H 33   x ` 3f   x ` 3  x x ` 3̙  k  x 3  d   f     H f3   x ` ff   0 x f  x 0 x f̙  d x  f  ]                                      `  3    `  f    `      `    x  `    p  x 3     ` 33    x 3f    x 3    x 3  x  x 3  n   f     ` f3    x ff   x  f   x  f  x x  f  k                                      x  3    x  f    x      x      x    x  x 3     x 33     3f     3     3     3  x   f     x f3     ff     f     f     f  x                     x                   H 3     H f     H    (  H    2  `    8  x        ` 3   
  ` f     ` ̙     `    (  `    0  x        x 3     x f     x      x       x    (  x                P  x             3    H 33    x ` f3   x ` 3  ( x ` 3  5  x 3  <    3    ` 33     x f3    x ̙3    x 3  (  x 3  2    3    x 33      f3  
   3     3     3  (                    x             f    H 3f   x ` ff    0 x f  ( 0 x f  < x  f  C    f    ` 3f    x ff    x  ̙f   x  f  ( x  f  5    f    x 3f     ff      f     f     f  (                 (  x                 H 3   x ` f   0 x        ̙  P P    P        ` 3    x f   x  ̙    P  ̙  ( P    <        x 3     f           ̙       (                 x  x                 ` 3    x f   x     P    x P    d        ` 3    x f   x  ̙   P           P        x 3     f                  (                   x                 x 3     f                 x        x 3     f     ̙            x        x 3     f                                                                                                                                                                                                                                                         f`zf                                     * ]                                                                                       h                                                                                                                                                                                                                                                                                                                                                               CPicPage  	 CPicLayer  	 CPicFrame   CPicText                       0	        w                  Times New Roman          (          -1y:0x                           g      '                  Times New Roman          (          1y:0x                                 '                  Times New Roman          (          0y:1x                         v         w                  Times New Roman          (          0y:-1x                                 '                  Times New Roman          (          1y:1x                         A  |      w                  Times New Roman          (          -1y:1x                           l                        Times New Roman          (          -1y:-1x                         .        w                  Times New Roman          (          1y:-1x   
 CPicSprite     i                  i                                         /onClipEvent (enterFrame) {
	if (xmove ne null) {
		_x = _x+xmove;
		_y = _y+ymove;
	}
	// the next 'if' statement deletes clips that are too far out of the movie. this may reduce the
	// load on your user's computers.
	if (_x<-10 or _x>560 or _y<-10 or _y>410) {
		removeMovieClip ("");
	}
}
bullet_orig       "                  "                                           N
onClipEvent (enterFrame) {
	timer = _root.timer;
	time += 1;
	if (time>=timer) {
		time = 0;
		// 
		// duplicating
		// 
		clipcount += 1;
		duplicateMovieClip ("_root.bullet_orig", "bullet"+clipcount, clipcount);
		name = "bullet"+clipcount;
		setProperty ("_root."+name, _x, _root.gun._x);
		setProperty ("_root."+name, _y, _root.gun._y);
		// 
		// variables
		// 
		gunX = _root.gun._x;
		gunY = _root.gun._y;
		xdistance = 0-(gunX-_root._xmouse);
		ydistance = 0-(gunY-_root._ymouse);
		speed = 10;
		// 
		// after variables it's formula time!
		// 
		if (ydistance == 0 and xdistance>0) {
			// 90 degrees
			xmove = 1*speed;
			ymove = 0;
		} else if (ydistance == 0 and xdistance<0) {
			// 270 degrees
			xmove = -1*speed;
			ymove = 0;
		} else if (ydistance>0 and xdistance == 0) {
			// 180 degrees
			xmove = 0;
			ymove = -1*speed;
		} else if (ydistance<0 and xdistance == 0) {
			// 0 degrees
			xmove = 0;
			ymove = 1*speed;
		} else if (xdistance>0 and ydistance<0 and Math.abs(ydistance)>Math.abs(xdistance)) {
			// upper right 45 degrees
			ymove = -1*speed;
			xmove = Math.abs((xdistance/ydistance)*speed);
		} else if (xdistance>0 and ydistance<0 and Math.abs(ydistance)<Math.abs(xdistance)) {
			// bottom upper right 45 degrees
			xmove = 1*speed;
			ymove = (ydistance/xdistance)*speed;
		} else if (xdistance>0 and ydistance>0 and Math.abs(ydistance)<Math.abs(xdistance)) {
			// upper bottom right 45 degrees
			xmove = 1*speed;
			ymove = (ydistance/xdistance)*speed;
		} else if (xdistance>0 and ydistance>0 and Math.abs(ydistance)>Math.abs(xdistance)) {
			// bottom lower right 45 degrees
			ymove = 1*speed;
			xmove = Math.abs((xdistance/ydistance)*speed);
		} else if (xdistance<0 and ydistance<0 and Math.abs(ydistance)>Math.abs(xdistance)) {
			// upper left 45 degrees
			ymove = -1*speed;
			xmove = -1*(xdistance/ydistance)*speed;
		} else if (xdistance<0 and ydistance<0 and Math.abs(ydistance)<Math.abs(xdistance)) {
			// bottom upper left 45 degrees
			xmove = -1*speed;
			ymove = -1*(ydistance/xdistance)*speed;
		} else if (xdistance<0 and ydistance>0 and Math.abs(ydistance)<Math.abs(xdistance)) {
			// upper bottom left 45 degrees
			xmove = -1*speed;
			ymove = -1*(ydistance/xdistance)*speed;
		} else if (xdistance<0 and ydistance>0 and Math.abs(ydistance)>Math.abs(xdistance)) {
			// bottom lower left 45 degrees
			ymove = 1*speed;
			xmove = (xdistance/ydistance)*speed;
		} else {
			ymove = 0;
			xmove = 0;
		}
		set ("_root."+name+".xmove", xmove);
		set ("_root."+name+".ymove", ymove);
	}
}
gun               p  Y    5               @        Times New Roman          (          y >x              p  $   .  D
      {         @        Times New Roman          (          y<x                         @                   A     timer  Times New Roman           (          1                         	         	                  Times New Roman           (            &                                       4  E       (  Q     4     $     <r(                        &           %        @  ;  u<` J6 <     4  :<j         = L & L x  ,  X      %  L  )  L        <          << $R            
                 <: -  Y 7 D   	                                                   @                                                        4  Ē     <@ 4 C 44B                                             M  ` $            	          -  X            "<" <        "                     ?                                                          !   
                                                                      "   #   %   &   '   (             Layer 1  O                                                             ?                                            Layer 2  OO                                                                             CPicPage  	 CPicLayer  	 CPicFrame                                             N        N   . N        ߠ߀߀   Ҁ    ߀M-   N                     ?                                              CPicPage  	 CPicLayer  	 CPicFrame  
 CPicSymbol                                                                                                                           ?                                                u         u                                                                                                  ?                                                                                                                                 CPicPage  	 CPicLayer  	 CPicFrame                                            ,               &    	                       )   Y       	       9  r                                              4  Yf        	            4         (       4 ! O0 J Layer 1  O                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CPicPage  	 CPicLayer  	 CPicFrame   CPicText                       0	        w                  Times New Roman          (          -1y:0x                           g      '                  Times New Roman          (          1y:0x                                 '                  Times New Roman          (          0y:1x                         v         w                  Times New Roman          (          0y:-1x                                 '                  Times New Roman          (          1y:1x                         A  |      w                  Times New Roman          (          -1y:1x                           l                        Times New Roman          (          -1y:-1x                         .        w                  Times New Roman          (          1y:-1x   
 CPicSprite    i                  i                                         /onClipEvent (enterFrame) {
	if (xmove ne null) {
		_x = _x+xmove;
		_y = _y+ymove;
	}
	// the next 'if' statement deletes clips that are too far out of the movie. this may reduce the
	// load on your user's computers.
	if (_x<-10 or _x>560 or _y<-10 or _y>410) {
		removeMovieClip ("");
	}
}
bullet_orig       "                  "                                           N
onClipEvent (enterFrame) {
	timer = _root.timer;
	time += 1;
	if (time>=timer) {
		time = 0;
		// 
		// duplicating
		// 
		clipcount += 1;
		duplicateMovieClip ("_root.bullet_orig", "bullet"+clipcount, clipcount);
		name = "bullet"+clipcount;
		setProperty ("_root."+name, _x, _root.gun._x);
		setProperty ("_root."+name, _y, _root.gun._y);
		// 
		// variables
		// 
		gunX = _root.gun._x;
		gunY = _root.gun._y;
		xdistance = 0-(gunX-_root._xmouse);
		ydistance = 0-(gunY-_root._ymouse);
		speed = 10;
		// 
		// after variables it's formula time!
		// 
		if (ydistance == 0 and xdistance>0) {
			// 90 degrees
			xmove = 1*speed;
			ymove = 0;
		} else if (ydistance == 0 and xdistance<0) {
			// 270 degrees
			xmove = -1*speed;
			ymove = 0;
		} else if (ydistance>0 and xdistance == 0) {
			// 180 degrees
			xmove = 0;
			ymove = -1*speed;
		} else if (ydistance<0 and xdistance == 0) {
			// 0 degrees
			xmove = 0;
			ymove = 1*speed;
		} else if (xdistance>0 and ydistance<0 and Math.abs(ydistance)>Math.abs(xdistance)) {
			// upper right 45 degrees
			ymove = -1*speed;
			xmove = Math.abs((xdistance/ydistance)*speed);
		} else if (xdistance>0 and ydistance<0 and Math.abs(ydistance)<Math.abs(xdistance)) {
			// bottom upper right 45 degrees
			xmove = 1*speed;
			ymove = (ydistance/xdistance)*speed;
		} else if (xdistance>0 and ydistance>0 and Math.abs(ydistance)<Math.abs(xdistance)) {
			// upper bottom right 45 degrees
			xmove = 1*speed;
			ymove = (ydistance/xdistance)*speed;
		}      TimeWait (between balls)                                                        w  	<  	   8 J<P  J<J8    [(K <	<  	    3 HP        3J		K0F  3K		   0  D3  		3J  F3	II	0        ;
    ;
    <
    <
    <
  g      1      Y  <
  Y  <
  Y  ;
  Y  ;
  V    V  1      Y  <
  4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    3
    3
    3
    3
    4
    4
    4
    4
    4
  8  4
  8  V    V    3
    3
    Y  ;
      O  8  4
  8  3
    3
    Y  <
  Y  <
  4
    O      H  Y                    Y    Y    4
    4
    4
    4
            4
    4
    4
    4
            f        Y        V    V    4
    4
                  I      4
      <
    <
  4
    4
    4
  8    8        ;
                 ?                                            Layer 1  O                                                                                                                                                                                                                                                                                                                                                                else if (xdistance>0 and ydistance>0 and Math.abs(ydistance)>Math.abs(xdistance)) {
			// bottom lower right 45 degrees
			ymove = 1*speed;
			xmove = Math.abs((xdistance/ydistance)*speed);
		} else if (xdistance<0 and ydistance<0 and Math.abs(ydistance)>Math.abs(xdistance)) {
			// upper left 45 degrees
			ymove = -1*speed;
			xmove = -1*(xdistance/ydistance)*speed;
		} else if (xdistance<0 and ydistance<0 and Math.abs(ydistance)<Math.abs(xdistance)) {
			// bottom upper left 45 degrees
			xmove = -1*speed;
			ymove = -1*(ydistance/xdistance)*speed;
		} else if (xdistance<0 and ydistance>0 and Math.abs(ydistance)<Math.abs(xdistance)) {
			// upper bottom left 45 degrees
			xmove = -1*speed;
			ymove = -1*(ydistance/xdistance)*speed;
		} else if (xdistance<0 and ydistance>0 and Math.abs(ydistance)>Math.abs(xdistance)) {
			// bottom lower left 45 degrees
			ymove = 1*speed;
			xmove = (xdistance/ydistance)*speed;
		} else {
			ymove = 0;
			xmove = 0;
		}
		set ("_root."+name+".xmove", xmove);
		set ("_root."+name+".ymove", ymove);
	}
}
gun               p  Y    5               @        Times New Roman          (          y >x              p  $   .  D
      {         @        Times New Roman          (          y<x                         @                   A     timer  Times New Roman           (          1                         	         	                  Times New Roman           (          TimeWait (between balls)                                                        w  	<  	   8 J<P  J<J8    [(K <	<  	    qHP36  W		   0  D3Jr	K0F         3	II	0  3D  F0		      ;
    ;
    <
    <
    <
  g      1      Y  <
  Y  <
  Y  ;
  Y  ;
  V    V  1      Y  <
  4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    4
    3
    3
    3
    3
    4
    4
    4
    4
    4
  8  4
  8  V    V    3
    3
    Y  ;
      O  8  4
  8  3
    3
    Y  <
  Y  <
  4
    O      H  Y                    Y    Y    4
    4
    4
    4
            4
    4
    4
    4
            f        Y        V    V    4
    4
                  I      4
      <
    <
  4
    4
    4
  8    8        ;
                 ?                                            Layer 1  O                                                                                                                                                                                                                                                                                                                                                                                CDocumentPagePage 1Scene 1                          c:              \e:                     Symbol 3Symbol 3                         P8e:              8e:                Symbol 2gun                        $c:              (c:                Symbol 1bullet                        c:              8e:                            *      @    h   h  h  h  h                               	 CColorDef                                  3   P    f   P  0     P  H     P  `     P  x 3        33   (   3f   <  0 3   C  H 3   F  ` 3   H  x f       0 f3     0 ff   (  0 f   5  H f   <  ` f   @  x            333      0              3      33  x    f3  d  0  3  ]  H  3  Z  `  3  X  x 3 3     333      0 3f3  P P H 33  P x ` 33  P  x 33  P   f 3    0 f33    P H ff3  ( P H f3  < x ` f3  C  x f3  F              fff      `              f    0  3f    0  ff  x  0  f  k  H  f  d  `  f  `  x 3 f    0 33f   P H 3ff  x P H 3f  d x ` 3f  ]  x 3f  Z   f f    0 f3f   P H fff      ` ff  P 0 x ff  P x  ff  P                                      H  3    H  f    H    x  H  ̙  n  `    h  x 3     H 33   x ` 3f   x ` 3  x x ` 3̙  k  x 3  d   f     H f3   x ` ff   0 x f  x 0 x f̙  d x  f  ]                                      `  3    `  f    `      `    x  `    p  x 3     ` 33    x 3f    x 3    x 3  x  x 3  n   f     ` f3    x ff   x  f   x  f  x x  f  k                                      x  3    x  f    x      x      x    x  x 3     x 33     3f     3     3     3  x   f     x f3     ff     f     f     f  x                     x                   H 3     H f     H    (  H    2  `    8  x        ` 3   
  ` f     ` ̙     `    (  `    0  x        x 3     x f     x      x       x    (  x                P  x             3    H 33    x ` f3   x ` 3  ( x ` 3  5  x 3  <    3    ` 33     x f3    x ̙3    x 3  (  x 3  2    3    x 33      f3  
   3     3     3  (                    x             f    H 3f   x ` ff    0 x f  ( 0 x f  < x  f  C    f    ` 3f    x ff    x  ̙f   x  f  ( x  f  5    f    x 3f     ff      f     f     f  (                 (  x                 H 3   x ` f   0 x        ̙  P P    P        ` 3    x f   x  ̙    P  ̙  ( P    <        x 3     f           ̙       (                 x  x                 ` 3    x f   x     P    x P    d        ` 3    x f   x  ̙   P           P        x 3     f                  (                   x                 x 3     f                 x        x 3     f     ̙            x        x 3     f                                                                                                                                                                                                                                                         f`zf                                     * ]                                                                                       h                                                                                                                                                                                                                                                                                                                                                             