Frame 1
stopAllSounds();
_root.bytesLoaded = _root.getBytesLoaded();
_root.bytesTotal = _root.getBytesTotal();
_root.percentLoaded = Math.round(100 * (_root.bytesLoaded / _root.bytesTotal));
_root.percentLoadedText = _root.percentLoaded + "%";
_root.bar.gotoAndStop(percentLoaded);
Frame 2
if (_root.percentLoaded == 100) {
gotoAndPlay (3);
} else {
gotoAndPlay (1);
}
Frame 3
stop();
Frame 4
stop();
Stage.showMenu = false;
Frame 10
bgSound = new Sound();
bgSound.attachSound("music");
bgSound.setVolume(100);
musicon = true;
bgSound = new Sound();
bgSound.attachSound("music");
Instance of Symbol 101 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 129 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (_root._xmouse > this._x) {
this._xscale = -100;
}
if (_root._xmouse < this._x) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
X = (_root._xmouse - _x) / 10;
Y = (_root._ymouse - _y) / 10;
_x = (_x + X);
_y = (_y + Y);
}
Instance of Symbol 101 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 102 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 103 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 104 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 149 MovieClip in Frame 10
onClipEvent (enterFrame) {
_root.quality = _quality;
if (Key.isDown(81)) {
if ((_quality == "HIGH") && (!hold)) {
_quality = "LOW";
hold = true;
} else if ((_quality == "LOW") && (!hold)) {
_quality = "MEDIUM";
hold = true;
} else if ((_quality == "MEDIUM") && (!hold)) {
_quality = "HIGH";
hold = true;
}
}
if (!Key.isDown(81)) {
hold = false;
}
}
Frame 11
stop();
Instance of Symbol 129 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root._xmouse > this._x) {
this._x = this._x + speed;
this._xscale = -100;
}
if (_root._xmouse < this._x) {
this._x = this._x - speed;
this._xscale = 100;
}
if (_root._ymouse < this._y) {
this._y = this._y - speed;
}
if (_root._ymouse > this._y) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
X = (_root._xmouse - _x) / 10;
Y = (_root._ymouse - _y) / 10;
_x = (_x + X);
_y = (_y + Y);
}
Frame 12
stop();
Frame 13
enemyFish._visible = false;
fishies = new Array();
fishMade = (d = (score = 0));
minimumFishOnScreen = 7;
maximumFishOnScreen = 15;
frame = _currentframe;
stop();
_root.onEnterFrame = function () {
if (_currentframe == frame) {
if (_root.fish._width < Stage.width) {
fishFound = 0;
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
fishFound++;
}
i++;
}
if (fishFound < minimumFishOnScreen) {
chanceOfNewFishComing = 0;
} else if (fishFound < maximumFishOnScreen) {
chanceOfNewFishComing = random(60);
}
if (chanceOfNewFishComing == 0) {
enemyFish.duplicateMovieClip("newEnemyFish" + d, d++, {left:random(2), speed:random(6) + 2, scale:random(_root.fish.scale + 40) + 10, _y:random(347), newFish:true});
fishies[fishMade] = 1;
fishMade++;
}
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
_root["newEnemyFish" + i]._x = _root["newEnemyFish" + i]._x + _root["newEnemyFish" + i].speed;
if (_root["newEnemyFish" + i].hitTest(_root.fish)) {
if (_root["newEnemyFish" + i].scale <= _root.fish.scale) {
fish.scale = fish.scale + 10;
mySound = new Sound();
mySound.attachSound("bleep");
mySound.start();
score = score + _root["newEnemyFish" + i].scale;
removeMovieClip(_root["newEnemyFish" + i]);
fishies[i] = 0;
} else {
nextFrame();
clearScreen();
}
}
if (_root["newEnemyFish" + i].left == 1) {
if (_root["newEnemyFish" + i]._x < (-_root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
_root["newEnemyFish" + i].gotoAndStop(Math.floor(Math.random(2)));
}
} else if (_root["newEnemyFish" + i]._x > (Stage.width + _root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
}
}
i++;
}
} else {
_root.gotoAndStop(_currentframe + 2);
}
}
};
clearScreen = function () {
i = 0;
while (i < fishies.length) {
removeMovieClip(_root["newEnemyFish" + i]);
i++;
}
fishies = new Array();
fishMade = 0;
};
Instance of Symbol 238 MovieClip "enemyFish" in Frame 13
onClipEvent (load) {
if (_name != "enemyFish") {
_yscale = ((xscale = scale));
if (left == 1) {
speed = speed * -1;
_xscale = xscale;
_x = (Stage.width + _width);
} else {
_xscale = (-xscale);
_x = (-_width);
}
}
}
onClipEvent (load) {
this.gotoAndStop(random(3) + 1);
}
Instance of Symbol 249 MovieClip "fish" in Frame 13
onClipEvent (load) {
xspeed = (yspeed = 0);
goingDown = (goingForward = false);
acceleration = 1;
maxSpeed = 12;
scale = 100;
facingRight = false;
}
onClipEvent (enterFrame) {
_x = (_x - xspeed);
_y = (_y - yspeed);
_yscale = scale;
xscale = scale;
if (!goingForward) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
if (Key.isDown(37)) {
goingForward = true;
if (xspeed < maxSpeed) {
xspeed = xspeed + acceleration;
}
} else if (Key.isDown(39)) {
goingForward = false;
if (xspeed > (-maxSpeed)) {
xspeed = xspeed - acceleration;
}
} else if (goingForward) {
if (xspeed > 0) {
xspeed = xspeed - acceleration;
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
}
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
} else if (xspeed > 0) {
xspeed = xspeed - acceleration;
}
if (Key.isDown(38)) {
goingDown = true;
if (yspeed < maxSpeed) {
yspeed = yspeed + acceleration;
}
} else if (Key.isDown(40)) {
goingDown = false;
if (yspeed > (-maxSpeed)) {
yspeed = yspeed - acceleration;
}
} else if (goingDown) {
if (yspeed > 0) {
yspeed = yspeed - acceleration;
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
}
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
} else if (yspeed > 0) {
yspeed = yspeed - acceleration;
}
if (_x > (Stage.width + (_width / 2))) {
_x = (-(_width / 2));
} else if (_x < (-(_width / 2))) {
_x = (Stage.width + (_width / 2));
}
if (_y > 347) {
_y = 347;
yspeed = 0;
} else if (_y < 0) {
_y = 0;
yspeed = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1) && (_root.pu1._visible)) {
this.play();
mySound = new Sound();
mySound.attachSound("PU1");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1)) {
_root.pu1._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.score = _root.score + 1000;
mySound = new Sound();
mySound.attachSound("PU2");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.pu2._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.scale > 600) {
_root.pu1._visible = false;
} else {
_root.pu1._visible = true;
}
}
Instance of Symbol 101 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 254 MovieClip "pu2" in Frame 13
onClipEvent (enterFrame) {
if (_currentframe == 4) {
this._y = random(350);
}
}
Instance of Symbol 258 MovieClip in Frame 13
onClipEvent (load) {
count = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(Stage.width - 50);
this._y = random(350) - 670;
counter = random(300);
}
if (this._currentframe == 2) {
count++;
}
if (count >= counter) {
this.play();
count = 0;
}
}
Instance of Symbol 263 MovieClip "pu1" in Frame 13
onClipEvent (load) {
speed = 10;
counter = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._y = random(350);
count = random(500);
}
}
onClipEvent (enterFrame) {
counter++;
if (counter >= count) {
this._x = this._x - speed;
}
if (this._x < -350) {
counter = 0;
this.play();
this._x = 600;
}
}
Frame 14
results = "You have lost. Your final score was: " + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Instance of Symbol 101 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Frame 15
results = "You have won! Your final score was: " + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Instance of Symbol 101 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 15
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Frame 16
enemyFish._visible = false;
fishies = new Array();
fishMade = (d = (score = 0));
minimumFishOnScreen = 10;
maximumFishOnScreen = 20;
frame = _currentframe;
stop();
_root.onEnterFrame = function () {
if (_currentframe == frame) {
if (_root.fish._width < Stage.width) {
fishFound = 0;
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
fishFound++;
}
i++;
}
if (fishFound < minimumFishOnScreen) {
chanceOfNewFishComing = 0;
} else if (fishFound < maximumFishOnScreen) {
chanceOfNewFishComing = random(60);
}
if (chanceOfNewFishComing == 0) {
enemyFish.duplicateMovieClip("newEnemyFish" + d, d++, {left:random(2), speed:random(6) + 2, scale:random(_root.fish.scale + 40) + 10, _y:random(347), newFish:true});
fishies[fishMade] = 1;
fishMade++;
}
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
_root["newEnemyFish" + i]._x = _root["newEnemyFish" + i]._x + _root["newEnemyFish" + i].speed;
if (_root["newEnemyFish" + i].hitTest(_root.fish)) {
if (_root["newEnemyFish" + i].scale <= _root.fish.scale) {
fish.scale = fish.scale + 5;
mySound = new Sound();
mySound.attachSound("bleep");
mySound.start();
score = score + _root["newEnemyFish" + i].scale;
removeMovieClip(_root["newEnemyFish" + i]);
fishies[i] = 0;
} else {
nextFrame();
clearScreen();
}
}
if (_root["newEnemyFish" + i].left == 1) {
if (_root["newEnemyFish" + i]._x < (-_root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
}
} else if (_root["newEnemyFish" + i]._x > (Stage.width + _root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
}
}
i++;
}
} else {
_root.gotoAndStop(_currentframe + 2);
}
}
};
clearScreen = function () {
i = 0;
while (i < fishies.length) {
removeMovieClip(_root["newEnemyFish" + i]);
i++;
}
fishies = new Array();
fishMade = 0;
};
Instance of Symbol 249 MovieClip "fish" in Frame 16
onClipEvent (load) {
xspeed = (yspeed = 0);
goingDown = (goingForward = false);
acceleration = 0.5;
maxSpeed = 10;
scale = 100;
facingRight = false;
}
onClipEvent (enterFrame) {
_x = (_x - xspeed);
_y = (_y - yspeed);
_yscale = scale;
xscale = scale;
if (!goingForward) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
if (Key.isDown(37)) {
goingForward = true;
if (xspeed < maxSpeed) {
xspeed = xspeed + acceleration;
}
} else if (Key.isDown(39)) {
goingForward = false;
if (xspeed > (-maxSpeed)) {
xspeed = xspeed - acceleration;
}
} else if (goingForward) {
if (xspeed > 0) {
xspeed = xspeed - acceleration;
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
}
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
} else if (xspeed > 0) {
xspeed = xspeed - acceleration;
}
if (Key.isDown(38)) {
goingDown = true;
if (yspeed < maxSpeed) {
yspeed = yspeed + acceleration;
}
} else if (Key.isDown(40)) {
goingDown = false;
if (yspeed > (-maxSpeed)) {
yspeed = yspeed - acceleration;
}
} else if (goingDown) {
if (yspeed > 0) {
yspeed = yspeed - acceleration;
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
}
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
} else if (yspeed > 0) {
yspeed = yspeed - acceleration;
}
if (_x > (Stage.width + (_width / 2))) {
_x = (-(_width / 2));
} else if (_x < (-(_width / 2))) {
_x = (Stage.width + (_width / 2));
}
if (_y > 347) {
_y = 347;
yspeed = 0;
} else if (_y < 0) {
_y = 0;
yspeed = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1) && (_root.pu1._visible)) {
this.play();
mySound = new Sound();
mySound.attachSound("PU1");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1)) {
_root.pu1._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.score = _root.score + 1000;
mySound = new Sound();
mySound.attachSound("PU2");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.pu2._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.scale > 600) {
_root.pu1._visible = false;
} else {
_root.pu1._visible = true;
}
}
Instance of Symbol 238 MovieClip "enemyFish" in Frame 16
onClipEvent (load) {
if (_name != "enemyFish") {
_yscale = ((xscale = scale));
if (left == 1) {
speed = speed * -1;
_xscale = xscale;
_x = (Stage.width + _width);
} else {
_xscale = (-xscale);
_x = (-_width);
}
}
}
onClipEvent (load) {
this.gotoAndStop(random(3) + 1);
}
Instance of Symbol 263 MovieClip "pu1" in Frame 16
onClipEvent (load) {
speed = 10;
counter = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._y = random(350);
count = random(500);
}
}
onClipEvent (enterFrame) {
counter++;
if (counter >= count) {
this._x = this._x - speed;
}
if (this._x < -350) {
counter = 0;
this.play();
this._x = 600;
}
}
Instance of Symbol 254 MovieClip "pu2" in Frame 16
onClipEvent (enterFrame) {
if (_currentframe == 4) {
this._y = random(350);
}
}
Instance of Symbol 258 MovieClip in Frame 16
onClipEvent (load) {
count = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(Stage.width - 50);
this._y = random(350) - 670;
counter = random(300);
}
if (this._currentframe == 2) {
count++;
}
if (count >= counter) {
this.play();
count = 0;
}
}
Frame 17
results = "You have lost. Your final score was: " + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Instance of Symbol 101 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 17
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Frame 18
results = "You have won! Your final score was: " + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Frame 19
enemyFish._visible = false;
fishies = new Array();
fishMade = (d = (score = 0));
minimumFishOnScreen = 20;
maximumFishOnScreen = 30;
frame = _currentframe;
stop();
_root.onEnterFrame = function () {
if (_currentframe == frame) {
if (_root.fish._width < Stage.width) {
fishFound = 0;
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
fishFound++;
}
i++;
}
if (fishFound < minimumFishOnScreen) {
chanceOfNewFishComing = 0;
} else if (fishFound < maximumFishOnScreen) {
chanceOfNewFishComing = random(60);
}
if (chanceOfNewFishComing == 0) {
enemyFish.duplicateMovieClip("newEnemyFish" + d, d++, {left:random(2), speed:random(6) + 2, scale:random(_root.fish.scale + 40) + 10, _y:random(347), newFish:true});
fishies[fishMade] = 1;
fishMade++;
}
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
_root["newEnemyFish" + i]._x = _root["newEnemyFish" + i]._x + _root["newEnemyFish" + i].speed;
if (_root["newEnemyFish" + i].hitTest(_root.fish)) {
if (_root["newEnemyFish" + i].scale <= _root.fish.scale) {
fish.scale = fish.scale + 5;
mySound = new Sound();
mySound.attachSound("bleep");
mySound.start();
score = score + _root["newEnemyFish" + i].scale;
removeMovieClip(_root["newEnemyFish" + i]);
fishies[i] = 0;
} else {
nextFrame();
clearScreen();
}
}
if (_root["newEnemyFish" + i].left == 1) {
if (_root["newEnemyFish" + i]._x < (-_root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
}
} else if (_root["newEnemyFish" + i]._x > (Stage.width + _root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
}
}
i++;
}
} else {
_root.gotoAndStop(_currentframe + 2);
}
}
};
clearScreen = function () {
i = 0;
while (i < fishies.length) {
removeMovieClip(_root["newEnemyFish" + i]);
i++;
}
fishies = new Array();
fishMade = 0;
};
Instance of Symbol 249 MovieClip "fish" in Frame 19
onClipEvent (load) {
xspeed = (yspeed = 0);
goingDown = (goingForward = false);
acceleration = 0.13;
maxSpeed = 12;
scale = 100;
facingRight = false;
}
onClipEvent (enterFrame) {
_x = (_x - xspeed);
_y = (_y - yspeed);
_yscale = scale;
xscale = scale;
if (!goingForward) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
if (Key.isDown(37)) {
goingForward = true;
if (xspeed < maxSpeed) {
xspeed = xspeed + acceleration;
}
} else if (Key.isDown(39)) {
goingForward = false;
if (xspeed > (-maxSpeed)) {
xspeed = xspeed - acceleration;
}
} else if (goingForward) {
if (xspeed > 0) {
xspeed = xspeed - acceleration;
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
}
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
} else if (xspeed > 0) {
xspeed = xspeed - acceleration;
}
if (Key.isDown(38)) {
goingDown = true;
if (yspeed < maxSpeed) {
yspeed = yspeed + acceleration;
}
} else if (Key.isDown(40)) {
goingDown = false;
if (yspeed > (-maxSpeed)) {
yspeed = yspeed - acceleration;
}
} else if (goingDown) {
if (yspeed > 0) {
yspeed = yspeed - acceleration;
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
}
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
} else if (yspeed > 0) {
yspeed = yspeed - acceleration;
}
if (_x > (Stage.width + (_width / 2))) {
_x = (-(_width / 2));
} else if (_x < (-(_width / 2))) {
_x = (Stage.width + (_width / 2));
}
if (_y > 347) {
_y = 347;
yspeed = 0;
} else if (_y < 0) {
_y = 0;
yspeed = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1) && (_root.pu1._visible)) {
this.play();
mySound = new Sound();
mySound.attachSound("PU1");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1)) {
_root.pu1._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.score = _root.score + 1000;
mySound = new Sound();
mySound.attachSound("PU2");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.pu2._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.scale > 600) {
_root.pu1._visible = false;
} else {
_root.pu1._visible = true;
}
}
Instance of Symbol 238 MovieClip "enemyFish" in Frame 19
onClipEvent (load) {
if (_name != "enemyFish") {
_yscale = ((xscale = scale));
if (left == 1) {
speed = speed * -1;
_xscale = xscale;
_x = (Stage.width + _width);
} else {
_xscale = (-xscale);
_x = (-_width);
}
}
}
onClipEvent (load) {
this.gotoAndStop(random(3) + 1);
}
Instance of Symbol 263 MovieClip "pu1" in Frame 19
onClipEvent (load) {
speed = 10;
counter = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._y = random(350);
count = random(500);
}
}
onClipEvent (enterFrame) {
counter++;
if (counter >= count) {
this._x = this._x - speed;
}
if (this._x < -350) {
counter = 0;
this.play();
this._x = 600;
}
}
Instance of Symbol 254 MovieClip "pu2" in Frame 19
onClipEvent (enterFrame) {
if (_currentframe == 4) {
this._y = random(350);
}
}
Instance of Symbol 258 MovieClip in Frame 19
onClipEvent (load) {
count = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(Stage.width - 50);
this._y = random(350) - 670;
counter = random(300);
}
if (this._currentframe == 2) {
count++;
}
if (count >= counter) {
this.play();
count = 0;
}
}
Frame 20
results = "You have lost. Your final score was: " + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Instance of Symbol 101 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 20
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Frame 21
results = "You have won! Your final score was: " + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Frame 22
enemyFish._visible = false;
fishies = new Array();
fishMade = (d = (score = 0));
minimumFishOnScreen = 40;
maximumFishOnScreen = 60;
frame = _currentframe;
stop();
_root.onEnterFrame = function () {
if (_currentframe == frame) {
if (_root.fish._width < Stage.width) {
fishFound = 0;
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
fishFound++;
}
i++;
}
if (fishFound < minimumFishOnScreen) {
chanceOfNewFishComing = 0;
} else if (fishFound < maximumFishOnScreen) {
chanceOfNewFishComing = random(60);
}
if (chanceOfNewFishComing == 0) {
enemyFish.duplicateMovieClip("newEnemyFish" + d, d++, {left:random(2), speed:random(6) + 2, scale:random(_root.fish.scale + 40) + 10, _y:random(Stage.height), newFish:true});
fishies[fishMade] = 1;
fishMade++;
}
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
_root["newEnemyFish" + i]._x = _root["newEnemyFish" + i]._x + _root["newEnemyFish" + i].speed;
if (_root["newEnemyFish" + i].hitTest(_root.fish)) {
if (_root["newEnemyFish" + i].scale <= _root.fish.scale) {
fish.scale = fish.scale + 5;
mySound = new Sound();
mySound.attachSound("bleep");
mySound.start();
score = score + _root["newEnemyFish" + i].scale;
removeMovieClip(_root["newEnemyFish" + i]);
fishies[i] = 0;
} else {
nextFrame();
clearScreen();
}
}
if (_root["newEnemyFish" + i].left == 1) {
if (_root["newEnemyFish" + i]._x < (-_root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
}
} else if (_root["newEnemyFish" + i]._x > (Stage.width + _root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
}
}
i++;
}
} else {
_root.gotoAndStop(_currentframe + 2);
}
}
};
clearScreen = function () {
i = 0;
while (i < fishies.length) {
removeMovieClip(_root["newEnemyFish" + i]);
i++;
}
fishies = new Array();
fishMade = 0;
};
Instance of Symbol 249 MovieClip "fish" in Frame 22
onClipEvent (load) {
xspeed = (yspeed = 0);
goingDown = (goingForward = false);
acceleration = 0.06;
maxSpeed = 25;
scale = 100;
facingRight = false;
}
onClipEvent (enterFrame) {
_x = (_x - xspeed);
_y = (_y - yspeed);
_yscale = scale;
xscale = scale;
if (!goingForward) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
if (Key.isDown(37)) {
goingForward = true;
if (xspeed < maxSpeed) {
xspeed = xspeed + acceleration;
}
} else if (Key.isDown(39)) {
goingForward = false;
if (xspeed > (-maxSpeed)) {
xspeed = xspeed - acceleration;
}
} else if (goingForward) {
if (xspeed > 0) {
xspeed = xspeed - acceleration;
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
}
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
} else if (xspeed > 0) {
xspeed = xspeed - acceleration;
}
if (Key.isDown(38)) {
goingDown = true;
if (yspeed < maxSpeed) {
yspeed = yspeed + acceleration;
}
} else if (Key.isDown(40)) {
goingDown = false;
if (yspeed > (-maxSpeed)) {
yspeed = yspeed - acceleration;
}
} else if (goingDown) {
if (yspeed > 0) {
yspeed = yspeed - acceleration;
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
}
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
} else if (yspeed > 0) {
yspeed = yspeed - acceleration;
}
if (_x > (Stage.width + (_width / 2))) {
_x = (-(_width / 2));
} else if (_x < (-(_width / 2))) {
_x = (Stage.width + (_width / 2));
}
if (_y > 347) {
_y = 347;
yspeed = 0;
} else if (_y < 0) {
_y = 0;
yspeed = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1) && (_root.pu1._visible)) {
this.play();
mySound = new Sound();
mySound.attachSound("PU1");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1)) {
_root.pu1._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.score = _root.score + 1000;
mySound = new Sound();
mySound.attachSound("PU2");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.pu2._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.scale > 600) {
_root.pu1._visible = false;
} else {
_root.pu1._visible = true;
}
}
Instance of Symbol 238 MovieClip "enemyFish" in Frame 22
onClipEvent (load) {
if (_name != "enemyFish") {
_yscale = ((xscale = scale));
if (left == 1) {
speed = speed * -1;
_xscale = xscale;
_x = (Stage.width + _width);
} else {
_xscale = (-xscale);
_x = (-_width);
}
}
}
onClipEvent (load) {
this.gotoAndStop(random(3) + 1);
}
Instance of Symbol 263 MovieClip "pu1" in Frame 22
onClipEvent (load) {
speed = 10;
counter = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._y = random(350);
count = random(500);
}
}
onClipEvent (enterFrame) {
counter++;
if (counter >= count) {
this._x = this._x - speed;
}
if (this._x < -350) {
counter = 0;
this.play();
this._x = 600;
}
}
Instance of Symbol 254 MovieClip "pu2" in Frame 22
onClipEvent (enterFrame) {
if (_currentframe == 4) {
this._y = random(350);
}
}
Instance of Symbol 258 MovieClip in Frame 22
onClipEvent (load) {
count = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(Stage.width - 50);
this._y = random(350) - 670;
counter = random(300);
}
if (this._currentframe == 2) {
count++;
}
if (count >= counter) {
this.play();
count = 0;
}
}
Frame 23
results = "You have lost. Your final weight was:" + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Instance of Symbol 101 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 23
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Frame 24
results = "You have won! Your final score was: " + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Frame 25
enemyFish._visible = false;
fishies = new Array();
fishMade = (d = (score = 0));
minimumFishOnScreen = customs.textbox1;
maximumFishOnScreen = customs.textbox2;
frame = _currentframe;
stop();
_root.onEnterFrame = function () {
if (_currentframe == frame) {
if (_root.fish._width < Stage.width) {
fishFound = 0;
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
fishFound++;
}
i++;
}
if (fishFound < minimumFishOnScreen) {
chanceOfNewFishComing = 0;
} else if (fishFound < maximumFishOnScreen) {
chanceOfNewFishComing = random(60);
}
if (chanceOfNewFishComing == 0) {
enemyFish.duplicateMovieClip("newEnemyFish" + d, d++, {left:random(2), speed:random(6) + 2, scale:random(_root.fish.scale + 40) + 10, _y:random(347), newFish:true});
fishies[fishMade] = 1;
fishMade++;
}
i = 0;
while (i < fishies.length) {
if (fishies[i] == 1) {
_root["newEnemyFish" + i]._x = _root["newEnemyFish" + i]._x + _root["newEnemyFish" + i].speed;
if (_root["newEnemyFish" + i].hitTest(_root.fish)) {
if (_root["newEnemyFish" + i].scale <= _root.fish.scale) {
fish.scale = fish.scale + 10;
mySound = new Sound();
mySound.attachSound("bleep");
mySound.start();
score = score + _root["newEnemyFish" + i].scale;
removeMovieClip(_root["newEnemyFish" + i]);
fishies[i] = 0;
} else {
nextFrame();
clearScreen();
}
}
if (_root["newEnemyFish" + i].left == 1) {
if (_root["newEnemyFish" + i]._x < (-_root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
_root["newEnemyFish" + i].gotoAndStop(Math.floor(Math.random(2)));
}
} else if (_root["newEnemyFish" + i]._x > (Stage.width + _root["newEnemyFish" + i]._width)) {
fishies[i] = 0;
removeMovieClip(_root["newEnemyFish" + i]);
}
}
i++;
}
} else {
_root.gotoAndStop(_currentframe + 2);
}
}
};
clearScreen = function () {
i = 0;
while (i < fishies.length) {
removeMovieClip(_root["newEnemyFish" + i]);
i++;
}
fishies = new Array();
fishMade = 0;
};
Instance of Symbol 238 MovieClip "enemyFish" in Frame 25
onClipEvent (load) {
if (_name != "enemyFish") {
_yscale = ((xscale = scale));
if (left == 1) {
speed = speed * -1;
_xscale = xscale;
_x = (Stage.width + _width);
} else {
_xscale = (-xscale);
_x = (-_width);
}
}
}
onClipEvent (load) {
this.gotoAndStop(random(3) + 1);
}
Instance of Symbol 249 MovieClip "fish" in Frame 25
onClipEvent (load) {
xspeed = (yspeed = 0);
goingDown = (goingForward = false);
acceleration = 1;
maxSpeed = 12;
scale = 100;
facingRight = false;
}
onClipEvent (enterFrame) {
_x = (_x - xspeed);
_y = (_y - yspeed);
_yscale = scale;
xscale = scale;
if (!goingForward) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
if (Key.isDown(37)) {
goingForward = true;
if (xspeed < maxSpeed) {
xspeed = xspeed + acceleration;
}
} else if (Key.isDown(39)) {
goingForward = false;
if (xspeed > (-maxSpeed)) {
xspeed = xspeed - acceleration;
}
} else if (goingForward) {
if (xspeed > 0) {
xspeed = xspeed - acceleration;
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
}
} else if (xspeed < 0) {
xspeed = xspeed + acceleration;
} else if (xspeed > 0) {
xspeed = xspeed - acceleration;
}
if (Key.isDown(38)) {
goingDown = true;
if (yspeed < maxSpeed) {
yspeed = yspeed + acceleration;
}
} else if (Key.isDown(40)) {
goingDown = false;
if (yspeed > (-maxSpeed)) {
yspeed = yspeed - acceleration;
}
} else if (goingDown) {
if (yspeed > 0) {
yspeed = yspeed - acceleration;
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
}
} else if (yspeed < 0) {
yspeed = yspeed + acceleration;
} else if (yspeed > 0) {
yspeed = yspeed - acceleration;
}
if (_x > (Stage.width + (_width / 2))) {
_x = (-(_width / 2));
} else if (_x < (-(_width / 2))) {
_x = (Stage.width + (_width / 2));
}
if (_y > 347) {
_y = 347;
yspeed = 0;
} else if (_y < 0) {
_y = 0;
yspeed = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1) && (_root.pu1._visible)) {
this.play();
mySound = new Sound();
mySound.attachSound("PU1");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu1)) {
_root.pu1._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.score = _root.score + 1000;
mySound = new Sound();
mySound.attachSound("PU2");
mySound.start();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.pu2)) {
_root.pu2._x = 5000000 /* 0x4C4B40 */;
}
}
onClipEvent (enterFrame) {
if (this.scale > 600) {
_root.pu1._visible = false;
} else {
_root.pu1._visible = true;
}
}
Instance of Symbol 263 MovieClip "pu1" in Frame 25
onClipEvent (load) {
speed = 10;
counter = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._y = random(350);
count = random(500);
}
}
onClipEvent (enterFrame) {
counter++;
if (counter >= count) {
this._x = this._x - speed;
}
if (this._x < -350) {
counter = 0;
this.play();
this._x = 600;
}
}
Instance of Symbol 101 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 25
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 254 MovieClip "pu2" in Frame 25
onClipEvent (enterFrame) {
if (_currentframe == 4) {
this._y = random(350);
}
}
Instance of Symbol 258 MovieClip "hook" in Frame 25
onClipEvent (load) {
count = 0;
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(Stage.width);
this._y = random(350) - 670;
counter = random(300);
}
if (this._currentframe == 2) {
count++;
}
if (count >= counter) {
this.play();
count = 0;
}
}
Frame 26
results = "You have lost. Your final weight was:" + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Instance of Symbol 101 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 26
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Frame 27
results = "You have won! Your final score was: " + score;
i = 0;
while (i < fishies.length) {
_root["newEnemyFish" + i].removeMovieClip();
_root.enemyFish._visible = false;
i++;
}
Frame 28
bgSound = new Sound();
bgSound.attachSound("music");
bgSound.setVolume(100);
musicon = true;
bgSound = new Sound();
bgSound.attachSound("music");
Frame 33
stop();
Instance of Symbol 101 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 102 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 103 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 104 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(63) + 390;
}
}
Instance of Symbol 101 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 101 MovieClip "b2" in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 102 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 103 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Instance of Symbol 104 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = random(90) + 71;
}
}
Frame 34
stop();
getsc_lv = new LoadVars();
getsc_lv.bid = 77;
rec_lv = new LoadVars();
getsc_lv.sendAndLoad("http://bot.pldmstudios.com/g10.php", rec_lv, "POST");
i = 1;
while (i < 11) {
_root["pl" + i].text = "loading";
_root["sc" + i].text = "loading";
i++;
}
rec_lv.onLoad = function (success) {
if (success) {
i = 1;
while (i < 11) {
_root["pl" + i].text = rec_lv["name" + i];
_root["sc" + i].text = rec_lv["score" + i];
i++;
}
} else {
gotoAndPlay ("menu");
}
};
Symbol 73 MovieClip Frame 90
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 91
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 92
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 93
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 94
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 95
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 96
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 97
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 98
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 99
_alpha = (_alpha - 10);
Symbol 73 MovieClip Frame 100
_root.play();
Symbol 75 Button
on (release) {
getURL ("http://www.armorgames.com", _blank);
}
Symbol 92 MovieClip Frame 103
_root.gotoAndPlay(10);
Symbol 129 MovieClip Frame 1
stop();
Symbol 143 Button
on (release) {
if (!_root.musicon) {
_root.musicon = true;
bgSound.start(0, 99);
}
}
Symbol 148 Button
on (release) {
_root.musicon = false;
stopAllSounds();
}
Symbol 159 Button
on (release) {
_root.gotoAndStop("diffic");
}
Symbol 164 Button
on (release) {
_root.gotoAndStop("help");
}
Symbol 170 Button
on (release) {
getURL ("http://www.armorgames.com", _blank);
}
Symbol 175 Button
on (release) {
gotoAndStop ("credits");
}
Symbol 180 Button
on (release) {
gotoAndStop ("easy");
}
Symbol 182 Button
on (release) {
gotoAndStop ("medium");
}
Symbol 184 Button
on (release) {
gotoAndStop ("Ridiculous!");
}
Symbol 185 Button
on (release) {
gotoAndStop ("custom");
}
Symbol 187 Button
on (release) {
gotoAndStop ("hard");
}
Symbol 192 Button
on (release) {
gotoAndStop ("menu");
}
Symbol 238 MovieClip Frame 1
stop();
Symbol 238 MovieClip Frame 2
stop();
Symbol 238 MovieClip Frame 3
stop();
Symbol 249 MovieClip Frame 1
stop();
onEnterFrame = eval("NULL");
Symbol 249 MovieClip Frame 2
onEnterFrame = function () {
_root.fish._xscale = _root.fish._xscale * 2;
_root.fish._yscale = _root.fish._yscale * 2;
_root.fish.scale = _root.fish.scale * 2;
};
Symbol 249 MovieClip Frame 3
onEnterFrame = function () {
_root.pu1._x = 1000;
};
Symbol 249 MovieClip Frame 101
onEnterFrame = function () {
_root.fish._xscale = _root.fish._xscale / 2;
_root.fish._yscale = _root.fish._yscale / 2;
_root.fish.scale = _root.fish.scale / 2;
};
Symbol 249 MovieClip Frame 102
onEnterFrame = eval("NULL");
Symbol 254 MovieClip Frame 1
_root.pu2._x = 600;
Symbol 258 MovieClip Frame 2
stop();
Instance of Symbol 257 MovieClip "hit" in Symbol 258 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.fish)) {
_root.nextFrame();
}
}
Symbol 263 MovieClip Frame 2
stop();
Symbol 275 Button
on (release) {
gotoAndStop ("diffic");
}
on (keyPress "<Space>") {
gotoAndStop ("diffic");
}
Symbol 282 Button
on (release) {
gotoAndPlay (33);
}
Symbol 286 MovieClip Frame 21
stop();
Symbol 314 Button
on (release) {
if (((((textbox1 != "") && (textbox2 != "")) && (textbox3 != "")) && (textbox1 < (textbox2 - 5))) && (textbox1 != 0)) {
_root.minimumFishOnScreen = _root.customs.textbox1;
trace(_root.minimumFishOnScreen);
}
}
on (release) {
if (((((textbox1 != "") && (textbox2 != "")) && (textbox3 != "")) && (textbox1 < (textbox2 - 5))) && (textbox1 != 0)) {
_root.maximumFishOnScreen = _root.customs.textbox2;
trace(_root.maximumFishOnScreen);
}
}
on (release) {
if (((((textbox1 != "") && (textbox2 != "")) && (textbox3 != "")) && (textbox1 < (textbox2 - 5))) && (textbox1 != 0)) {
_root.fish.maxSpeed = _root.customs.textbox3;
trace(_root.fish.maxSpeed);
_root.customs.gotoAndStop(2);
}
}
Symbol 318 Button
on (press) {
if (_root.customs._currentframe == 1) {
_root.customs.hook.gotoAndStop(2);
}
}
Symbol 320 Button
on (press) {
if (_root.customs._currentframe == 1) {
_root.customs.hook.gotoAndStop(1);
}
}
Symbol 321 MovieClip Frame 1
stop();
Symbol 325 MovieClip Frame 1
stop();
textbox1 = "";
textbox2 = "";
textbox3 = "";
Instance of Symbol 321 MovieClip "hook" in Symbol 325 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._currentframe == 2) {
_root.hook.gotoAndStop(1);
} else if ((_root.hook._currentframe == 1) && (this._currentframe == 1)) {
_root.hook.play();
}
}
Symbol 336 Button
on (release) {
_root.texte.removeMovieClip();
nextFrame();
}
Symbol 340 Button
on (release) {
_root.textex.removeMovieClip();
prevFrame();
}
Symbol 375 Button
on (release) {
pldm128948 = new LoadVars();
pldm128948.namevar = uplayer.text;
pldm128948.scorevar = uscore.text;
pldm128948.mid = 77;
pldm128948.pro = "2c137d1557b0053b7a6d4141f7a5ee59";
pldm128948.sendAndLoad("http://bot.armorstudios.com/hs.php", pldm128948, "POST");
}
on (release) {
gotoAndStop (34);
}
Symbol 377 Button
on (release) {
gotoAndStop ("diffic");
}
on (keyPress "<Space>") {
gotoAndStop ("diffic");
}