Frame 1
if (_framesloaded >= _totalframes) {
gotoAndStop (3);
}
Frame 2
gotoAndPlay (1);
Frame 3
stop();
Mouse.hide();
_root.onMouseMove = function () {
setProperty("_root.cursor", _x , _xmouse);
setProperty("_root.cursor", _y , _ymouse);
updateAfterEvent();
};
stopAllSounds();
Frame 4
stop();
Mouse.hide();
_root.onMouseMove = function () {
setProperty("_root.cursor", _x , _xmouse);
setProperty("_root.cursor", _y , _ymouse);
updateAfterEvent();
};
shooting = "no";
armx = 92.8;
army = 158;
bubx = 63;
x = 81.5;
y = 197.4;
fish1hit = 0;
fish2hit = 0;
fish3hit = 0;
hit = "no";
fish1dead = "no";
fish2dead = "no";
fish3dead = "no";
level1end = "no";
_root.onEnterFrame = function () {
if (Key.isDown(39) && (_root.level1end == "no")) {
with (_root.body) {
nextFrame();
}
with (_root.background) {
nextFrame();
}
with (_root.seaweed1) {
nextFrame();
}
bubx = bubx - 5;
fish3x = fish3x - 3;
} else {
army = 158;
with (_root.body) {
gotoAndStop(1);
}
}
_root.onMouseDown = function () {
if ((_root.shooting == "no") && (_root.level1end == "no")) {
shooting = "yes";
with (_root.arm.gun) {
gotoAndStop(2);
}
with (_root.shot) {
gotoAndPlay(2);
}
}
};
setProperty("_root.arm", _y , army);
setProperty("bubbles", _x , bubx);
};
Instance of Symbol 124 MovieClip "shot" in Frame 4
onClipEvent (load) {
X = this._x;
Y = this._y;
}
onClipEvent (enterFrame) {
if (_root.shooting == "no") {
Xm = _parent._xmouse;
Ym = _parent._ymouse;
Xdiff = Xm - X;
Ydiff = Ym - Y;
radAngle = Math.atan2(Ydiff, Xdiff);
this._rotation = (radAngle * 360) / (Math.PI*2);
updateAfterEvent();
}
}
Instance of Symbol 129 MovieClip "arm" in Frame 4
onClipEvent (load) {
X = this._x;
Y = this._y;
}
onClipEvent (mouseMove) {
Xm = _parent._xmouse;
Ym = _parent._ymouse;
Xdiff = Xm - X;
Ydiff = Ym - Y;
radAngle = Math.atan2(Ydiff, Xdiff);
this._rotation = (radAngle * 360) / (Math.PI*2);
updateAfterEvent();
}
Instance of Symbol 182 MovieClip "fish3" in Frame 4
onClipEvent (enterFrame) {
if (_root.body.hitTest(this) && (_root.fish3dead == "no")) {
_root.level1end = "yes";
setProperty("_root.body", _visible , 0);
setProperty(this, _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead04) {
gotoAndStop(2);
}
}
if (((this._x > _root.body._x) && (_root.fish3dead == "no")) && (_root.level1end == "no")) {
setProperty(this, _x , this._x - 4);
}
if (((this._x < _root.body._x) && (_root.fish3dead == "no")) && (_root.level1end == "no")) {
setProperty(this, _x , this._x + 4);
}
if (((this._y > _root.body._y) && (_root.fish3dead == "no")) && (_root.level1end == "no")) {
setProperty(this, _y , this._y - 1);
}
if (((this._y < _root.body._y) && (_root.fish3dead == "no")) && (_root.level1end == "no")) {
setProperty(this, _y , this._y + 1);
}
if ((_root.shot.hitTest(this.fish3body.fish3move.fish3jaw1) && (_root.cursor.hitTest(this.fish3body.fish3move.fish3jaw1))) && (_root.hit == "no")) {
_root.hit = "yes";
_root.fish3hit = _root.fish3hit + 1;
with (this.fish3body.fish3move.fish3jaw1) {
gotoAndStop(2);
}
setProperty("_root.shot", _alpha , 0);
}
if ((_root.shot.hitTest(this.fish3body.fish3move.fish3jaw2) && (_root.cursor.hitTest(this.fish3body.fish3move.fish3jaw2))) && (_root.hit == "no")) {
_root.hit = "yes";
_root.fish3hit = _root.fish3hit + 1;
with (this.fish3body.fish3move.fish3jaw2) {
gotoAndStop(2);
}
setProperty("_root.shot", _alpha , 0);
}
if ((_root.shot.hitTest(this.fish3body.fish3move.fish3mid) && (_root.cursor.hitTest(this.fish3body.fish3move.fish3mid))) && (_root.hit == "no")) {
_root.hit = "yes";
_root.fish3hit = _root.fish3hit + 1;
with (this.fish3body.fish3move.fish3mid) {
gotoAndStop(2);
}
setProperty("_root.shot", _alpha , 0);
}
if (_root.fish3hit > 2) {
_root.hit = "no";
_root.fish3dead = "yes";
_root.fish3hit = 0;
with (this) {
gotoAndStop(2);
}
}
if (_root.fish3dead == "yes") {
this._y = this._y + 5;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish3dead == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish3dead = "no";
_root.fish3hit = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if ((Key.isDown(39) && (_root.fish3dead == "no")) && (_root.level1end == "no")) {
this._x = this._x - 3;
}
if ((Key.isDown(39) && (_root.fish3dead == "yes")) && (_root.level1end == "no")) {
this._x = this._x - 5;
}
}
Instance of Symbol 206 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (_root.body.hitTest(this) && (_root.fish1dead == "no")) {
_root.level1end = "yes";
setProperty("_root.body", _visible , 0);
setProperty(this, _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead03) {
gotoAndStop(2);
}
}
if (((this._x > _root.body._x) && (_root.fish1dead == "no")) && (_root.level1end == "no")) {
setProperty(this, _x , this._x - 5);
}
if (((this._x < _root.body._x) && (_root.fish1dead == "no")) && (_root.level1end == "no")) {
setProperty(this, _x , this._x + 5);
}
if (((this._y > _root.body._y) && (_root.fish1dead == "no")) && (_root.level1end == "no")) {
setProperty(this, _y , this._y - 2);
}
if (((this._y < _root.body._y) && (_root.fish1dead == "no")) && (_root.level1end == "no")) {
setProperty(this, _y , this._y + 2);
}
if ((_root.shot.hitTest(this.fish1move.fish1body.jaw1) && (_root.cursor.hitTest(this.fish1move.fish1body.jaw1))) && (_root.hit == "no")) {
_root.hit = "yes";
_root.fish1hit = _root.fish1hit + 1;
with (this.fish1move.fish1body.jaw1) {
gotoAndStop(2);
}
setProperty("_root.shot", _alpha , 0);
}
if ((_root.shot.hitTest(this.fish1move.fish1body.jaw2) && (_root.cursor.hitTest(this.fish1move.fish1body.jaw2))) && (_root.hit == "no")) {
_root.hit = "yes";
_root.fish1hit = _root.fish1hit + 1;
with (this.fish1move.fish1body.jaw2) {
gotoAndStop(2);
}
setProperty("_root.shot", _alpha , 0);
}
if ((_root.shot.hitTest(this.fish1move.fish1body.angler) && (_root.cursor.hitTest(this.fish1move.fish1body.angler))) && (_root.hit == "no")) {
_root.hit = "yes";
_root.fish1hit = _root.fish1hit + 0.5;
with (this.fish1move.fish1body.angler) {
gotoAndStop(2);
}
setProperty("_root.shot", _alpha , 0);
}
if ((_root.shot.hitTest(this.fish1move.fish1body.mid) && (_root.cursor.hitTest(this.fish1move.fish1body.mid))) && (_root.hit == "no")) {
_root.hit = "yes";
_root.fish1hit = _root.fish1hit + 1;
with (this.fish1move.fish1body.mid) {
gotoAndStop(2);
}
setProperty("_root.shot", _alpha , 0);
}
if (_root.fish1hit > 2) {
_root.hit = "no";
_root.fish1dead = "yes";
_root.fish1hit = 0;
with (this) {
gotoAndStop(2);
}
}
if (_root.fish1dead == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish1dead == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish1dead = "no";
_root.fish1hit = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if ((Key.isDown(39) && (_root.fish1dead == "no")) && (_root.level1end == "no")) {
this._x = this._x - 3;
}
if ((Key.isDown(39) && (_root.fish1dead == "yes")) && (_root.level1end == "no")) {
this._x = this._x - 5;
}
}
Frame 5
stop();
Mouse.hide();
_root.onMouseMove = function () {
setProperty("_root.cursor", _x , _xmouse);
setProperty("_root.cursor", _y , _ymouse);
updateAfterEvent();
};
shooting = "no";
armx = 92.8;
army = 158;
bubx = 63;
x = 81.5;
y = 197.4;
fish1x = 780;
fish1y = random(300);
fish3x = 1500;
fish3y = random(300);
fish1hit = 0;
fish2hit = 0;
fish2hit2 = 0;
fish2hit3 = 0;
fish2hit4 = 0;
fish3hit = 0;
fish4hit = 0;
fish4hit2 = 0;
fish4hit3 = 0;
fish4hit4 = 0;
hit = "no";
fish1dead = "yes";
fish2dead = "no";
fish2dead2 = "no";
fish2dead3 = "no";
fish2dead4 = "no";
fish2dead5 = "no";
fish4dead = "no";
fish4dead2 = "no";
fish4dead3 = "no";
fish4dead4 = "no";
fish4dead5 = "no";
fish3dead = "yes";
level2end = "no";
start2 = "no";
dead2 = "no";
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
setProperty("_root.shot", _visible , 0);
setProperty("_root.bubbles", _visible , 0);
_root.onEnterFrame = function () {
if (((Key.isDown(39) && (level2end == "no")) && (_root.start2 == "yes")) && (_root.dead2 == "no")) {
with (_root.body) {
nextFrame();
}
with (_root.background2) {
nextFrame();
}
with (_root.seaweed2) {
nextFrame();
}
bubx = bubx - 5;
} else {
army = 158;
with (_root.body) {
gotoAndStop(1);
}
}
_root.onMouseDown = function () {
if ((((_root.shooting == "no") && (level2end == "no")) && (_root.start2 == "yes")) && (_root.dead2 == "no")) {
shooting = "yes";
with (_root.arm.machinegun) {
nextFrame();
}
with (_root.arm.machinegun.flare) {
gotoAndPlay(2);
}
}
};
_root.onMouseUp = function () {
shooting = "no";
};
setProperty("_root.arm", _y , army);
setProperty("bubbles", _x , bubx);
};
Instance of Symbol 267 MovieClip "arm" in Frame 5
onClipEvent (load) {
X = this._x;
Y = this._y;
}
onClipEvent (mouseMove) {
Xm = _parent._xmouse;
Ym = _parent._ymouse;
Xdiff = Xm - X;
Ydiff = Ym - Y;
radAngle = Math.atan2(Ydiff, Xdiff);
this._rotation = (radAngle * 360) / (Math.PI*2);
updateAfterEvent();
}
Instance of Symbol 291 MovieClip in Frame 5
onClipEvent (enterFrame) {
if ((_root.body.hitTest(this) && (_root.fish4dead == "no")) && (_root.dead2 == "no")) {
_root.dead2 = "yes";
setProperty(this, _visible , 0);
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead02) {
gotoAndStop(2);
}
}
if ((this._x > _root.body._x) && (_root.fish4dead == "no")) {
setProperty(this, _x , this._x - 7);
}
if ((this._x < _root.body._x) && (_root.fish4dead == "no")) {
setProperty(this, _x , this._x + 7);
}
if ((this._y > _root.body._y) && (_root.fish4dead == "no")) {
setProperty(this, _y , this._y - 1);
}
if ((this._y < _root.body._y) && (_root.fish4dead == "no")) {
setProperty(this, _y , this._y + 1);
}
if ((_root.cursor.hitTest(this) && (_root.fish4dead == "no")) && (_root.shooting == "yes")) {
_root.shooting = "no";
_root.hit = "yes";
_root.fish4hit = _root.fish4hit + 1;
}
if (_root.fish4hit > 0) {
with (this.splatter1) {
gotoAndStop(2);
}
}
if (_root.fish4hit > 1) {
with (this.splatter2) {
gotoAndStop(2);
}
}
if (_root.fish4hit > 2) {
with (this.splatter3) {
gotoAndStop(2);
}
}
if (_root.fish4hit > 3) {
_root.fish4dead = "yes";
with (this.splatter1) {
gotoAndStop(1);
}
with (this.splatter2) {
gotoAndStop(1);
}
with (this.splatter3) {
gotoAndStop(1);
}
with (this) {
gotoAndStop(2);
}
}
if (_root.fish4dead == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish4dead == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish4dead = "no";
_root.fish4hit = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (_root.fish4dead == "no")) {
this._x = this._x - 3;
}
if (((Key.isDown(39) && (_root.fish4dead == "yes")) && (_root.dead2 == "no")) && (_root.level2end == "no")) {
this._x = this._x - 5;
}
}
Instance of Symbol 291 MovieClip in Frame 5
onClipEvent (enterFrame) {
if ((_root.body.hitTest(this) && (_root.fish4dead2 == "no")) && (_root.dead2 == "no")) {
_root.dead2 = "yes";
setProperty(this, _visible , 0);
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead02) {
gotoAndStop(2);
}
}
if ((this._x > _root.body._x) && (_root.fish4dead2 == "no")) {
setProperty(this, _x , this._x - 5);
}
if ((this._x < _root.body._x) && (_root.fish4dead2 == "no")) {
setProperty(this, _x , this._x + 5);
}
if ((this._y > _root.body._y) && (_root.fish4dead2 == "no")) {
setProperty(this, _y , this._y - 1);
}
if ((this._y < _root.body._y) && (_root.fish4dead2 == "no")) {
setProperty(this, _y , this._y + 1);
}
if ((_root.cursor.hitTest(this) && (_root.fish4dead2 == "no")) && (_root.shooting == "yes")) {
_root.shooting = "no";
_root.hit = "yes";
_root.fish4hit2 = _root.fish4hit2 + 1;
}
if (_root.fish4hit2 > 0) {
with (this.splatter1) {
gotoAndStop(2);
}
}
if (_root.fish4hit2 > 1) {
with (this.splatter2) {
gotoAndStop(2);
}
}
if (_root.fish4hit2 > 2) {
with (this.splatter3) {
gotoAndStop(2);
}
}
if (_root.fish4hit2 > 3) {
_root.fish4dead2 = "yes";
with (this.splatter1) {
gotoAndStop(1);
}
with (this.splatter2) {
gotoAndStop(1);
}
with (this.splatter3) {
gotoAndStop(1);
}
with (this) {
gotoAndStop(2);
}
}
if (_root.fish4dead2 == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish4dead2 == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish4dead2 = "no";
_root.fish4hit2 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (_root.fish4dead2 == "no")) {
this._x = this._x - 3;
}
if (((Key.isDown(39) && (_root.fish4dead2 == "yes")) && (_root.dead2 == "no")) && (_root.level2end == "no")) {
this._x = this._x - 5;
}
}
Instance of Symbol 291 MovieClip in Frame 5
onClipEvent (enterFrame) {
if ((_root.body.hitTest(this) && (_root.fish4dead3 == "no")) && (_root.dead2 == "no")) {
_root.dead2 = "yes";
setProperty(this, _visible , 0);
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
_root.level2end = "yes";
with (_root.dead02) {
gotoAndStop(2);
}
}
if ((this._x > _root.body._x) && (_root.fish4dead3 == "no")) {
setProperty(this, _x , this._x - 7);
}
if ((this._x < _root.body._x) && (_root.fish4dead3 == "no")) {
setProperty(this, _x , this._x + 7);
}
if ((this._y > _root.body._y) && (_root.fish4dead3 == "no")) {
setProperty(this, _y , this._y - 1);
}
if ((this._y < _root.body._y) && (_root.fish4dead3 == "no")) {
setProperty(this, _y , this._y + 1);
}
if ((_root.cursor.hitTest(this) && (_root.fish4dead3 == "no")) && (_root.shooting == "yes")) {
_root.shooting = "no";
_root.hit = "yes";
_root.fish4hit3 = _root.fish4hit3 + 1;
}
if (_root.fish4hit3 > 0) {
with (this.splatter1) {
gotoAndStop(2);
}
}
if (_root.fish4hit3 > 1) {
with (this.splatter2) {
gotoAndStop(2);
}
}
if (_root.fish4hit3 > 2) {
with (this.splatter3) {
gotoAndStop(2);
}
}
if (_root.fish4hit3 > 3) {
_root.fish4dead3 = "yes";
with (this.splatter1) {
gotoAndStop(1);
}
with (this.splatter2) {
gotoAndStop(1);
}
with (this.splatter3) {
gotoAndStop(1);
}
with (this) {
gotoAndStop(2);
}
}
if (_root.fish4dead3 == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish4dead3 == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish4dead3 = "no";
_root.fish4hit3 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (_root.fish4dead3 == "no")) {
this._x = this._x - 3;
}
if (((Key.isDown(39) && (_root.fish4dead3 == "yes")) && (_root.dead2 == "no")) && (_root.level2end == "no")) {
this._x = this._x - 5;
}
}
Instance of Symbol 291 MovieClip in Frame 5
onClipEvent (enterFrame) {
if ((_root.body.hitTest(this) && (_root.fish4dead4 == "no")) && (_root.dead2 == "no")) {
_root.dead2 = "yes";
setProperty(this, _visible , 0);
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead02) {
gotoAndStop(2);
}
}
if ((this._x > _root.body._x) && (_root.fish4dead4 == "no")) {
setProperty(this, _x , this._x - 7);
}
if ((this._x < _root.body._x) && (_root.fish4dead4 == "no")) {
setProperty(this, _x , this._x + 7);
}
if ((this._y > _root.body._y) && (_root.fish4dead4 == "no")) {
setProperty(this, _y , this._y - 1);
}
if ((this._y < _root.body._y) && (_root.fish4dead4 == "no")) {
setProperty(this, _y , this._y + 1);
}
if ((_root.cursor.hitTest(this) && (_root.fish4dead4 == "no")) && (_root.shooting == "yes")) {
_root.shooting = "no";
_root.hit = "yes";
_root.fish4hit4 = _root.fish4hit4 + 1;
}
if (_root.fish4hit4 > 0) {
with (this.splatter1) {
gotoAndStop(2);
}
}
if (_root.fish4hit4 > 1) {
with (this.splatter2) {
gotoAndStop(2);
}
}
if (_root.fish4hit4 > 2) {
with (this.splatter3) {
gotoAndStop(2);
}
}
if (_root.fish4hit4 > 3) {
_root.fish4dead4 = "yes";
with (this.splatter1) {
gotoAndStop(1);
}
with (this.splatter2) {
gotoAndStop(1);
}
with (this.splatter3) {
gotoAndStop(1);
}
with (this) {
gotoAndStop(2);
}
}
if (_root.fish4dead4 == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish4dead4 == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish4dead4 = "no";
_root.fish4hit4 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (_root.fish4dead4 == "no")) {
this._x = this._x - 3;
}
if (((Key.isDown(39) && (_root.fish4dead4 == "yes")) && (_root.dead2 == "no")) && (_root.level2end == "no")) {
this._x = this._x - 5;
}
}
Instance of Symbol 297 MovieClip in Frame 5
onClipEvent (enterFrame) {
if ((_root.body.hitTest(this) && (_root.fish2dead == "no")) && (_root.dead2 == "no")) {
_root.dead2 = "yes";
setProperty("_root.body", _visible , 0);
setProperty(this, _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead01) {
gotoAndStop(2);
}
}
if ((this._x > _root.body._x) && (_root.fish2dead == "no")) {
setProperty(this, _x , this._x - 5);
}
if ((this._x < _root.body._x) && (_root.fish2dead == "no")) {
setProperty(this, _x , this._x + 5);
}
if ((this._y > _root.body._y) && (_root.fish2dead == "no")) {
setProperty(this, _y , this._y - 2);
}
if ((this._y < _root.body._y) && (_root.fish2dead == "no")) {
setProperty(this, _y , this._y + 2);
}
if ((_root.cursor.hitTest(this) && (_root.fish2dead == "no")) && (_root.shooting == "yes")) {
_root.shooting = "no";
_root.hit = "yes";
_root.fish2hit = _root.fish2hit + 1;
}
if (_root.fish2hit > 0) {
with (this.splatter1) {
gotoAndStop(2);
}
}
if (_root.fish2hit > 1) {
with (this.splatter2) {
gotoAndStop(2);
}
}
if (_root.fish2hit > 2) {
with (this.splatter3) {
gotoAndStop(2);
}
}
if (_root.fish2hit > 3) {
_root.fish2dead = "yes";
with (this.splatter1) {
gotoAndStop(1);
}
with (this.splatter2) {
gotoAndStop(1);
}
with (this.splatter3) {
gotoAndStop(1);
}
with (this) {
gotoAndStop(2);
}
}
if (_root.fish2dead == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish2dead == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish2dead = "no";
_root.fish2hit = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (_root.fish2dead == "no")) {
this._x = this._x - 3;
}
if (((Key.isDown(39) && (_root.fish2dead == "yes")) && (_root.dead2 == "no")) && (_root.level2end == "no")) {
this._x = this._x - 5;
}
}
Instance of Symbol 298 MovieClip in Frame 5
onClipEvent (enterFrame) {
if ((_root.body.hitTest(this) && (_root.fish2dead3 == "no")) && (_root.dead2 == "no")) {
_root.dead2 = "yes";
setProperty(this, _visible , 0);
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead01) {
gotoAndStop(2);
}
}
if ((this._x > _root.body._x) && (_root.fish2dead3 == "no")) {
setProperty(this, _x , this._x - 6);
}
if ((this._x < _root.body._x) && (_root.fish2dead3 == "no")) {
setProperty(this, _x , this._x + 6);
}
if ((this._y > _root.body._y) && (_root.fish2dead3 == "no")) {
setProperty(this, _y , this._y - 1);
}
if ((this._y < _root.body._y) && (_root.fish2dead3 == "no")) {
setProperty(this, _y , this._y + 1);
}
if ((_root.cursor.hitTest(this) && (_root.fish2dead3 == "no")) && (_root.shooting == "yes")) {
_root.shooting = "no";
_root.hit = "yes";
_root.fish2hit3 = _root.fish2hit3 + 1;
}
if (_root.fish2hit3 > 0) {
with (this.splatter1) {
gotoAndStop(2);
}
}
if (_root.fish2hit3 > 1) {
with (this.splatter2) {
gotoAndStop(2);
}
}
if (_root.fish2hit3 > 2) {
with (this.splatter3) {
gotoAndStop(2);
}
}
if (_root.fish2hit3 > 3) {
_root.fish2dead3 = "yes";
with (this.splatter1) {
gotoAndStop(1);
}
with (this.splatter2) {
gotoAndStop(1);
}
with (this.splatter3) {
gotoAndStop(1);
}
with (this) {
gotoAndStop(2);
}
}
if (_root.fish2dead3 == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish2dead3 == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish2dead3 = "no";
_root.fish2hit3 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (_root.fish2dead3 == "no")) {
this._x = this._x - 3;
}
if (((Key.isDown(39) && (_root.fish2dead3 == "yes")) && (_root.dead2 == "no")) && (_root.level2end == "no")) {
this._x = this._x - 5;
}
}
Instance of Symbol 299 MovieClip in Frame 5
onClipEvent (enterFrame) {
if ((_root.body.hitTest(this) && (_root.fish2dead2 == "no")) && (_root.dead2 == "no")) {
_root.dead2 = "yes";
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead01) {
gotoAndStop(2);
}
}
if ((this._x > _root.body._x) && (_root.fish2dead2 == "no")) {
setProperty(this, _x , this._x - 6);
}
if ((this._x < _root.body._x) && (_root.fish2dead2 == "no")) {
setProperty(this, _x , this._x + 6);
}
if ((this._y > _root.body._y) && (_root.fish2dead2 == "no")) {
setProperty(this, _y , this._y - 2);
}
if ((this._y < _root.body._y) && (_root.fish2dead2 == "no")) {
setProperty(this, _y , this._y + 2);
}
if ((_root.cursor.hitTest(this) && (_root.fish2dead2 == "no")) && (_root.shooting == "yes")) {
_root.shooting = "no";
_root.fish2hit2 = _root.fish2hit2 + 1;
}
if (_root.fish2hit2 > 0) {
with (this.splatter1) {
gotoAndStop(2);
}
}
if (_root.fish2hit2 > 1) {
with (this.splatter2) {
gotoAndStop(2);
}
}
if (_root.fish2hit2 > 2) {
with (this.splatter3) {
gotoAndStop(2);
}
}
if (_root.fish2hit2 > 3) {
_root.fish2dead2 = "yes";
with (this.splatter1) {
gotoAndStop(1);
}
with (this.splatter2) {
gotoAndStop(1);
}
with (this.splatter3) {
gotoAndStop(1);
}
with (this) {
gotoAndStop(2);
}
}
if (_root.fish2dead2 == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 315) && (_root.fish2dead2 == "yes")) {
this._y = 315;
}
if (this._x < -100) {
_root.fish2dead2 = "no";
_root.fish2hit2 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (_root.fish2dead2 == "no")) {
this._x = this._x - 3;
}
if (((Key.isDown(39) && (_root.fish2dead2 == "yes")) && (_root.dead2 == "no")) && (_root.level2end == "no")) {
this._x = this._x - 5;
}
}
Instance of Symbol 300 MovieClip in Frame 5
onClipEvent (enterFrame) {
if ((_root.body.hitTest(this) && (_root.fish2dead4 == "no")) && (_root.dead2 == "no")) {
_root.dead2 = "yes";
setProperty(this, _visible , 0);
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
with (_root.dead01) {
gotoAndStop(2);
}
}
if ((this._x > _root.body._x) && (_root.fish2dead4 == "no")) {
setProperty(this, _x , this._x - 4);
}
if ((this._x < _root.body._x) && (_root.fish2dead4 == "no")) {
setProperty(this, _x , this._x + 4);
}
if ((this._y > _root.body._y) && (_root.fish2dead4 == "no")) {
setProperty(this, _y , this._y - 1);
}
if ((this._y < _root.body._y) && (_root.fish2dead4 == "no")) {
setProperty(this, _y , this._y + 1);
}
if ((_root.cursor.hitTest(this) && (_root.fish2dead4 == "no")) && (_root.shooting == "yes")) {
_root.shooting = "no";
_root.hit = "yes";
_root.fish2hit4 = _root.fish2hit4 + 1;
}
if (_root.fish2hit4 > 0) {
with (this.splatter1) {
gotoAndStop(2);
}
}
if (_root.fish2hit4 > 1) {
with (this.splatter2) {
gotoAndStop(2);
}
}
if (_root.fish2hit4 > 2) {
with (this.splatter3) {
gotoAndStop(2);
}
}
if (_root.fish2hit4 > 3) {
_root.fish2dead4 = "yes";
with (this.splatter1) {
gotoAndStop(1);
}
with (this.splatter2) {
gotoAndStop(1);
}
with (this.splatter3) {
gotoAndStop(1);
}
with (this) {
gotoAndStop(2);
}
}
if (_root.fish2dead4 == "yes") {
this._y = this._y + 4;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 295) && (_root.fish2dead4 == "yes")) {
this._y = 295;
}
if (this._x < -100) {
_root.fish2dead4 = "no";
_root.fish2hit4 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (_root.fish2dead4 == "no")) {
this._x = this._x - 3;
}
if (((Key.isDown(39) && (_root.fish2dead4 == "yes")) && (_root.dead2 == "no")) && (_root.level2end == "no")) {
this._x = this._x - 5;
}
}
Frame 6
stop();
Mouse.hide();
_root.onMouseMove = function () {
setProperty("_root.cursor", _x , _xmouse);
setProperty("_root.cursor", _y , _ymouse);
updateAfterEvent();
};
_root.shooting3 = "no";
army = 158;
bubx2 = 215;
x = 234.6;
y = 197.4;
fish6x = 780;
fish6y = random(300);
fish3x = 1500;
fish3y = random(300);
fish6hit = 0;
fish6dead = "no";
fish6hit2 = 0;
fish6dead2 = "no";
fish6hit3 = 0;
fish6dead3 = "no";
fish6hit4 = 0;
fish6dead4 = "no";
hit = "no";
squidx = -260;
level3end = "no";
deadx = 260;
squidhit = "no";
start3 = "no";
touched = "no";
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
setProperty("_root.shot", _visible , 0);
setProperty("_root.bubbles", _visible , 0);
_root.onEnterFrame = function () {
if ((((Key.isDown(39) && (level3end == "no")) && (_root.squidhit == "no")) && (_root.start3 == "yes")) && (_root.touched == "no")) {
squidx = squidx - 5.5;
with (_root.body) {
nextFrame();
}
with (_root.background) {
nextFrame();
}
bubx2 = bubx2 - 5;
} else {
army = 158;
with (_root.body) {
gotoAndStop(1);
}
}
_root.onMouseDown = function () {
if (((((_root.shooting3 == "no") && (level3end == "no")) && (_root.squidhit == "no")) && (_root.start3 == "yes")) && (_root.touched == "no")) {
_root.shooting3 = "yes";
with (_root.arm.gun) {
gotoAndStop(2);
}
with (_root.shot) {
gotoAndPlay(2);
}
with (_root.darkness) {
gotoAndPlay(2);
}
}
};
if (_root.deadx < -125) {
with (_root.diverhead) {
gotoAndStop(2);
}
}
squidx = squidx + 5;
setProperty("_root.squid", _x , squidx);
setProperty("_root.arm", _y , army);
setProperty("bubbles", _x , bubx2);
};
Instance of Symbol 345 MovieClip "shot" in Frame 6
onClipEvent (load) {
X = this._x;
Y = this._y;
}
onClipEvent (enterFrame) {
if (_root.shooting3 == "no") {
Xm = _parent._xmouse;
Ym = _parent._ymouse;
Xdiff = Xm - X;
Ydiff = Ym - Y;
radAngle = Math.atan2(Ydiff, Xdiff);
this._rotation = (radAngle * 360) / (Math.PI*2);
updateAfterEvent();
}
}
Instance of Symbol 354 MovieClip "arm" in Frame 6
onClipEvent (load) {
X = this._x;
Y = this._y;
}
onClipEvent (mouseMove) {
Xm = _parent._xmouse;
Ym = _parent._ymouse;
Xdiff = Xm - X;
Ydiff = Ym - Y;
radAngle = Math.atan2(Ydiff, Xdiff);
this._rotation = (radAngle * 360) / (Math.PI*2);
updateAfterEvent();
}
Instance of Symbol 396 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (((this._x > _root.body._x) && (_root.fish6dead2 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _x , this._x - 8);
}
if (((this._x < _root.body._x) && (_root.fish6dead2 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _x , this._x + 8);
}
if (((this._y > _root.body._y) && (_root.fish6dead2 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _y , this._y - 2);
}
if (((this._y < _root.body._y) && (_root.fish6dead2 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _y , this._y + 2);
}
if (_root.shot.hitTest(this) && (_root.fish6dead2 == "no")) {
_root.fish6dead2 = "yes";
_root.fish6hit2 = _root.fish6hit2 + 1;
}
if (_root.fish6hit2 > 0) {
with (this) {
gotoAndStop(2);
}
}
if (_root.fish6dead2 == "yes") {
this._y = this._y + 8;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 350) && (_root.fish6dead2 == "yes")) {
_root.fish6dead2 = "no";
_root.fish6hit2 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 1000;
this._y = random(300);
}
if (Key.isDown(39) && (level3end == "no")) {
this._x = this._x - 5;
}
if (((_root.body.hitTest(this) && (_root.squidhit == "no")) && (_root.fish6dead2 == "no")) && (_root.level3end == "no")) {
with (_root.dead09) {
gotoAndStop(2);
}
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
_root.deadx = _root.deadx - 10;
_root.x = _root.x - 10;
setProperty("_root.body", _x , _root.x);
setProperty("_root.dead09", _x , _root.deadx);
}
}
Instance of Symbol 396 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (((this._x > _root.body._x) && (_root.fish6dead3 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _x , this._x - 11);
}
if (((this._x < _root.body._x) && (_root.fish6dead3 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _x , this._x11);
}
if (((this._y > _root.body._y) && (_root.fish6dead3 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _y , this._y - 3);
}
if (((this._y < _root.body._y) && (_root.fish6dead3 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _y , this._y + 3);
}
if (_root.shot.hitTest(this) && (_root.fish6dead3 == "no")) {
_root.fish6hit3 = _root.fish6hit3 + 1;
}
if (_root.fish6hit3 > 0) {
with (this) {
gotoAndStop(2);
}
_root.fish6dead3 = "yes";
}
if (_root.fish6dead3 == "yes") {
this._y = this._y + 5;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 350) && (_root.fish6dead3 == "yes")) {
_root.fish6dead3 = "no";
_root.fish6hit3 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 1000;
this._y = random(300);
}
if (Key.isDown(39) && (level3end == "no")) {
this._x = this._x - 5;
}
if (((_root.body.hitTest(this) && (_root.squidhit == "no")) && (_root.fish6dead3 == "no")) && (_root.level3end == "no")) {
with (_root.dead09) {
gotoAndStop(2);
}
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
_root.deadx = _root.deadx - 10;
_root.x = _root.x - 10;
setProperty("_root.body", _x , _root.x);
setProperty("_root.dead09", _x , _root.deadx);
}
}
Instance of Symbol 406 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (((this._x > _root.body._x) && (_root.fish6dead == "no")) && (_root.squidhit == "no")) {
setProperty(this, _x , this._x - 10);
}
if (((this._x < _root.body._x) && (_root.fish6dead == "no")) && (_root.squidhit == "no")) {
setProperty(this, _x , this._x + 10);
}
if (((this._y > _root.body._y) && (_root.fish6dead == "no")) && (_root.squidhit == "no")) {
setProperty(this, _y , this._y - 1);
}
if (((this._y < _root.body._y) && (_root.fish6dead == "no")) && (_root.squidhit == "no")) {
setProperty(this, _y , this._y + 1);
}
if (_root.shot.hitTest(this.box) && (_root.fish6dead == "no")) {
_root.fish6hit = _root.fish6hit + 1;
}
if (_root.fish6hit > 0) {
with (this) {
gotoAndStop(2);
}
_root.fish6dead = "yes";
}
if (_root.fish6dead == "yes") {
this._y = this._y + 6;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 350) && (_root.fish6dead == "yes")) {
_root.fish6dead = "no";
_root.fish6hit = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (level3end == "no")) {
this._x = this._x - 5;
}
if (((_root.body.hitTest(this) && (_root.squidhit == "no")) && (_root.fish6dead == "no")) && (_root.level3end == "no")) {
with (_root.dead09) {
gotoAndStop(2);
}
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
_root.deadx = _root.deadx - 10;
_root.x = _root.x - 10;
setProperty("_root.body", _x , _root.x);
setProperty("_root.dead09", _x , _root.deadx);
}
}
Instance of Symbol 406 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (((this._x > _root.body._x) && (_root.fish6dead4 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _x , this._x - 12);
}
if (((this._x < _root.body._x) && (_root.fish6dead4 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _x , this._x + 12);
}
if (((this._y > _root.body._y) && (_root.fish6dead4 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _y , this._y - 2);
}
if (((this._y < _root.body._y) && (_root.fish6dead4 == "no")) && (_root.squidhit == "no")) {
setProperty(this, _y , this._y + 2);
}
if (_root.shot.hitTest(this.box) && (_root.fish6dead4 == "no")) {
_root.fish6hit4 = _root.fish6hit4 + 1;
}
if (_root.fish6hit4 > 0) {
with (this) {
gotoAndStop(2);
}
_root.fish6dead4 = "yes";
}
if (_root.fish6dead4 == "yes") {
this._y = this._y + 9;
setProperty(this, _y , this._y);
setProperty("this", _x , this._x);
}
if ((this._y > 350) && (_root.fish6dead4 == "yes")) {
_root.fish6dead4 = "no";
_root.fish6hit4 = 0;
with (this) {
gotoAndStop(1);
}
this._x = 780;
this._y = random(300);
}
if (Key.isDown(39) && (level3end == "no")) {
this._x = this._x - 5;
}
if (((_root.body.hitTest(this) && (_root.squidhit == "no")) && (_root.fish6dead4 == "no")) && (_root.level3end == "no")) {
with (_root.dead09) {
gotoAndStop(2);
}
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
_root.deadx = _root.deadx - 10;
_root.x = _root.x - 10;
setProperty("_root.body", _x , _root.x);
setProperty("_root.dead09", _x , _root.deadx);
}
}
Instance of Symbol 53 MovieClip in Frame 6
onClipEvent (enterFrame) {
if ((this._x > _root.body._x) && (_root.level3end == "no")) {
setProperty(this, _x , this._x - 4.5);
}
if ((this._x < _root.body._x) && (_root.level3end == "no")) {
setProperty(this, _x , this._x + 4.5);
}
if ((this._y > _root.body._y) && (_root.level3end == "no")) {
setProperty(this, _y , this._y - 1);
}
if ((this._y < _root.body._y) && (_root.level3end == "no")) {
setProperty(this, _y , this._y + 1);
}
if (_root.body.hitTest(this.beak) && (_root.level3end == "no")) {
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
setProperty("_root.bubbles", _visible , 0);
_root.squidhit = "yes";
with (_root.dead09) {
gotoAndStop(2);
}
setProperty(this, _x , this._x - 4);
_root.x = _root.x - 4;
setProperty("_root.body", _x , _root.x);
_root.deadx = _root.deadx - 4;
setProperty("_root.dead09", _x , _root.deadx);
}
if (Key.isDown(39) && (_root.level3end == "no")) {
this._x = this._x - 4;
}
}
Frame 7
stop();
Mouse.hide();
_root.onMouseMove = function () {
setProperty("_root.cursor", _x , _xmouse);
setProperty("_root.cursor", _y , _ymouse);
updateAfterEvent();
};
fish1dead = "yes";
fish2dead = "yes";
fish3dead = "yes";
fish4dead = "yes";
fish5dead = "yes";
fish6dead = "yes";
fish7dead = "yes";
level1end = "yes";
level2end = "yes";
level3end = "yes";
Frame 8
stop();
stopAllSounds();
Mouse.hide();
_root.onMouseMove = function () {
setProperty("_root.cursor", _x , _xmouse);
setProperty("_root.cursor", _y , _ymouse);
updateAfterEvent();
};
Frame 9
stop();
Frame 10
stop();
Frame 11
Mouse.hide();
_root.onMouseMove = function () {
setProperty("_root.cursor", _x , _xmouse);
setProperty("_root.cursor", _y , _ymouse);
updateAfterEvent();
};
stop();
stopAllSounds();
Symbol 10 MovieClip Frame 1
time1 = int(getTimer() / 1000);
Symbol 10 MovieClip Frame 2
b_loaded = _root.getBytesLoaded();
b_total = _root.getBytesTotal();
time = (getTimer() / 1000) - time1;
bps = b_loaded / time;
b_left = b_total - b_loaded;
s_left = Math.ceil(b_left / bps);
min = Math.floor(s_left / 60);
if (min >= 1) {
s_left = s_left - Math.floor(min * 60);
if (s_left < 10) {
s_left = "0" add s_left;
}
} else {
min = "0";
if (s_left < 10) {
s_left = "0" add s_left;
}
}
timeleft = (min add ":") add s_left;
bit_rate = int(bps) add "bps";
percent = (b_loaded / b_total) * 100;
_root.bar._xscale = percent;
Symbol 10 MovieClip Frame 3
gotoAndPlay (2);
Symbol 20 MovieClip Frame 1
stop();
Symbol 27 MovieClip Frame 50
_root.bubx = 63;
Symbol 29 MovieClip Frame 12
_root.bubx = 63;
Symbol 88 MovieClip Frame 15
stop();
Symbol 89 MovieClip Frame 121
with (_root.openingbg) {
gotoAndStop(2);
}
Symbol 89 MovieClip Frame 174
with (_root.openingbg) {
gotoAndStop(1);
}
Symbol 89 MovieClip Frame 210
with (_root.openingbg) {
gotoAndStop(2);
}
Symbol 89 MovieClip Frame 266
with (_root.opening) {
gotoAndPlay(51);
}
Symbol 92 MovieClip Frame 51
gotoAndStop (1);
Symbol 100 MovieClip Frame 51
gotoAndPlay (1);
Symbol 109 Button
on (release) {
stopAllSounds();
with (_root) {
gotoAndStop(11);
}
}
Symbol 110 Button
on (release) {
stopAllSounds();
with (_root) {
gotoAndStop(4);
}
}
Symbol 111 MovieClip Frame 50
stop();
Symbol 111 MovieClip Frame 51
setProperty("_root.skip", _visible , 0);
Symbol 111 MovieClip Frame 100
stop();
Symbol 118 Button
on (release) {
stopAllSounds();
with (_root.openingbg) {
gotoAndStop(2);
}
with (_root.opening) {
gotoAndPlay(51);
}
setProperty("_root.skip", _visible , 0);
}
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 750
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
setProperty("_root.shot", _visible , 0);
setProperty("_root.bubbles", _visible , 0);
_root.level1end = "yes";
with (_root.walk) {
gotoAndPlay(2);
}
Symbol 124 MovieClip Frame 1
stop();
Symbol 124 MovieClip Frame 11
setProperty("_root.shot", _alpha , 100);
_root.hit = "no";
gotoAndStop (1);
with (_root.arm.gun) {
gotoAndPlay(3);
}
Symbol 127 MovieClip Frame 1
stop();
Symbol 127 MovieClip Frame 6
_root.shooting = "no";
gotoAndStop (1);
Symbol 151 MovieClip Frame 1
stop();
_root.army = 159;
Symbol 151 MovieClip Frame 4
_root.army = 165;
Symbol 151 MovieClip Frame 7
_root.army = 166;
Symbol 151 MovieClip Frame 10
_root.army = 161;
Symbol 151 MovieClip Frame 13
_root.army = 161;
Symbol 151 MovieClip Frame 16
_root.army = 153;
Symbol 151 MovieClip Frame 19
_root.army = 151;
Symbol 151 MovieClip Frame 22
_root.army = 158;
Symbol 151 MovieClip Frame 25
_root.army = 161;
Symbol 151 MovieClip Frame 28
_root.army = 169;
Symbol 151 MovieClip Frame 31
_root.army = 163;
Symbol 151 MovieClip Frame 34
_root.army = 163;
Symbol 151 MovieClip Frame 37
_root.army = 158;
Symbol 151 MovieClip Frame 40
_root.army = 155;
Symbol 151 MovieClip Frame 43
_root.army = 159;
Symbol 151 MovieClip Frame 46
gotoAndPlay (2);
Symbol 165 MovieClip Frame 1
stop();
Symbol 165 MovieClip Frame 2
stopAllSounds();
Symbol 165 MovieClip Frame 62
stop();
with (_root) {
gotoAndStop(5);
}
Symbol 170 MovieClip Frame 1
stop();
Symbol 173 MovieClip Frame 1
stop();
Symbol 176 MovieClip Frame 1
stop();
Symbol 180 MovieClip Frame 51
stop();
Symbol 182 MovieClip Frame 1
stop();
Symbol 187 MovieClip Frame 1
stop();
Symbol 190 MovieClip Frame 1
stop();
Symbol 193 MovieClip Frame 1
stop();
Symbol 196 MovieClip Frame 1
stop();
Symbol 199 MovieClip Frame 1
stop();
Symbol 205 MovieClip Frame 51
stop();
Symbol 206 MovieClip Frame 1
stop();
Symbol 218 MovieClip Frame 70
stopAllSounds();
stop();
with (_root) {
gotoAndStop(7);
}
Symbol 219 MovieClip Frame 1
stop();
Symbol 219 MovieClip Frame 2
stop();
Symbol 224 MovieClip Frame 1
stop();
Symbol 230 MovieClip Frame 20
with (_root.dead03.dead03movie.fishchomp) {
gotoAndPlay(2);
}
Symbol 230 MovieClip Frame 70
stopAllSounds();
stop();
with (_root) {
gotoAndStop(7);
}
Symbol 231 MovieClip Frame 1
stop();
Symbol 231 MovieClip Frame 2
stop();
Symbol 250 MovieClip Frame 1
stop();
Symbol 250 MovieClip Frame 750
stop();
Symbol 257 MovieClip Frame 1
stop();
Symbol 257 MovieClip Frame 750
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
setProperty("_root.shot", _visible , 0);
setProperty("_root.bubbles", _visible , 0);
_root.level2end = "yes";
_root.dead2 = "yes";
with (_root.walk2) {
gotoAndPlay(2);
}
with (_root.cavelayer) {
gotoAndStop(2);
}
Symbol 264 MovieClip Frame 5
stop();
Symbol 265 MovieClip Frame 1
stop();
Symbol 265 MovieClip Frame 5
gotoAndPlay (1);
Symbol 279 MovieClip Frame 26
setProperty("_root.body", _visible , 1);
setProperty("_root.arm", _visible , 1);
setProperty("_root.shot", _visible , 1);
setProperty("_root.bubbles", _visible , 1);
_root.start2 = "yes";
stop();
Symbol 280 MovieClip Frame 1
stop();
Symbol 280 MovieClip Frame 2
stopAllSounds();
Symbol 280 MovieClip Frame 62
setProperty("_root.body", _visible , 1);
setProperty("_root.arm", _visible , 1);
setProperty("_root.shot", _visible , 1);
setProperty("_root.bubbles", _visible , 1);
_root.level2end = "yes";
with (_root) {
gotoAndStop(6);
}
stop();
Symbol 283 MovieClip Frame 1
stop();
Symbol 288 MovieClip Frame 1
stop();
Symbol 288 MovieClip Frame 2
stop();
Symbol 290 MovieClip Frame 51
stop();
Symbol 291 MovieClip Frame 1
stop();
Symbol 296 MovieClip Frame 51
stop();
Symbol 297 MovieClip Frame 1
stop();
Symbol 298 MovieClip Frame 1
stop();
Symbol 299 MovieClip Frame 1
stop();
Symbol 300 MovieClip Frame 1
stop();
Symbol 318 MovieClip Frame 45
stopAllSounds();
stop();
with (_root) {
gotoAndStop(9);
}
Symbol 319 MovieClip Frame 1
stop();
Symbol 319 MovieClip Frame 2
stop();
Symbol 336 MovieClip Frame 45
stopAllSounds();
stop();
with (_root) {
gotoAndStop(9);
}
Symbol 337 MovieClip Frame 1
stop();
Symbol 337 MovieClip Frame 2
stop();
Symbol 338 MovieClip Frame 1
stop();
Symbol 338 MovieClip Frame 750
stop();
Symbol 342 MovieClip Frame 1
stop();
Symbol 342 MovieClip Frame 750
setProperty("_root.body", _visible , 0);
setProperty("_root.arm", _visible , 0);
setProperty("_root.shot", _visible , 0);
setProperty("_root.bubbles", _visible , 0);
_root.level3end = "yes";
with (_root.walk2) {
gotoAndPlay(2);
}
Symbol 345 MovieClip Frame 1
stop();
Symbol 345 MovieClip Frame 11
setProperty("_root.shot", _alpha , 100);
_root.hit = "no";
gotoAndStop (1);
with (_root.arm.gun) {
gotoAndPlay(3);
}
Symbol 353 MovieClip Frame 1
stop();
Symbol 353 MovieClip Frame 14
_root.shooting3 = "no";
gotoAndStop (1);
Symbol 367 MovieClip Frame 44
setProperty("_root.body", _visible , 1);
setProperty("_root.arm", _visible , 1);
setProperty("_root.shot", _visible , 1);
setProperty("_root.bubbles", _visible , 1);
_root.start3 = "yes";
stop();
Symbol 379 MovieClip Frame 1
stop();
Symbol 379 MovieClip Frame 2
stopAllSounds();
Symbol 379 MovieClip Frame 63
setProperty("_root.body", _visible , 1);
setProperty("_root.arm", _visible , 1);
setProperty("_root.shot", _visible , 1);
setProperty("_root.bubbles", _visible , 1);
with (_root) {
gotoAndStop(8);
}
stop();
Symbol 385 MovieClip Frame 71
stopAllSounds();
stop();
with (_root) {
gotoAndStop(10);
}
Symbol 386 MovieClip Frame 1
stop();
Symbol 391 MovieClip Frame 1
stop();
Symbol 391 MovieClip Frame 2
stop();
_root.touched = "yes";
Symbol 395 MovieClip Frame 51
stop();
Symbol 396 MovieClip Frame 1
stop();
Symbol 405 MovieClip Frame 51
stop();
Symbol 406 MovieClip Frame 1
stop();
Symbol 409 MovieClip Frame 1
stop();
Symbol 409 MovieClip Frame 8
gotoAndStop (1);
Symbol 418 MovieClip Frame 300
stopAllSounds();
with (_root) {
gotoAndStop(3);
stop();
}
Symbol 427 Button
on (release) {
stopAllSounds();
with (_root) {
gotoAndStop(4);
}
}
Symbol 432 Button
on (release) {
with (_root) {
gotoAndStop(3);
}
}
Symbol 486 MovieClip Frame 44
stop();
Symbol 489 MovieClip Frame 67
stop();
Symbol 502 Button
on (release) {
gotoAndStop (2);
}
Symbol 503 Button
on (release) {
stopAllSounds();
with (_root) {
gotoAndStop(3);
}
}
Symbol 504 MovieClip Frame 16
with (_root.endingwin) {
gotoAndStop(2);
}
Symbol 504 MovieClip Frame 36
with (_root.endingwin) {
gotoAndStop(1);
}
Symbol 504 MovieClip Frame 43
with (_root.endingwin) {
gotoAndStop(3);
}
Symbol 504 MovieClip Frame 61
with (_root.endingwin) {
gotoAndStop(1);
}
Instance of Symbol 345 MovieClip "shot3" in Symbol 504 MovieClip Frame 69
onClipEvent (load) {
X = this._x;
Y = this._y;
}
onClipEvent (mouseMove) {
if (_root.shooting3 == "no") {
Xm = _parent._xmouse;
Ym = _parent._ymouse;
Xdiff = Xm - X;
Ydiff = Ym - Y;
radAngle = Math.atan2(Ydiff, Xdiff);
this._rotation = (radAngle * 360) / (Math.PI*2);
updateAfterEvent();
}
}
Symbol 504 MovieClip Frame 80
with (_root.endingwin) {
gotoAndStop(3);
}
Symbol 504 MovieClip Frame 98
with (_root.endingwin) {
gotoAndStop(4);
}
Symbol 504 MovieClip Frame 147
with (_root.endingwin) {
gotoAndStop(5);
}
Symbol 504 MovieClip Frame 214
with (_root.endingwin) {
gotoAndStop(5);
}
Symbol 504 MovieClip Frame 275
stop();
Symbol 505 MovieClip Frame 1
stop();
Symbol 508 Button
on (release) {
stopAllSounds();
with (_root) {
gotoAndStop(5);
}
}
Symbol 509 Button
on (release) {
with (_root) {
gotoAndStop(3);
}
}
Symbol 513 Button
on (release) {
stopAllSounds();
with (_root) {
gotoAndStop(6);
}
}
Symbol 514 Button
on (release) {
with (_root) {
gotoAndStop(3);
}
}
Symbol 518 Button
on (release) {
stopAllSounds();
with (_root) {
gotoAndStop(4);
}
}