Frame 1 (292 B)
Mouse.show();
_quality = "MEDIUM";
fscommand ("trapallkeys", true);
fscommand ("showmenu", false);
_root.totsec = 0;
removeBubbla(numBubblor);
removeEnemies(numEnemies);
menu.fish_start._visible = false;
menu.fish_help._visible = false;
menu.fish_options._visible = false;
stop();
Frame 8 (8 B)
stop();
Frame 13 (24.74 KiB) ● ● ●
function main() {
followPlayer(player, fishDelay);
if (!playerIsAlive) {
Mouse.show();
if (checkRespawnTimer() == true) {
Mouse.hide();
player._visible = true;
playerIsAlive = true;
cursor._visible = false;
if (player.health <= 0) {
end();
}
} else if ((timeToSpawn >= 50) && (player.health > 0)) {
Mouse.hide();
if ((timeToSpawn % 3) == 0) {
player._visible = true;
} else {
player._visible = false;
}
}
}
updateTimer();
updateBg();
moveBubbla();
updateBullets();
updateComboTimer();
moveEnemies();
updateShark();
if (playerIsAlive) {
checkEnemyCollision();
}
if (!bossMode) {
boss_meter._visible = false;
} else if (bossMode) {
boss_meter._visible = true;
updateBossMeter();
salamander.AI();
}
}
function followPlayer(objekt, delay) {
xDistance = (_xmouse - objekt._x) - (objekt._width / 2);
if (xDistance > 0) {
player.dir = "right";
} else {
player.dir = "left";
}
yDistance = (_ymouse - objekt._y) - (objekt._height / 2);
objekt._x = objekt._x + (xDistance * delay);
objekt._y = objekt._y + (yDistance * delay);
}
function addEnemies(number) {
x = 0;
while (x < number) {
duplicateMovieClip ("enemy", "enemy" + x, x);
name = eval ("enemy" + x);
setEnemyVar(name);
x++;
}
}
function setEnemyVar(enemy) {
enemy.dir = random(2);
if (enemy.dir == 0) {
enemy._y = random(stageHeight);
enemy._x = 650;
enemy.speed = random(7 + (level * 0.4)) + 3;
enemy.speed = enemy.speed * -1;
enemy.level = random(maxLevel) + 1;
enemy.fishArray.gotoAndStop(enemy.level);
enemy.fishArray.fish.gotoAndPlay("left");
} else {
enemy._y = random(stageHeight);
enemy._x = -100;
enemy.speed = random(7 + (level * 0.4)) + 2;
enemy.level = random(maxLevel) + 1;
enemy.fishArray.gotoAndStop(enemy.level);
enemy.fishArray.fish.gotoAndPlay("right");
enemy._rotation = 0;
}
}
function moveEnemies() {
y = 0;
while (y < numEnemies) {
toMove = eval ("enemy" + y);
toMove._x = toMove._x + toMove.speed;
if (((toMove._x - (toMove._width / 2)) > stageWidth) && (toMove.dir == 1)) {
setEnemyVar(toMove);
} else if (((toMove._x + (toMove._width / 2)) < -20) && (toMove.dir == 0)) {
setEnemyVar(toMove);
}
y++;
}
}
function removeEnemies(number) {
y = 0;
while (y < number) {
toRemove = eval ("enemy" + y);
removeMovieClip(toRemove);
y++;
}
}
function checkEnemyCollision() {
y = 0;
while (y < numEnemies) {
toCheck = eval ("enemy" + y);
if (player.hitTest(toCheck) == true) {
if (toCheck.level < player.level) {
eatCombo();
toPlay = random(2);
switch (toPlay) {
case 0 :
soundSplash2.start();
break;
case 1 :
soundSplash2.start();
}
player.Exp = player.Exp + (toCheck.level * 9);
score = score + toCheck.level;
updateHungerMeter();
setEnemyVar(toCheck);
if (bossMode == false) {
checkShark();
} else {
fishBone.ammo++;
}
if (player.Exp >= player.expNextLevel) {
fishLevelUp();
}
} else {
healthLost();
if (sharkAttack == true) {
sharkAttack = false;
soundShark.stop();
soundMusik.start(0, 10000);
}
}
}
y++;
}
}
function fishLevelUp() {
player.expNextLevel = player.expNextLevel * 1.5;
player.Exp = 0;
player.level++;
if (player.level < (maxLevel + 1)) {
fishDelay = (((playerMaxLevel + 1) * 0.11) - (player.level * 0.11)) + 0.2;
}
if (fishDelay > 0.6) {
fishDelay = 0.6;
}
player.fishArray.gotoAndStop(player.level);
if ((player.level == (maxLevel + 1)) && (!bossMode)) {
level++;
posToPlayer(text_levelup);
text_center.gotoAndPlay("timeBonus");
initLevel(level);
soundLevelup.start();
if (sharkAttack == true) {
soundShark.stop();
soundMusik.start(0, 10000);
score = score + 5;
}
sharkAttack = false;
} else {
posToPlayer(fish_levelup);
whatSound = random(4);
switch (whatSound) {
case 0 :
soundBlub1.start();
return;
case 1 :
soundBlub2.start();
return;
case 2 :
soundBlub3.start();
return;
case 3 :
soundBlub4.start();
}
}
}
function addBubbla(number) {
y = 0;
while (y < number) {
duplicateMovieClip ("bubbla", "bubbla" + y, y + 100);
name = eval ("bubbla" + y);
setBubblaVar(name);
y++;
}
}
function setBubblaVar(objekt) {
objekt._x = random(stageWidth);
objekt._y = stageHeight;
objekt.speed = (random(6) + 1) * 0.4;
objekt._alpha = random(50) + 50;
scaleProcent = random(115) + 15;
objekt._xscale = scaleProcent;
objekt._yscale = scaleProcent;
}
function moveBubbla(objekt) {
y = 0;
while (y < numBubblor) {
toMove = eval ("bubbla" + y);
toMove._y = toMove._y - toMove.speed;
toMove._alpha = toMove._alpha - 1;
if (toMove._alpha <= 0) {
setBubblaVar(toMove);
}
y++;
}
}
function removeBubbla(number) {
y = 0;
while (y < number) {
toRemove = eval ("bubbla" + y);
removeMovieClip(toRemove);
y++;
}
}
function updateHungerMeter() {
hungerProcent = Math.round((player.Exp / player.expNextLevel) * 100);
hunger_meter.newHunger = hungerProcent;
}
function updateBossMeter() {
healthProcent = Math.round((salamander.health / salamander.maxHealth) * 100);
boss_meter.newHealth = 100 - healthProcent;
}
function updateHealthMeter() {
healthProcent = Math.round((player.Health / player.maxHealth) * 10);
health_meter.newHealth = healthProcent;
}
function updateTimer() {
timeProcent = Math.round((totsec / maxTime) * 100);
timer.gotoAndStop(timeProcent);
if ((timeProcent == 100) && (alarm != 1)) {
soundNoTimeBonus.start(0.5, 0);
text_center.gotoAndPlay("noTimeBonus");
alarm = 1;
}
}
function initLevel(whatLevel) {
if (sharkAttack == true) {
sharkAttack = false;
soundShark.stop();
soundMusik.start(0, 10000);
}
getTimeBonus();
removeBubbla(numBubblor);
removeEnemies(numEnemies);
if ((level % 3) != 0) {
if (bossMode == true) {
bossMode = false;
soundMusikBoss.stop();
soundMusik.start(0, 10000);
player.Exp = 0;
hunger_meter.newHunger = 1;
}
resetVars();
addBubbla(_root.numBubblor);
addEnemies(_root.numEnemies);
moveBg(5, 0.1);
} else {
bossMode = true;
boss_meter.gotoAndStop(1);
resetVars();
numEnemies = 5 + Math.round(level / 2);
addBubbla(_root.numBubblor);
addEnemies(_root.numEnemies);
fishBone.ammo = 0;
moveBg(20, 0.4);
soundShark.stop();
soundMusik.stop();
soundMusikBoss.start(0, 10000);
boss = {};
boss.salamander = {};
boss.current = salamander;
salamander = boss.salamander;
salamander.init = function () {
this.attacking = false;
this.isDead = false;
this.startX = 700;
this.startY = 350;
this.health = 5;
this.maxHealth = 5;
this.clip = _root.attachMovie("salamander", "boss_salamander", 10000);
this.clip._x = this.startX;
this.clip._y = this.startY;
this.head = new object();
this.head.maxRotation = 270;
this.head.minRotation = 90;
this.head.RotationSpeed = 3;
this.head.clip = boss_salamander.head;
this.AC = 0.7;
this.move = 20;
this.tongueAttacking = false;
this.numTongueAttacks = 2;
this.totTongueAttacks = 0;
this.moveAttacking = false;
this.jumpAttacking = false;
this.sideMoving = false;
this.initializing = true;
this.lastMove = null;
};
salamander.init();
salamander.AI = function () {
if (!this.isDead) {
if (this.initializing == true) {
this.swimIn();
} else if ((this.moveAttacking == true) && (playerIsAlive)) {
this.updateMoveAttack();
} else if (this.tongueAttacking && (playerIsAlive)) {
if (player.hitTest(this.head.clip.tongue)) {
healthLost();
this.totTongueAttacks = 0;
}
} else if (this.tongueAttacking == false) {
if (playerIsAlive) {
this.aimPlayer();
} else {
this.idle();
}
}
if (player.hitTest(this.clip.hitBox) && (playerIsAlive)) {
healthLost();
this.moveAttacking = false;
}
if (this.moveAttacking == false) {
salamander.friction();
}
this.detectScreen();
}
this.checkDeath();
};
salamander.detectScreen = function () {
if ((salamander.clip._y > 360) && (this.sideMoving == false)) {
this.sideMove(-2);
} else if ((salamander.clip._y < 35) && (this.sideMoving == false)) {
this.sideMove(2);
}
};
salamander.idle = function () {
var rotation = this.head.clip._rotation;
if (((rotation < 0) && (rotation < -90)) && (rotation > -180)) {
this.head.clip._rotation = this.head.clip._rotation - this.head.RotationSpeed;
} else if ((rotation > 0) && (rotation < 177)) {
this.head.clip._rotation = this.head.clip._rotation + this.head.RotationSpeed;
}
};
salamander.tongueAttack = function () {
this.tongueAttacking = true;
this.head.clip.gotoAndPlay("tongueAttack");
};
salamander.setVel = function (x, y) {
if (x < 0) {
this.Xvel = x;
if (this.XvelStartX == undefined) {
this.XvelStartX = this.clip._x;
}
this.jumpAttacking = true;
this.startX = this.clip._x;
}
if (y != 0) {
this.Yvel = y;
}
};
salamander.sideMove = function (speed) {
this.sideMoving = true;
salamander.setVel(0, speed);
};
salamander.friction = function () {
if (this.legsAnimating == false) {
this.legsAnimating = true;
this.clip.gotoAndPlay("blend_SwimToIdle");
}
if (this.Yvel < 0) {
this.Yvel = this.Yvel + 1;
if ((this.Yvel > 0) || (salamander.clip._y < 35)) {
this.Yvel = 0;
this.sideMoving = false;
}
this.clip._y = this.clip._y + this.Yvel;
} else {
this.Yvel = this.Yvel - 1;
if ((this.Yvel < 0) || ((salamander.clip._y > 360) && (!this.jumpAttacking))) {
this.Yvel = 0;
this.sideMoving = false;
}
this.clip._y = this.clip._y + this.Yvel;
}
if (this.jumpAttacking == true) {
this.Xvel = this.Xvel + 2;
this.clip._x = this.clip._x + this.Xvel;
if (this.clip._x >= this.XvelStartX) {
this.clip._x = this.XvelStartX;
this.jumpAttacking = false;
this.Xvel = 0;
this.clip.gotoAndPlay("blend_SwimToIdle");
}
}
};
salamander.moveAttack = function () {
this.moveAttacking = true;
this.clip.gotoAndStop("swim");
};
salamander.jumpAttack = function () {
this.jumpAttacking = true;
this.clip.gotoAndStop("swim");
salamander.setVel(-37, 0);
};
salamander.updateMoveAttack = function () {
if (this.jumpAttacking == false) {
if ((player._y > this.clip._y) && (player._x > globalHeadX)) {
this.clip._y = this.clip._y + 15;
salamander.setVel(0, 15);
} else if (player._x > globalHeadX) {
this.clip._y = this.clip._y - 15;
salamander.setVel(0, -15);
} else {
this.moveAttacking = false;
this.legsAnimating = false;
}
}
};
salamander.swimIn = function () {
if (this.move > 0) {
this.move = this.move - this.AC;
this.clip._x = this.clip._x - this.move;
this.clip.gotoAndStop("swim");
} else {
this.clip.gotoAndPlay("blend_SwimToIdle");
this.initializing = false;
if (level == 3) {
pause = true;
Mouse.show();
description = attachMovie("bossDescription", "boss_description", 1900);
description._x = 275;
description._y = 200;
}
}
};
salamander.aimPlayer = function () {
var rotation = this.head.clip._rotation;
var AvstandX = (player._x - globalHeadX);
var AvstandY = (player._y - globalHeadY);
var Vinkel = Math.atan2(AvstandY, AvstandX);
Vinkel = Vinkel * 57.2957795130823;
if ((Vinkel < 0) && (Vinkel < -90)) {
this.head.clip._rotation = Vinkel;
} else if (((Vinkel < 0) && (Vinkel > -90)) && (this.jumpAttacking == false)) {
var AvstandYupdate = ((player._y - globalHeadY) - 20);
this.moveAttack();
return(undefined);
}
if ((Vinkel > 0) && (Vinkel > 90)) {
this.head.clip._rotation = Vinkel;
} else if (((Vinkel > 0) && (Vinkel < 90)) && (this.jumpAttacking == false)) {
var AvstandYupdate = (player._y - globalHeadY);
this.moveAttack();
return(undefined);
}
if (this.totTongueAttacks == this.numTongueAttacks) {
this.numTongueAttacks = random(2) + 1;
this.totTongueAttacks = 0;
var speedRan = (random(5) + 15);
if (((player._y < (this.clip._y + 30)) && (player._y > (this.clip._y - 30))) && (this.lastMove != "jumpAttack")) {
this.jumpAttack();
this.lastMove = "jumpAttack";
} else {
if (this.clip._y > 200) {
speedRan = speedRan * -1;
}
salamander.sideMove(speedRan);
this.lastMove = "sideMove";
}
}
var attackChans = random(30);
if ((((attackChans == 1) && (!tongueAttacking)) && (this.Yvel == 0)) && (this.jumpAttacking == false)) {
this.totTongueAttacks++;
this.tongueAttack();
}
};
salamander.checkDeath = function () {
if (this.isDead == true) {
this.gravity = this.gravity + 0.3;
this.clip._x = this.clip._x + 3;
this.clip._y = this.clip._y + (6 + this.gravity);
this.clip._alpha = this.clip._alpha - 4;
boss_meter._visible = false;
if (this.clip._alpha <= 0) {
this.gravity = 0;
hunger_meter.gotoAndStop(1);
posToPlayer(text_levelup);
soundLevelup.start();
player.Exp = 0;
Fishbone.ammo = 0;
level++;
initLevel(level);
delete this;
}
}
};
}
}
function resetVars() {
player.expNextLevel = 35 + (4 * level);
playerMaxLevel = 7;
numEnemies = Math.round(8 + (level * 1.5));
numBubblor = 15;
if (maxlevel < 7) {
if (!bossMode) {
maxLevel = 2 + level;
} else {
maxLevel = level - 2;
}
}
maxTime = 15 + (level * 10);
totsec = 0;
with (player) {
level = 2;
Exp = 0;
fishArray.gotoAndStop(level);
fishArray.fish.gotoAndStop(10);
}
if (player.level < (playerMaxLevel + 1)) {
fishDelay = ((playerMaxLevel + 1) * 0.1) - (player.level * 0.1);
}
}
function getTimeBonus() {
if (_root.level != 1) {
timeBonus = maxTime - totsec;
score = score + timeBonus;
}
}
function end() {
removeBubbla(numBubblor);
removeEnemies(numEnemies);
removeMovieClip(boss_salamander);
writeCookieHighscore();
sharkAttack = false;
stopSounds();
gotoAndPlay (18);
}
function posToPlayer(objekt) {
objekt._x = player._x + 30;
objekt._y = player._y;
objekt._visible = true;
objekt.play();
}
function eatCombo() {
if (combo == 0) {
combo = 1;
oldFishTime = getTimer();
} else if (combo > 0) {
newFishTime = getTimer();
if ((newFishTime - oldFishTime) < 400) {
combo++;
oldFishTime = getTimer();
letter = attachMovie("comboLetter", "comboLetter" + combo, 600 + combo);
letter._x = player._x;
letter._y = player._y;
switch (combo) {
case 2 :
soundCombo3.stop();
soundCombo4.stop();
soundCombo5.stop;
soundCombo2.start();
letter.gotoAndPlay("two");
break;
case 3 :
soundCombo2.stop();
soundCombo4.stop();
soundCombo5.stop;
soundCombo3.start();
letter.gotoAndPlay("three");
break;
case 4 :
soundCombo2.stop();
soundCombo3.stop();
soundCombo5.stop;
soundCombo4.start();
letter.gotoAndPlay("four");
break;
case 5 :
soundCombo2.stop();
soundCombo3.stop();
soundCombo4.stop;
soundCombo5.start();
letter.gotoAndPlay("five");
}
} else {
combo = 0;
}
}
}
function updateComboTimer() {
testNewFishTime = getTimer();
if ((testNewFishTime - oldFishTime) > 400) {
if (combo > 1) {
comboScore = combo;
score = score + comboScore;
}
combo = 0;
}
}
function checkShark() {
if (sharkAttack == true) {
slump = random(6);
if (slump == 0) {
sharkAttack = false;
soundShark.stop();
soundMusik.start(0, 10000);
score = score + 5;
}
} else if (sharkAttack == false) {
slump = random(12);
if (slump == 0) {
sharkAttack = true;
soundMusik.stop();
soundShark.start(0, 10000);
}
}
}
function updateShark() {
if (sharkAttack == true) {
followPlayer(shark, 0.026);
test._x = shark._x;
test._y = shark._y;
var xdist = Math.abs((_xmouse - shark._x) - (shark._width / 2));
var ydist = Math.abs((_ymouse - shark._y) - (shark._height / 2));
var distance = Math.sqrt((xdist * xdist) + (ydist * ydist));
if (distance <= 180) {
shark.dir.gotoAndStop("open");
} else {
shark.dir.gotoAndStop("closed");
}
if (shark._x < player._x) {
shark.gotoAndStop("right");
} else {
shark.gotoAndStop("left");
}
if (player.hitTest(shark) == true) {
sharkAttack = false;
soundShark.stop();
soundMusik.start(0, 10000);
healthLost();
}
} else {
shark.dir.gotoAndStop("away");
}
}
function healthLost() {
bloodSplat();
soundSplash1.start();
player.health--;
if (player.health == 1) {
_root.lifetwo._visible = false;
} else if (player.health == 2) {
_root.lifethree._visible = false;
} else if (player.health == 0) {
_root.lifeone._visible = false;
}
startRespawnTimer(3000);
player._visible = false;
playerIsAlive = false;
updateHealthMeter();
}
function moveBg(Xmove, Xac) {
Bgmoving = true;
bgXmove = Xmove;
bgXac = Xac;
}
function updateBg() {
if ((bgXmove > 0.1) && (Bgmoving == true)) {
bgXmove = bgXmove - bgXac;
fg1._x = fg1._x - bgXmove;
if (fg1._x <= 43) {
fg1._x = 593;
}
} else {
Bgmoving = false;
}
}
function initSounds() {
soundLevelup = new Sound(this);
soundLevelup.attachSound("Levelup");
soundBlub1 = new Sound(this);
soundBlub1.attachSound("blub1");
soundBlub2 = new Sound(this);
soundBlub2.attachSound("blub2");
soundBlub3 = new Sound(this);
soundBlub3.attachSound("blub3");
soundBlub4 = new Sound(this);
soundBlub4.attachSound("blub4");
soundSplash1 = new Sound(this);
soundSplash1.attachSound("splash1");
soundSplash2 = new Sound(this);
soundSplash2.attachSound("splash2");
soundHit = new Sound(this);
soundHit.attachSound("shootHit");
soundNoTimeBonus = new Sound(this);
soundNoTimeBonus.attachSound("noTimeBonus");
soundNoTimeBonus.setVolume(45);
soundCombo2 = new Sound(_root.player);
soundCombo2.attachSound("combo2");
soundCombo3 = new Sound(_root.player);
soundCombo3.attachSound("combo3");
soundCombo4 = new Sound(_root.player);
soundCombo4.attachSound("combo4");
soundCombo5 = new Sound(_root.player);
soundCombo5.attachSound("combo5");
soundCombo5.setVolume(40);
soundShark = new Sound(_root.shark);
soundShark.attachSound("shark");
soundMusik = new Sound(_root.musik);
soundMusik.attachSound("musik");
soundMusikBoss = new Sound(_root.musik);
soundMusikBoss.attachSound("boss");
}
function stopSounds() {
soundCombo2.stop();
soundCombo3.stop();
soundCombo4.stop();
soundCombo5.stop();
soundShark.stop();
soundMusik.stop();
soundMusikBoss.stop();
}
function bloodSplat() {
numBloodSplat++;
deapth = 3000 + numBloodSplat;
temp = _root.attachMovie("blood", "blood" + numBloodSplat, deapth);
temp._x = player._x;
temp._y = player._y;
temp.play();
}
function weapons(name, ammo, maxAmmo, fireSpeedMS, damage) {
this.name = name;
this.ammo = ammo;
this.maxAmmo = maxAmmo;
this.fireSpeed = fireSpeedMS;
this.damage = damage;
}
function addBullet() {
numBullets++;
var name = _root.attachMovie("FishBone", "bullet" + numBullets, depthBullets + numBullets);
setBulletVar(name);
}
function setBulletVar(whatBullet) {
bulletXSpeed = 20;
whatBullet._y = Math.round(player._y);
if (player.dir == "right") {
whatBullet.Xspeed = bulletXSpeed;
whatBullet._x = Math.round(player._x);
} else {
whatBullet.Xspeed = -bulletXSpeed;
whatBullet._xscale = whatBullet._xscale * -1;
whatBullet._x = Math.round(player._x);
}
whatBullet.Yspeed = 0;
whatBullet.damage = 1;
}
function updateBullets() {
activeBullet = 1;
while (activeBullet < (numBullets + 1)) {
temp = eval ("_root.bullet" + activeBullet);
var i = 0;
while (i < numEnemies) {
var toTest = eval ("enemy" + y);
if (temp.hitTest(toTest)) {
}
i++;
}
if (bossMode) {
if (temp.hitTest(salamander.clip.hitBoxHead)) {
salamander.health--;
soundHit.start(0.18, 1);
if (salamander.health <= 0) {
score = score + 100;
salamander.isDead = true;
salamander.clip.gotoAndPlay("die");
}
removeMovieClip(temp);
numBullets--;
whatToRename = 2;
while (whatToRename < (numBullets + 2)) {
temp2 = eval ("_root.bullet" + whatToRename);
temp2._name = "bullet" + (whatToRename - 1);
temp2.swapDepths((depthBullets + whatToRename) - 1);
whatToRename++;
}
}
}
if ((temp._x > 560) || (temp._x < -10)) {
removeMovieClip(temp);
numBullets--;
whatToRename = 2;
while (whatToRename < (numBullets + 2)) {
temp2 = eval ("_root.bullet" + whatToRename);
temp2._name = "bullet" + (whatToRename - 1);
temp2.swapDepths((depthBullets + whatToRename) - 1);
whatToRename++;
}
} else {
temp._x = temp._x + temp.Xspeed;
temp._y = temp._y + temp.Yspeed;
}
activeBullet++;
}
}
function writeCookieHighscore() {
Object.prototype.setCookie = function (c, n, v) {
var so = SharedObject.getLocal(c);
so.data[n] = v;
so.flush();
};
Object.prototype.getCookie = function (c, n) {
var so = SharedObject.getLocal(c);
return(so.data[n]);
};
fishy_score_place1 = getCookie("fishy_first_place", "item1");
fishy_score_place2 = getCookie("fishy_second_place", "item2");
fishy_score_place3 = getCookie("fishy_third_place", "item3");
if (newscore > getCookie("fishy_first_place", "item1")) {
fishy_score_place3 = fishy_score_place2;
fishy_score_place2 = fishy_score_place1;
fishy_score_place1 = newscore;
setCookie("fishy_first_place", "item1", fishy_score_place1);
setCookie("fishy_second_place", "item2", fishy_score_place2);
setCookie("fishy_third_place", "item3", fishy_score_place3);
} else if (newscore > getCookie("fishy_second_place", "item2")) {
fishy_score_place3 = fishy_score_place2;
fishy_score_place2 = newscore;
setCookie("fishy_first_place", "item1", fishy_score_place1);
setCookie("fishy_second_place", "item2", fishy_score_place2);
setCookie("fishy_third_place", "item3", fishy_score_place3);
} else if (newscore > getCookie("fishy_third_place", "item3")) {
fishy_score_place3 = newscore;
setCookie("fishy_third_place", "item3", fishy_score_place3);
}
fishy_score_place1 = getCookie("fishy_first_place", "item1");
fishy_score_place2 = getCookie("fishy_second_place", "item2");
fishy_score_place3 = getCookie("fishy_third_place", "item3");
}
someListener = new Object();
someListener.onMouseDown = function () {
if (pause == true) {
pause = false;
removeMovieClip(boss_description);
Mouse.hide();
}
Fishbone.fire();
};
Mouse.addListener(someListener);
Mouse.hide();
enemy._visible = false;
_root.onEnterFrame = function () {
if ((pause == false) || (pause == null)) {
main();
}
};
startRespawnTimer = function (test) {
timerstarted = true;
startTime = getTimer();
finishTime = test;
};
checkRespawnTimer = function () {
var currentTime = getTimer();
var timeElapsed = (currentTime - startTime);
_root.timeToSpawn = Math.round((timeElapsed / finishTime) * 100);
if (timeElapsed > finishTime) {
return(true);
}
return(false);
};
salamander.timer = {};
salamander.startBossTimer = function (test) {
this.timerstarted = true;
this.startTime = getTimer();
this.finishTime = test;
};
salamander.checkBossTimer = function () {
this.currentTime = getTimer();
this.timeElapsed = this.currentTime - this.startTime;
if (this.timeElapsed > this.finishTime) {
return(true);
}
return(false);
};
Fishbone = new weapons("Fishbone", 0, 1000, 500, 1);
depthBullets = 20000;
weapons.prototype.fire = function () {
if (((this.ammo > 0) && (this.checkFireTimer())) && (playerIsAlive)) {
this.startFireTimer();
this.ammo = this.ammo - 1;
addBullet();
}
};
weapons.prototype.startFireTimer = function () {
this.oldShootTime = getTimer();
};
weapons.prototype.checkFireTimer = function () {
this.newShootTime = getTimer();
this.timeElapsed = this.newShootTime - this.oldShootTime;
if (this.timeElapsed > this.fireSpeed) {
return(true);
}
return(false);
};
Instance of Symbol 185 MovieClip "player" in Frame 13 (791 B)
onClipEvent (load) {
level = 1;
Exp = 0;
fishArray.gotoAndStop(level);
fishArray.fish.gotoAndStop(10);
_root.playerIsAlive = true;
_root.stageHeight = 400;
_root.stageWidth = 550;
_root.combo = 0;
_root.totsec = 0;
_root.score = 0;
_root.player.health = 3;
_root.newscore = 0;
_root.maxlevel = 0;
_root.level = 1;
_root.initSounds();
_root.initLevel(_root.level);
_root.alarm = 0;
_root.pausesLeft = 3;
_root.soundMusik.start(0, 10000);
_root.Bgmoving = false;
_root.bossMode = false;
_root.cursor._visible = false;
_root.sharkAttack = false;
_root.lifeone._visible = true;
_root.lifetwo._visible = true;
_root.lifethree._visible = true;
}
onClipEvent (mouseMove) {
if (_root._xmouse < (_x + (_width / 2))) {
gotoAndStop (2);
} else {
gotoAndStop (1);
}
}
Instance of Symbol 208 MovieClip "hunger_meter" in Frame 13 (196 B)
onClipEvent (enterFrame) {
if (_currentframe < newHunger) {
nextFrame();
nextFrame();
}
if ((_currentframe >= 100) || (newHunger >= 100)) {
gotoAndStop (1);
newHunger = 1;
}
}
Instance of Symbol 210 MovieClip "text_levelup" in Frame 13 (46 B)
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 226 MovieClip "scoreboard" in Frame 13 (95 B)
onClipEvent (enterFrame) {
if (_root.score > 0) {
_root.newscore++;
_root.score--;
}
}
Instance of Symbol 236 MovieClip "boss_meter" in Frame 13 (196 B)
onClipEvent (enterFrame) {
if (_currentframe < newHealth) {
nextFrame();
nextFrame();
}
if ((_currentframe >= 100) || (newHealth >= 100)) {
gotoAndStop (1);
newHealth = 1;
}
}
Frame 18 (168 B)
Mouse.show();
system.UsecodePage = true;
delete loaded;
loadVariables ("http://www.itgymnasiet-k.net/it13/Xelius/Flash/spel/fishy/asp/getscore.asp", _root, "POST");
Frame 19 (61 B)
if (loaded == "true") {
gotoAndStop(_currentframe + 2);
}
Frame 20 (32 B)
gotoAndPlay(_currentframe - 1);
Frame 21 (46 B)
unescape(_root.msg);
delete loaded;
stop();
Frame 22 (125 B)
score = newscore;
loadVariables ("http://www.itgymnasiet-k.net/it13/Xelius/Flash/spel/fishy/asp/fishy.asp", _root, "POST");
Frame 23 (53 B)
if (_root.loaded == "true") {
gotoAndStop (25);
}
Frame 24 (18 B)
gotoAndPlay (23);
Frame 25 (73 B)
delete _root.loaded;
_root.end_container.end.gotoAndPlay("backToMenu");
Symbol 33 MovieClip Frame 1 (51 B)
_root.salamander.tongueAttacking = false;
stop();
Symbol 33 MovieClip Frame 46 (17 B)
gotoAndStop (1);
Symbol 39 MovieClip [salamander] Frame 1 (94 B)
head_point._visible = false;
hitBox._visible = false;
hitBoxHead._visible = false;
stop();
Instance of Symbol 33 MovieClip "head" in Symbol 39 MovieClip [salamander] Frame 1 (239 B)
onClipEvent (mouseMove) {
Position_head = {};
Position_head.x = _parent.head_point._x;
Position_head.y = _parent.head_point._y;
localToGlobal(Position_head);
_root.globalHeadX = Position_head.x;
_root.globalHeadY = Position_head.y;
}
Symbol 39 MovieClip [salamander] Frame 16 (17 B)
gotoAndStop (1);
Symbol 39 MovieClip [salamander] Frame 17 (8 B)
play();
Symbol 39 MovieClip [salamander] Frame 72 (23 B)
removeMovieClip(this);
Symbol 44 MovieClip [blood] Frame 10 (49 B)
_root.numBloodSplat = 0;
removeMovieClip(this);
Symbol 53 MovieClip [comboLetter] Frame 1 (8 B)
stop();
Symbol 53 MovieClip [comboLetter] Frame 2 (8 B)
play();
Symbol 53 MovieClip [comboLetter] Frame 14 (23 B)
removeMovieClip(this);
Symbol 53 MovieClip [comboLetter] Frame 16 (8 B)
play();
Symbol 53 MovieClip [comboLetter] Frame 31 (23 B)
removeMovieClip(this);
Symbol 53 MovieClip [comboLetter] Frame 33 (8 B)
play();
Symbol 53 MovieClip [comboLetter] Frame 51 (23 B)
removeMovieClip(this);
Symbol 53 MovieClip [comboLetter] Frame 53 (8 B)
play();
Symbol 53 MovieClip [comboLetter] Frame 83 (23 B)
removeMovieClip(this);
Symbol 73 Button (44 B)
on (release) {
_root.gotoAndStop("menu");
}
Symbol 74 MovieClip Frame 1 (193 B)
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop (3);
}
Symbol 74 MovieClip Frame 2 (17 B)
gotoAndPlay (1);
Symbol 101 MovieClip Frame 1 (8 B)
stop();
Symbol 101 MovieClip Frame 2 (8 B)
play();
Symbol 101 MovieClip Frame 12 (8 B)
stop();
Symbol 101 MovieClip Frame 13 (8 B)
play();
Symbol 101 MovieClip Frame 22 (17 B)
gotoAndStop (1);
Symbol 102 MovieClip Frame 81 (35 B)
guldfisk.gotoAndPlay("turn_left");
Symbol 102 MovieClip Frame 174 (36 B)
guldfisk.gotoAndPlay("turn_right");
Symbol 102 MovieClip Frame 183 (17 B)
gotoAndPlay (1);
Instance of Symbol 102 MovieClip "fish" in Symbol 105 MovieClip Frame 1 (324 B)
onClipEvent (load) {
gotoAndPlay(_root.fishPosition);
if ((_root.fishPosition >= 80) && (_root.fishPosition < 174)) {
this.guldfisk.gotoAndStop("left");
}
}
onClipEvent (enterFrame) {
gotoAndPlay(_root.fishPosition);
_root.fishPosition++;
if (_root.fishPosition == 183) {
_root.fishPosition = 1;
}
}
Symbol 110 MovieClip Frame 10 (8 B)
stop();
Symbol 110 MovieClip Frame 20 (8 B)
stop();
Symbol 115 MovieClip Frame 10 (8 B)
stop();
Symbol 115 MovieClip Frame 20 (8 B)
stop();
Symbol 120 MovieClip Frame 10 (8 B)
stop();
Symbol 120 MovieClip Frame 20 (8 B)
stop();
Symbol 125 Button (268 B)
on (release) {
removeBubbla(numBubblor);
with (_root) {
gotoAndStop("game");
}
}
on (rollOver) {
fish_start._visible = true;
fish_help._visible = false;
fish_options._visible = false;
fish_start.gotoAndPlay(1);
}
on (rollOut) {
fish_start._visible = false;
}
Symbol 129 Button (215 B)
on (release) {
gotoAndStop (2);
}
on (rollOver) {
fish_start._visible = false;
fish_help._visible = true;
fish_options._visible = false;
fish_help.gotoAndPlay(1);
}
on (rollOut) {
fish_help._visible = false;
}
Symbol 133 Button (221 B)
on (release) {
gotoAndStop (3);
}
on (rollOver) {
fish_start._visible = false;
fish_help._visible = false;
fish_options._visible = true;
fish_options.gotoAndPlay(1);
}
on (rollOut) {
fish_options._visible = false;
}
Symbol 141 MovieClip Frame 1 (51 B)
bubbla4.gotoAndPlay(20);
bubbla2.gotoAndPlay(5);
Symbol 141 MovieClip Frame 40 (8 B)
stop();
Symbol 146 Button (41 B)
on (release) {
_root.menu.help.play();
}
Symbol 147 MovieClip Frame 25 (8 B)
stop();
Symbol 148 MovieClip Frame 20 (8 B)
stop();
Symbol 148 MovieClip Frame 40 (32 B)
_root.menu.gotoAndStop("main");
Symbol 158 Button (43 B)
on (release) {
_root.menu.scores.play();
}
Symbol 159 MovieClip Frame 20 (433 B)
Object.prototype.setCookie = function (c, n, v) {
var so = SharedObject.getLocal(c);
so.data[n] = v;
so.flush();
};
Object.prototype.getCookie = function (c, n) {
var so = SharedObject.getLocal(c);
return(so.data[n]);
};
fishy_score_place1 = getCookie("fishy_first_place", "item1");
fishy_score_place2 = getCookie("fishy_second_place", "item2");
fishy_score_place3 = getCookie("fishy_third_place", "item3");
stop();
Symbol 159 MovieClip Frame 40 (32 B)
_root.menu.gotoAndStop("main");
Symbol 160 MovieClip Frame 1 (99 B)
fish_start._visible = false;
fish_help._visible = false;
fish_options._visible = false;
stop();
Symbol 163 MovieClip Frame 1 (8 B)
stop();
Symbol 168 MovieClip Frame 2 (8 B)
stop();
Symbol 168 MovieClip Frame 4 (8 B)
stop();
Symbol 173 MovieClip Frame 10 (8 B)
stop();
Symbol 173 MovieClip Frame 20 (8 B)
stop();
Symbol 178 MovieClip Frame 10 (8 B)
stop();
Symbol 178 MovieClip Frame 20 (8 B)
stop();
Symbol 183 MovieClip Frame 10 (8 B)
stop();
Symbol 183 MovieClip Frame 20 (8 B)
stop();
Symbol 184 MovieClip Frame 1 (8 B)
stop();
Symbol 185 MovieClip Frame 1 (8 B)
stop();
Symbol 190 MovieClip Frame 1 (8 B)
stop();
Symbol 194 MovieClip Frame 15 (173 B)
slump = random(2);
if (slump == 0) {
_root.shark._x = -200;
_root.shark._y = random(400);
} else {
_root.shark._x = 750;
_root.shark._y = random(400);
}
stop();
Symbol 195 MovieClip Frame 1 (8 B)
stop();
Symbol 195 MovieClip Frame 2 (8 B)
stop();
Symbol 195 MovieClip Frame 3 (35 B)
sharkAway.gotoAndPlay(1);
stop();
Symbol 196 MovieClip Frame 1 (30 B)
direction = "right";
stop();
Symbol 196 MovieClip Frame 7 (29 B)
direction = "left";
stop();
Symbol 208 MovieClip Frame 1 (8 B)
stop();
Symbol 210 MovieClip Frame 1 (33 B)
bubblor.gotoAndStop(1);
stop();
Symbol 210 MovieClip Frame 2 (16 B)
bubblor.play();
Symbol 210 MovieClip Frame 40 (23 B)
this._visible = false;
Symbol 213 MovieClip Frame 1 (315 B)
function timer() {
if (_root.totsec < _root.maxTime) {
newTime = getTimer();
if ((newTime - oldTime) > 1000) {
_root.totsec++;
oldTime = getTimer();
}
}
}
function init() {
_root.totsec = 0;
}
stop();
init();
OldTime = getTimer();
mc1.onEnterFrame = function () {
timer();
};
Symbol 223 MovieClip Frame 1 (8 B)
stop();
Symbol 227 MovieClip Frame 1 (33 B)
bubblor.gotoAndStop(1);
stop();
Symbol 227 MovieClip Frame 2 (16 B)
bubblor.play();
Symbol 227 MovieClip Frame 40 (23 B)
this._visible = false;
Symbol 230 Button (229 B)
on (keyPress "p") {
if (((pause == false) && (pausesLeft > 0)) || (pause == null)) {
pausesLeft--;
pause = true;
pauseMessage.gotoAndStop("paused");
} else {
pause = false;
pauseMessage.gotoAndStop(1);
}
}
Symbol 236 MovieClip Frame 1 (8 B)
stop();
Symbol 240 MovieClip Frame 1 (8 B)
stop();
Symbol 240 MovieClip Frame 35 (8 B)
stop();
Symbol 243 Button (32 B)
on (press) {
gotoAndPlay (4);
}
Symbol 248 Button (25 B)
on (release) {
play();
}
Symbol 251 MovieClip Frame 1 (8 B)
stop();
Symbol 259 Button (56 B)
on (release) {
_root.gotoAndPlay("loadVar");
play();
}
Symbol 261 MovieClip Frame 25 (8 B)
stop();
Symbol 263 Button (23 B)
on (press) {
play();
}
Symbol 269 MovieClip Frame 1 (8 B)
stop();
Symbol 269 MovieClip Frame 2 (8 B)
stop();
Symbol 269 MovieClip Frame 3 (8 B)
stop();
Symbol 269 MovieClip Frame 24 (27 B)
_root.gotoAndStop("menu");