Combined Code
frame 1 {
Mouse.hide();
stopAllSounds();
ifFrameLoaded (98) {
gotoAndPlay(3);
}
}
movieClip 11 {
}
instance pointer of movieClip 11 {
onClipEvent (load) {
Mouse.hide();
stop();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateAfterEvent();
}
onClipEvent (mouseDown) {
this.gotoAndStop('on');
updateAfterEvent();
}
onClipEvent (mouseUp) {
this.gotoAndStop('off');
updateAfterEvent();
}
}
frame 2 {
gotoAndPlay(1);
}
frame 3 {
s = new Sound(weaver);
s.attachSound('weaver');
s.start(weaver, 1000);
stop();
}
movieClip 19 {
}
button 22 {
on (press) {
startDrag('', false, left, top, right, bottom);
dragging = true;
}
on (release) {
stopDrag();
dragging = false;
}
}
movieClip 23 {
}
instance of movieClip 23 {
onClipEvent (load) {
top = _y;
bottom = _y + 77;
left = _x;
right = _x;
center = _x;
}
onClipEvent (enterFrame) {
if (dragging == true) {
_root.s.setVolume(100 - ((_y - top) / (bottom - top)) * 100);
_root.s.setPan((_x - center) * 2);
}
}
}
movieClip 26 {
}
movieClip 29 {
}
movieClip 31 {
}
movieClip 34 {
}
button 55 {
on (release) {
play();
}
}
frame 4 {
stop();
}
movieClip 59 {
}
movieClip 62 {
}
movieClip 65 {
}
movieClip 66 {
frame 1 {
gotoAndStop(4);
}
frame 2 {
/:select = 1;
}
frame 3 {
/:select = 2;
}
frame 4 {
/:select = 3;
}
frame 5 {
gotoAndStop(2);
}
}
button 68 {
on (release) {
tellTarget ('w1') {
nextFrame();
}
}
}
button 69 {
on (release) {
tellTarget ('w1') {
prevFrame();
}
}
}
frame 5 {
stop();
}
movieClip 71 {
frame 1 {
gotoAndStop(4);
}
frame 2 {
/:select2 = 1;
}
frame 3 {
/:select2 = 2;
}
frame 4 {
/:select2 = 3;
}
frame 5 {
gotoAndStop(2);
}
}
movieClip 78 {
frame 120 {
tellTarget ('/') {
play();
}
}
}
frame 98 {
s.stop();
s.attachSound('brute');
s.start(0, 1000);
dead = 0;
angle = 0;
velx = 0;
vely = 0;
velx2 = 0;
vely2 = 0;
angle2 = 180;
canfire = 1;
canfire2 = 1;
stop();
}
movieClip 81 {
}
movieClip 84 {
}
movieClip 85 {
frame 1 {
stop();
}
}
movieClip 92 {
frame 1 {
stop();
}
frame 50 {
/:bluewins += 1;
}
frame 72 {
stop();
}
}
instance bmb of movieClip 92 {
onClipEvent (load) {
fired = 0;
right = 0;
left = 0;
down = 0;
up = 0;
}
onClipEvent (keyDown) {
/:testkey = Key.getCode();
K = Key.getCode();
if (K == 104) {
up = 1;
tellTarget ('/bmb/ex') {
gotoAndStop(2);
}
}
if (K == 101) {
down = 1;
tellTarget ('/bmb/ex2') {
gotoAndStop(2);
}
}
if (K == 100) {
left = 1;
}
if (K == 102) {
right = 1;
}
if (K == 13) {
fired = 1;
}
}
onClipEvent (keyUp) {
K = Key.getCode();
if (K == 104) {
up = 0;
tellTarget ('/bmb/ex') {
gotoAndStop(1);
}
}
if (K == 101) {
down = 0;
tellTarget ('/bmb/ex2') {
gotoAndStop(1);
}
}
if (K == 100) {
left = 0;
}
if (K == 102) {
right = 0;
}
if (K == 13) {
fired = 0;
}
}
}
movieClip 94 {
frame 1 {
if (/:dead == 1) {
gotoAndStop(4);
}
if (5 >= /bmb._x + /:velx || /bmb._x + /:velx >= 635) {
/:velx = -/:velx;
}
if (50 >= /bmb._y + /:vely || /bmb._y + /:vely >= 475) {
/:vely = -/:vely;
}
if (10 < /:velx) {
/:velx = 10;
}
if (10 < /:vely) {
/:vely = 10;
}
if (/:velx < -10) {
/:velx = -10;
}
if (/:vely < -10) {
/:vely = -10;
}
if (5 >= /bmb2._x + /:velx2 || /bmb2._x + /:velx2 >= 635) {
/:velx2 = -/:velx2;
}
if (50 >= /bmb2._y + /:vely2 || /bmb2._y + /:vely2 >= 475) {
/:vely2 = -/:vely2;
}
if (10 < /:velx2) {
/:velx2 = 10;
}
if (10 < /:vely2) {
/:vely2 = 10;
}
if (/:velx2 < -10) {
/:velx2 = -10;
}
if (/:vely2 < -10) {
/:vely2 = -10;
}
/bmb._x = /bmb._x + /:velx;
/bmb._y = /bmb._y + /:vely;
/bmb._rotation = /:angle;
/bmb2._x = /bmb2._x + /:velx2;
/bmb2._y = /bmb2._y + /:vely2;
/bmb2._rotation = /:angle2;
accel = 0.5;
if (/bmb:up == 1) {
/:velx += accel * Math.cos(3.14 * /:angle / 180);
/:vely += accel * Math.sin(3.14 * /:angle / 180);
}
if (/bmb:down == 1) {
/:velx -= accel * Math.cos(3.14 * /:angle / 180);
/:vely -= accel * Math.sin(3.14 * /:angle / 180);
}
if (/bmb:right == 1) {
/:angle += 5;
}
if (/bmb:left == 1) {
/:angle -= 5;
}
if (/bmb:fired == 1) {
if (/:canfire == 1) {
count += 1;
if (count >= 15) {
count = 0;
}
duplicateMovieClip('/' add /:select add 'gun', 'gun' add count, count);
eval('/gun' add count)._x = /bmb._x;
eval('/gun' add count)._y = /bmb._y;
eval('/gun' add count)._rotation = /:angle;
}
}
if (/bmb2:up == 1) {
/:velx2 += accel * Math.cos(3.14 * /:angle2 / 180);
/:vely2 += accel * Math.sin(3.14 * /:angle2 / 180);
}
if (/bmb2:down == 1) {
/:velx2 -= accel * Math.cos(3.14 * /:angle2 / 180);
/:vely2 -= accel * Math.sin(3.14 * /:angle2 / 180);
}
if (/bmb2:right == 1) {
/:angle2 += 5;
}
if (/bmb2:left == 1) {
/:angle2 -= 5;
}
if (/bmb2:fired == 1) {
if (/:canfire2 == 1) {
count2 += 1;
if (count2 >= 15) {
count2 = 0;
}
duplicateMovieClip('/' add /:select2 add 'gun2', 'gun2' add count2, count2 + 20);
eval('/gun2' add count2)._x = /bmb2._x;
eval('/gun2' add count2)._y = /bmb2._y;
eval('/gun2' add count2)._rotation = /:angle2;
}
}
}
frame 2 {
if (/bmb:up == 1) {
/:velx += accel * Math.cos(3.14 * /:angle / 180);
/:vely += accel * Math.sin(3.14 * /:angle / 180);
}
if (/bmb:down == 1) {
/:velx -= accel * Math.cos(3.14 * /:angle / 180);
/:vely -= accel * Math.sin(3.14 * /:angle / 180);
}
if (/bmb:right == 1) {
/:angle += 5;
}
if (/bmb:left == 1) {
/:angle -= 5;
}
if (/bmb:fired == 1) {
if (/:canfire == 1) {
count += 1;
if (count >= 15) {
count = 0;
}
duplicateMovieClip('/' add /:select add 'gun', 'gun' add count, count);
eval('/gun' add count)._x = /bmb._x;
eval('/gun' add count)._y = /bmb._y;
eval('/gun' add count)._rotation = /:angle;
}
}
if (/bmb2:up == 1) {
/:velx2 += accel * Math.cos(3.14 * /:angle2 / 180);
/:vely2 += accel * Math.sin(3.14 * /:angle2 / 180);
}
if (/bmb2:down == 1) {
/:velx2 -= accel * Math.cos(3.14 * /:angle2 / 180);
/:vely2 -= accel * Math.sin(3.14 * /:angle2 / 180);
}
if (/bmb2:right == 1) {
/:angle2 += 5;
}
if (/bmb2:left == 1) {
/:angle2 -= 5;
}
if (/bmb2:fired == 1) {
if (/:canfire2 == 1) {
count2 += 1;
if (count2 >= 15) {
count2 = 0;
}
duplicateMovieClip('/' add /:select2 add 'gun2', 'gun2' add count2, count2 + 20);
eval('/gun2' add count2)._x = /bmb2._x;
eval('/gun2' add count2)._y = /bmb2._y;
eval('/gun2' add count2)._rotation = /:angle2;
}
}
gotoAndPlay(1);
}
frame 3 {
gotoAndPlay(1);
}
frame 4 {
tellTarget ('/') {
play();
}
}
}
movieClip 100 {
frame 1 {
stop();
}
frame 50 {
/:redwins += 1;
}
frame 72 {
stop();
}
}
instance bmb2 of movieClip 100 {
onClipEvent (load) {
fired = 0;
right = 0;
left = 0;
down = 0;
up = 0;
}
onClipEvent (keyDown) {
/:testkey = Key.getCode();
K = Key.getCode();
if (K == 87) {
up = 1;
tellTarget ('/bmb2/ex') {
gotoAndStop(2);
}
}
if (K == 83) {
down = 1;
tellTarget ('/bmb2/ex2') {
gotoAndStop(2);
}
}
if (K == 65) {
left = 1;
}
if (K == 68) {
right = 1;
}
if (K == 70) {
fired = 1;
}
}
onClipEvent (keyUp) {
K = Key.getCode();
if (K == 87) {
up = 0;
tellTarget ('/bmb2/ex') {
gotoAndStop(1);
}
}
if (K == 83) {
down = 0;
tellTarget ('/bmb2/ex2') {
gotoAndStop(1);
}
}
if (K == 65) {
left = 0;
}
if (K == 68) {
right = 0;
}
if (K == 70) {
fired = 0;
}
}
}
movieClip 103 {
frame 1 {
stop();
}
frame 1001 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1002 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1003 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1004 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1005 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1006 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1007 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1008 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1009 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1010 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1011 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1012 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1013 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1014 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1015 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1016 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1017 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1018 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1019 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1020 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1021 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1022 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1023 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1024 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1025 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1026 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1027 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1028 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1029 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1030 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1031 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1032 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1033 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1034 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1035 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1036 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1037 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1038 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1039 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1040 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1041 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1042 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1043 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1044 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1045 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1046 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1047 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1048 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1049 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1050 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1051 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1052 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1053 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1054 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1055 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1056 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1057 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1058 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1059 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1060 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1061 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1062 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1063 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1064 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1065 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1066 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1067 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1068 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1069 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1070 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1071 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1072 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1073 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1074 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1075 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1076 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1077 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1078 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1079 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1080 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1081 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1082 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1083 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1084 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1085 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1086 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1087 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1088 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1089 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1090 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1091 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1092 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1093 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1094 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1095 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1096 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1097 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1098 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1099 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1100 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1101 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1102 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1103 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1104 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1105 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1106 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1107 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1108 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1109 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1110 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1111 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1112 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1113 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1114 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1115 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1116 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1117 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1118 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1119 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1120 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1121 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1122 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1123 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1124 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1125 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1126 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1127 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1128 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1129 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1130 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1131 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1132 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1133 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1134 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1135 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1136 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1137 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1138 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1139 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1140 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1141 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1142 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1143 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1144 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1145 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1146 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1147 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1148 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1149 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1150 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1151 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1152 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1153 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1154 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1155 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1156 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1157 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1158 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1159 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1160 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1161 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1162 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1163 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1164 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1165 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1166 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1167 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1168 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1169 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1170 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1171 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1172 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1173 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1174 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1175 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1176 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1177 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1178 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1179 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1180 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1181 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1182 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1183 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1184 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1185 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1186 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1187 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1188 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1189 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1190 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1191 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1192 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1193 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1194 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1195 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1196 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1197 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1198 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1199 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1200 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1201 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1202 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1203 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1204 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1205 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1206 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1207 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1208 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1209 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1210 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1211 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1212 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1213 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1214 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1215 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1216 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1217 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1218 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1219 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1220 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1221 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1222 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1223 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1224 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1225 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1226 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1227 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1228 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1229 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1230 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1231 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1232 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1233 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1234 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1235 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1236 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1237 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1238 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1239 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1240 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1241 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1242 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1243 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1244 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1245 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1246 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1247 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1248 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1249 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1250 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1251 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1252 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1253 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1254 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1255 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1256 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1257 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1258 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1259 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1260 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1261 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1262 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1263 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1264 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1265 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1266 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1267 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1268 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1269 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1270 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1271 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1272 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1273 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1274 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1275 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1276 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1277 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1278 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1279 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1280 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1281 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1282 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1283 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1284 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1285 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1286 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1287 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1288 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1289 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1290 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1291 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1292 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1293 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1294 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1295 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1296 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1297 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1298 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
frame 1299 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb2') {
gotoAndPlay('death');
}
}
}
}
movieClip 104 {
frame 1 {
stop();
}
frame 1001 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1002 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1003 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1004 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1005 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1006 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1007 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1008 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1009 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1010 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1011 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1012 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1013 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1014 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1015 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1016 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1017 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1018 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1019 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1020 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1021 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1022 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1023 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1024 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1025 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1026 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1027 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1028 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1029 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1030 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1031 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1032 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1033 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1034 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1035 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1036 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1037 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1038 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1039 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1040 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1041 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1042 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1043 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1044 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1045 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1046 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1047 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1048 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1049 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1050 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1051 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1052 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1053 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1054 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1055 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1056 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1057 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1058 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1059 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1060 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1061 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1062 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1063 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1064 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1065 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1066 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1067 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1068 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1069 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1070 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1071 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1072 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1073 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1074 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1075 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1076 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1077 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1078 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1079 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1080 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1081 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1082 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1083 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1084 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1085 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1086 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1087 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1088 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1089 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1090 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1091 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1092 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1093 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1094 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1095 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1096 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1097 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1098 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1099 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1100 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1101 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1102 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1103 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1104 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1105 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1106 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1107 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1108 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1109 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1110 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1111 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1112 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1113 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1114 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1115 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1116 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1117 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1118 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1119 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1120 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1121 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1122 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1123 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1124 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1125 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1126 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1127 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1128 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1129 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1130 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1131 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1132 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1133 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1134 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1135 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1136 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1137 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1138 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1139 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1140 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1141 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1142 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1143 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1144 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1145 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1146 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1147 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1148 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1149 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1150 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1151 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1152 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1153 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1154 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1155 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1156 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1157 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1158 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1159 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1160 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1161 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1162 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1163 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1164 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1165 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1166 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1167 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1168 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1169 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1170 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1171 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1172 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1173 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1174 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1175 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1176 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1177 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1178 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1179 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1180 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1181 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1182 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1183 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1184 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1185 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1186 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1187 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1188 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1189 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1190 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1191 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1192 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1193 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1194 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1195 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1196 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1197 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1198 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1199 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1200 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1201 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1202 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1203 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1204 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1205 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1206 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1207 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1208 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1209 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1210 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1211 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1212 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1213 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1214 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1215 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1216 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1217 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1218 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1219 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1220 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1221 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1222 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1223 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1224 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1225 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1226 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1227 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1228 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1229 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1230 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1231 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1232 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1233 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1234 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1235 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1236 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1237 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1238 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1239 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1240 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1241 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1242 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1243 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1244 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1245 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1246 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1247 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1248 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1249 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1250 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1251 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1252 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1253 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1254 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1255 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1256 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1257 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1258 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1259 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1260 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1261 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1262 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1263 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1264 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1265 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1266 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1267 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1268 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1269 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1270 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1271 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1272 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1273 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1274 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1275 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1276 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1277 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1278 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1279 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1280 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1281 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1282 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1283 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1284 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1285 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1286 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1287 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1288 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1289 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1290 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1291 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1292 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1293 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1294 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1295 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1296 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1297 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1298 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1299 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1300 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1301 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1302 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1303 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1304 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1305 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1306 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1307 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1308 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1309 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1310 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1311 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1312 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1313 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1314 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1315 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1316 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1317 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1318 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1319 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1320 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1321 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1322 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1323 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1324 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1325 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1326 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1327 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1328 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1329 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1330 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1331 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1332 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1333 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1334 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1335 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1336 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1337 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1338 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1339 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1340 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1341 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1342 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1343 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1344 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1345 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1346 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1347 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1348 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1349 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1350 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1351 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1352 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1353 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1354 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1355 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1356 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1357 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1358 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1359 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1360 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1361 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1362 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1363 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1364 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1365 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1366 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1367 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1368 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1369 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1370 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1371 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1372 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1373 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1374 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1375 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1376 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1377 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1378 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1379 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1380 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1381 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1382 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1383 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1384 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1385 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1386 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1387 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1388 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1389 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1390 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1391 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1392 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1393 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1394 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1395 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1396 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1397 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1398 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1399 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1400 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1401 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1402 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1403 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1404 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1405 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1406 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1407 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1408 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1409 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1410 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1411 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1412 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1413 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1414 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1415 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1416 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1417 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1418 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1419 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
frame 1420 {
if (/:dead != 1) {
/:dead = 1;
tellTarget ('/bmb') {
gotoAndPlay('death');
}
}
}
}
movieClip 111 {
frame 1 {
/:canfire = 0;
targy = /bmb2._y;
targx = /bmb2._x;
shipy = /bmb._y;
shipx = /bmb._x;
h = Math.sqrt(Math.pow(Math.abs(targx - shipx), 2) + Math.pow(Math.abs(targy - shipy), 2));
px = h * Math.cos(/:angle * Math.PI / 180) + shipx;
py = h * Math.sin(/:angle * Math.PI / 180) + shipy;
if (Math.sqrt(Math.pow(Math.abs(targx - px), 2) + Math.pow(Math.abs(targy - py), 2)) < 30) {
duplicateMovieClip('/hit', 'hit' add /main:count, /main:count + 100);
eval('/hit' add /main:count)._x = px;
eval('/hit' add /main:count)._y = py;
/:velx2 += 0.25 * Math.cos(/:angle * Math.PI / 180);
/:vely2 += 0.25 * Math.sin(/:angle * Math.PI / 180);
tellTarget ('/powerbar2') {
gotoAndStop(/powerbar2._currentframe + 7);
}
}
}
frame 3 {
/:canfire = 1;
stop();
}
}
movieClip 114 {
frame 1 {
bullx = ../move._x * math.cos(../:shotangle) + ../:shipx;
bully = ../move._x * math.sin(../:shotangle) + ../:shipy;
targx = /bmb2._x;
targy = /bmb2._y;
shipsize = 20;
if (targx + shipsize >= bullx && bullx >= targx - shipsize && targy + shipsize >= bully && bully >= targy - shipsize) {
/:velx2 += 5 * math.cos(../:shotangle);
/:vely2 += 5 * math.sin(../:shotangle);
tellTarget ('/powerbar2') {
gotoAndStop(/powerbar2._currentframe + 60);
}
gotoAndPlay(3);
}
}
frame 2 {
gotoAndPlay(1);
}
frame 11 {
stop();
}
}
movieClip 116 {
frame 1 {
/:canfire = 0;
shotangle = /:angle * 3.14 / 180;
shipx = /bmb._x;
shipy = /bmb._y;
}
frame 10 {
/:canfire = 1;
}
frame 51 {
stop();
}
}
movieClip 117 {
frame 1 {
bullx = ../move._x * math.cos(../:shotangle) + ../:shipx;
bully = ../move._x * math.sin(../:shotangle) + ../:shipy;
targx = /bmb._x;
targy = /bmb._y;
shipsize = 20;
if (targx + shipsize >= bullx && bullx >= targx - shipsize && targy + shipsize >= bully && bully >= targy - shipsize) {
/:testcode = bullx add '|' add bully add '|' add targx add '|' add targy add '|' add ../move._x;
/:velx += 5 * math.cos(../:shotangle);
/:vely += 5 * math.sin(../:shotangle);
tellTarget ('/powerbar1') {
gotoAndStop(/powerbar1._currentframe + 60);
}
gotoAndPlay(3);
}
}
frame 2 {
gotoAndPlay(1);
}
frame 11 {
stop();
}
}
movieClip 118 {
frame 1 {
/:canfire2 = 0;
shotangle = /:angle2 * 3.14 / 180;
shipx = /bmb2._x;
shipy = /bmb2._y;
}
frame 10 {
/:canfire2 = 1;
}
frame 51 {
stop();
}
}
movieClip 121 {
frame 1 {
/:canfire2 = 0;
targy = /bmb._y;
targx = /bmb._x;
shipy = /bmb2._y;
shipx = /bmb2._x;
h = Math.sqrt(Math.pow(Math.abs(targx - shipx), 2) + Math.pow(Math.abs(targy - shipy), 2));
px = h * Math.cos(/:angle2 * Math.PI / 180) + shipx;
py = h * Math.sin(/:angle2 * Math.PI / 180) + shipy;
if (Math.sqrt(Math.pow(Math.abs(targx - px), 2) + Math.pow(Math.abs(targy - py), 2)) < 30) {
duplicateMovieClip('/hit', 'hit' add /main:count2, /main:count + 100);
eval('/hit' add /main:count2)._x = px;
eval('/hit' add /main:count2)._y = py;
/:velx += 0.25 * Math.cos(/:angle2 * Math.PI / 180);
/:vely += 0.25 * Math.sin(/:angle2 * Math.PI / 180);
tellTarget ('/powerbar1') {
gotoAndStop(/powerbar1._currentframe + 7);
}
}
}
frame 3 {
/:canfire2 = 1;
stop();
}
}
movieClip 125 {
frame 1 {
/:canfire2 = 0;
targy = /bmb._y;
targx = /bmb._x;
shipy = /bmb2._y;
shipx = /bmb2._x;
h = Math.sqrt(Math.pow(Math.abs(targx - shipx), 2) + Math.pow(Math.abs(targy - shipy), 2));
px = h * Math.cos(/:angle2 * Math.PI / 180) + shipx;
py = h * Math.sin(/:angle2 * Math.PI / 180) + shipy;
if (Math.sqrt(Math.pow(Math.abs(targx - px), 2) + Math.pow(Math.abs(targy - py), 2)) < 20) {
/:velx += 25 * Math.cos(/:angle2 * Math.PI / 180);
/:vely += 25 * Math.sin(/:angle2 * Math.PI / 180);
tellTarget ('/powerbar1') {
gotoAndStop(/powerbar1._currentframe + 250);
}
}
}
frame 45 {
/:canfire2 = 1;
stop();
}
}
instance 3gun2 of movieClip 125 {
onClipEvent (load) {
this.setVolume(0);
}
}
movieClip 126 {
frame 1 {
/:canfire = 0;
targy = /bmb2._y;
targx = /bmb2._x;
shipy = /bmb._y;
shipx = /bmb._x;
h = Math.sqrt(Math.pow(Math.abs(targx - shipx), 2) + Math.pow(Math.abs(targy - shipy), 2));
px = h * Math.cos(/:angle * Math.PI / 180) + shipx;
py = h * Math.sin(/:angle * Math.PI / 180) + shipy;
if (Math.sqrt(Math.pow(Math.abs(targx - px), 2) + Math.pow(Math.abs(targy - py), 2)) < 20) {
/:velx2 += 25 * Math.cos(/:angle * Math.PI / 180);
/:vely2 += 25 * Math.sin(/:angle * Math.PI / 180);
tellTarget ('/powerbar2') {
gotoAndStop(/powerbar2._currentframe + 250);
}
}
}
frame 45 {
/:canfire = 1;
stop();
}
}
movieClip 128 {
frame 6 {
stop();
}
}
frame 99 {
stop();
}
movieClip 130 {
}
instance pointer of movieClip 130 {
onClipEvent (load) {
Mouse.hide();
stop();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateAfterEvent();
}
onClipEvent (mouseDown) {
gotoAndStop(1);
updateAfterEvent();
}
onClipEvent (mouseUp) {
gotoAndStop(1);
updateAfterEvent();
}
}
frame 100 {
stop();
}
frame 101 {
stop();
}
frame 102 {
s.stop();
s.attachSound('grind');
s.start(0, 1000);
dead = 0;
angle = 0;
velx = 0;
vely = 0;
velx2 = 0;
vely2 = 0;
angle2 = 180;
canfire = 1;
canfire2 = 1;
stop();
}
instance bmb of movieClip 92 {
onClipEvent (load) {
fired = 0;
right = 0;
left = 0;
down = 0;
up = 0;
}
onClipEvent (keyDown) {
/:testkey = Key.getCode();
K = Key.getCode();
if (K == 104) {
up = 1;
tellTarget ('/bmb/ex') {
gotoAndStop(2);
}
}
if (K == 101) {
down = 1;
tellTarget ('/bmb/ex2') {
gotoAndStop(2);
}
}
if (K == 100) {
left = 1;
}
if (K == 102) {
right = 1;
}
if (K == 13) {
fired = 1;
}
}
onClipEvent (keyUp) {
K = Key.getCode();
if (K == 104) {
up = 0;
tellTarget ('/bmb/ex') {
gotoAndStop(1);
}
}
if (K == 101) {
down = 0;
tellTarget ('/bmb/ex2') {
gotoAndStop(1);
}
}
if (K == 100) {
left = 0;
}
if (K == 102) {
right = 0;
}
if (K == 13) {
fired = 0;
}
}
}
instance bmb2 of movieClip 100 {
onClipEvent (load) {
fired = 0;
right = 0;
left = 0;
down = 0;
up = 0;
}
onClipEvent (keyDown) {
/:testkey = Key.getCode();
K = Key.getCode();
if (K == 87) {
up = 1;
tellTarget ('/bmb2/ex') {
gotoAndStop(2);
}
}
if (K == 83) {
down = 1;
tellTarget ('/bmb2/ex2') {
gotoAndStop(2);
}
}
if (K == 65) {
left = 1;
}
if (K == 68) {
right = 1;
}
if (K == 70) {
fired = 1;
}
}
onClipEvent (keyUp) {
K = Key.getCode();
if (K == 87) {
up = 0;
tellTarget ('/bmb2/ex') {
gotoAndStop(1);
}
}
if (K == 83) {
down = 0;
tellTarget ('/bmb2/ex2') {
gotoAndStop(1);
}
}
if (K == 65) {
left = 0;
}
if (K == 68) {
right = 0;
}
if (K == 70) {
fired = 0;
}
}
}
instance 3gun2 of movieClip 125 {
onClipEvent (load) {
this.setVolume(0);
}
}
frame 103 {
if (/:redwins == 2) {
gotoAndPlay(150);
} else {
if (/:bluewins == 2) {
gotoAndPlay(201);
} else {
play();
}
}
}
frame 104 {
stop();
}
instance pointer of movieClip 130 {
onClipEvent (load) {
Mouse.hide();
stop();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateAfterEvent();
}
onClipEvent (mouseDown) {
gotoAndStop(1);
updateAfterEvent();
}
onClipEvent (mouseUp) {
gotoAndStop(1);
updateAfterEvent();
}
}
frame 105 {
stop();
}
frame 106 {
stop();
}
frame 107 {
s.stop();
s.attachSound('chase');
s.start(0, 1000);
dead = 0;
angle = 0;
velx = 0;
vely = 0;
velx2 = 0;
vely2 = 0;
angle2 = 180;
canfire = 1;
canfire2 = 1;
stop();
}
instance bmb of movieClip 92 {
onClipEvent (load) {
fired = 0;
right = 0;
left = 0;
down = 0;
up = 0;
}
onClipEvent (keyDown) {
/:testkey = Key.getCode();
K = Key.getCode();
if (K == 104) {
up = 1;
tellTarget ('/bmb/ex') {
gotoAndStop(2);
}
}
if (K == 101) {
down = 1;
tellTarget ('/bmb/ex2') {
gotoAndStop(2);
}
}
if (K == 100) {
left = 1;
}
if (K == 102) {
right = 1;
}
if (K == 13) {
fired = 1;
}
}
onClipEvent (keyUp) {
K = Key.getCode();
if (K == 104) {
up = 0;
tellTarget ('/bmb/ex') {
gotoAndStop(1);
}
}
if (K == 101) {
down = 0;
tellTarget ('/bmb/ex2') {
gotoAndStop(1);
}
}
if (K == 100) {
left = 0;
}
if (K == 102) {
right = 0;
}
if (K == 13) {
fired = 0;
}
}
}
instance bmb2 of movieClip 100 {
onClipEvent (load) {
fired = 0;
right = 0;
left = 0;
down = 0;
up = 0;
}
onClipEvent (keyDown) {
/:testkey = Key.getCode();
K = Key.getCode();
if (K == 87) {
up = 1;
tellTarget ('/bmb2/ex') {
gotoAndStop(2);
}
}
if (K == 83) {
down = 1;
tellTarget ('/bmb2/ex2') {
gotoAndStop(2);
}
}
if (K == 65) {
left = 1;
}
if (K == 68) {
right = 1;
}
if (K == 70) {
fired = 1;
}
}
onClipEvent (keyUp) {
K = Key.getCode();
if (K == 87) {
up = 0;
tellTarget ('/bmb2/ex') {
gotoAndStop(1);
}
}
if (K == 83) {
down = 0;
tellTarget ('/bmb2/ex2') {
gotoAndStop(1);
}
}
if (K == 65) {
left = 0;
}
if (K == 68) {
right = 0;
}
if (K == 70) {
fired = 0;
}
}
}
instance 3gun2 of movieClip 125 {
onClipEvent (load) {
this.setVolume(0);
}
}
frame 108 {
if (/:redwins == 3) {
gotoAndPlay(150);
} else {
if (/:bluewins == 3) {
gotoAndPlay(201);
}
}
}
instance pointer of movieClip 130 {
onClipEvent (load) {
Mouse.hide();
stop();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateAfterEvent();
}
onClipEvent (mouseDown) {
gotoAndStop(1);
updateAfterEvent();
}
onClipEvent (mouseUp) {
gotoAndStop(1);
updateAfterEvent();
}
}
frame 200 {
gotoAndStop(1);
}
frame 251 {
gotoAndPlay(1);
}