Frame 1
_root.musicon = true;
onEnterFrame = function () {
urlStart = _url.indexOf("://") + 3;
urlEnd = _url.indexOf("/", urlStart);
domain = _url.substring(urlStart, urlEnd);
LastDot = domain.lastIndexOf(".") - 1;
domEnd = domain.lastIndexOf(".", LastDot) + 1;
domain = domain.substring(domEnd, domain.length);
if (domain != "anothersoft.net") {
_root.falsedomain = true;
_root.falsedomain = false;
} else {
_root.falsedomain = false;
}
};
gamekeys = {mousemove:false, leftB:65, rightB:68, downB:83, upB:87, throwB:16, jumpB:32, spewB:81, pauseB:90, reportB:81};
_root.difficulty = "medium";
Stage.showMenu = false;
_root.recordlevel = 1;
_root.mousemoveD = "off";
stop();
Instance of Symbol 51 MovieClip [char_mc] "loadchar" in Frame 1
onClipEvent (enterFrame) {
xDistance = _root._xmouse - this._x;
yDistance = _root._ymouse - this._y;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
xDest = _root._xmouse;
yDest = _root._ymouse;
spacedown = false;
if (Key.isDown(_root.gamekeys.jumpB)) {
spacedown = true;
}
if (spacedown == false) {
if (xDistance < 0) {
xTemp = xDistance * -1;
} else {
xTempt = xDistance;
}
if ((xDistance > 20) or (xDistance < -20)) {
this._x = this._x + Math.round((xDest - this._x) * 0.1);
}
if ((yDistance < -20) or (yDistance > 20)) {
this._y = this._y + Math.round((yDest - this._y) * 0.1);
}
}
if (_root.tutburst == true) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 57 MovieClip in Frame 1
onClipEvent (load) {
var bevel = (new flash.filters.BevelFilter());
bevel.type = inner;
bevel.blurY = 0;
bevel.blurX = 5;
bevel.knockout = true;
bevel.strength = 2;
bevel.quality = 1;
bevel.shadowAlpha = 1;
bevel.shadowColor = 16777215 /* 0xFFFFFF */;
bevel.highlightAlpha = 1;
bevel.highlightColor = 16777215 /* 0xFFFFFF */;
bevel.angle = 45;
bevel.distance = 1;
}
onClipEvent (enterFrame) {
bevel.angle = _root._xmouse + _root._ymouse;
this.filters = [bevel];
}
Instance of Symbol 77 MovieClip [mouseTargetMC] in Frame 1
onClipEvent (load) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
_root.tutburst = false;
cooldown = 0;
}
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
cooldown = cooldown - 1;
onMouseDown = function () {
if ((_root.tutburst == false) and (cooldown < 1)) {
_root.tutburst = true;
cooldown = 32;
}
};
if (cooldown < 20) {
_root.tutburst = false;
}
if (_root.tutburst == true) {
this.gotoAndStop(2);
} else if (cooldown < 1) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(3);
}
}
Frame 2
stop();
Mouse.show();
attachMovie("screen", "screen", 19000);
screen._x = -600;
screen._y = -200;
Frame 3
stop();
Frame 4
stop();
_root.flaketimer = 0;
_root.flakes = 0;
Mouse.show();
_root.fadinout = false;
_root.fadevolume = 100;
bgSound.stop();
bgSound = new Sound(this);
bgSound.attachSound("menusong");
if (_root.musicon == true) {
bgSound.start(1, 9999);
bgSound.setVolume(100);
} else {
bgSound.start(1, 9999);
bgSound.setVolume(0);
}
_root.bubblepop.removeMovieClip();
_root.fadeto.removeMovieClip();
_root.levelinfo.removeMovieClip();
_root.char_mc.removeMovieClip();
_root.thesea.removeMovieClip();
_root.charhit.removeMovieClip();
_root.enemyhit.removeMovieClip();
_root.enemyhit2.removeMovieClip();
_root.enemyhit3.removeMovieClip();
_root.enemyhit4.removeMovieClip();
_root.enemyhit5.removeMovieClip();
_root.mouseTargetMC.removeMovieClip();
_root.HUD.removeMovieClip();
_root.tile1.removeMovieClip();
_root.tile2.removeMovieClip();
_root.tile3.removeMovieClip();
_root.object1.removeMovieClip();
_root.object2.removeMovieClip();
_root.object3.removeMovieClip();
_root.object4.removeMovieClip();
_root.object5.removeMovieClip();
_root.object6.removeMovieClip();
var D = 0;
while (D < enemies.length) {
_root["enemymc" + D].removeMovieClip();
if (enemies[D][0] == 2) {
_root["babyhit" + enemies[D][1]].removeMovieClip();
}
D++;
}
var D = 0;
while (D < (pointsmcv + 1)) {
_root["points_mc" + D].removeMovieClip();
D++;
}
Instance of Symbol 380 MovieClip [flake] in Frame 4
onClipEvent (enterFrame) {
if ((lastmousex != _root._xmouse) or (lastmousey != _root._ymouse)) {
_root.flaketimer = _root.flaketimer + 1;
}
lastmousex = _root._xmouse;
lastmousey = _root._ymouse;
if (_root.flaketimer > 2) {
_root.flakes = _root.flakes + 1;
scaler = random(40);
scaler2 = random(20);
scaler3 = random(20);
scaler4 = random(90);
_root.attachMovie("flake", "flake" + _root.flakes, 100 + _root.flakes);
_root["flake" + _root.flakes]._x = (_root._xmouse + scaler2) - 10;
_root["flake" + _root.flakes]._y = (_root._ymouse + scaler3) - 10;
_root["flake" + _root.flakes]._xscale = scaler + 20;
_root["flake" + _root.flakes]._yscale = scaler + 20;
_root["flake" + _root.flakes]._rotation = scaler4;
_root.flaketimer = 1;
}
var D = 0;
while (D < (_root.flakes + 3)) {
movex = random(5);
if (movex == 1) {
_root["flake" + D]._x = _root["flake" + D]._x - 1;
}
if (movex == 2) {
_root["flake" + D]._x = _root["flake" + D]._x + 1;
}
_root["flake" + D]._y = _root["flake" + D]._y + 1;
if (_root["flake" + D]._y > 350) {
_root["flake" + D].removeMovieClip();
}
D++;
}
}
Instance of Symbol 388 MovieClip in Frame 4
onClipEvent (load) {
amiplaying = false;
this.stop();
}
onClipEvent (enterFrame) {
if ((_root.musicon == true) and (amiplaying == false)) {
_root.bgSound.setVolume(100);
amiplaying = true;
} else if (_root.musicon == false) {
_root.bgSound.setVolume(0);
amiplaying = false;
}
}
Instance of Symbol 104 MovieClip "fadez" in Frame 4
onClipEvent (enterFrame) {
if (_root.fadinout == true) {
this._alpha = this._alpha + 5;
_root.fadevolume = _root.fadevolume - 5;
if (_root.musicon == true) {
_root.bgSound.setVolume(_root.fadevolume);
}
if (this._alpha > 99) {
_root.gotoAndStop(5);
}
}
}
Frame 5
function spawnfishy() {
var _local2 = 0;
while (_local2 < enemies.length) {
if ((enemies[_local2][5] == false) and (enemies[_local2][6] < 1)) {
if ((enemies[_local2][3] < (world.charx + 1800)) and (enemies[_local2][3] > (world.charx - 1200))) {
if ((((enemies[_local2][3] > (world.charx + 600)) or (enemies[_local2][3] < (world.charx - 0))) or (enemies[_local2][4] < (world.chary - 0))) or (enemies[_local2][4] > (world.chary + 400))) {
if (((enemies[_local2][0] == 0) or (enemies[_local2][0] == 4)) or (enemies[_local2][0] == 7)) {
_root.attachMovie("enemy", "enemymc" + _local2, 1000 + _local2);
} else {
_root.attachMovie("enemy", "enemymc" + _local2, 3050 + _local2);
}
_root["enemymc" + _local2]._x = enemies[_local2][3] - world.charx;
_root["enemymc" + _local2]._y = enemies[_local2][4] - world.chary;
_root["enemymc" + _local2].gotoAndStop(enemies[_local2][2]);
enemies[_local2][5] = true;
if (enemies[_local2][0] == 0) {
randomg = random(300);
if (randomg < 100) {
_root["enemymc" + _local2].gotoAndStop(1);
enemies[_local2][1] = 5;
}
if (randomg > 99) {
_root["enemymc" + _local2].gotoAndStop(2);
enemies[_local2][1] = 10;
}
if (randomg > 149) {
_root["enemymc" + _local2].gotoAndStop(3);
enemies[_local2][1] = 20;
}
if (randomg > 199) {
_root["enemymc" + _local2].gotoAndStop(4);
enemies[_local2][1] = 30;
}
if (randomg > 229) {
_root["enemymc" + _local2].gotoAndStop(5);
enemies[_local2][1] = 50;
}
if (randomg > 249) {
_root["enemymc" + _local2].gotoAndStop(6);
enemies[_local2][1] = 75;
}
if (randomg > 269) {
_root["enemymc" + _local2].gotoAndStop(7);
enemies[_local2][1] = 100;
}
if (randomg > 284) {
_root["enemymc" + _local2].gotoAndStop(8);
enemies[_local2][1] = 150;
}
if (randomg > 294) {
_root["enemymc" + _local2].gotoAndStop(9);
enemies[_local2][1] = 250;
}
}
}
}
}
_local2++;
}
}
function dancefishy() {
pengsdanger = false;
var _local3 = 0;
while (_local3 < enemies.length) {
enemid = _local3;
if (enemies[_local3][5] == true) {
xDistance = (charhit._x - _root["enemymc" + enemid]._x) + 20;
yDistance = (charhit._y - _root["enemymc" + enemid]._y) + 20;
if ((((((xDistance < 600) and (xDistance > -600)) and (yDistance < 600)) and (yDistance > -600)) or (enemies[_local3][0] == 7)) or (enemies[_local3][0] == 2)) {
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
if ((enemies[_local3][0] != 4) and (enemies[_local3][0] != 5)) {
_root["enemymc" + enemid]._rotation = charDirection;
if ((_root["enemymc" + enemid]._rotation < 90) and (_root["enemymc" + enemid]._rotation > -90)) {
_root["enemymc" + enemid]._yscale = 100;
} else {
_root["enemymc" + enemid]._yscale = -100;
}
}
if (enemies[_local3][0] == 0) {
stunned = false;
xdist = _root["enemymc" + _local3]._x - bubblepop._x;
ydist = _root["enemymc" + _local3]._y - bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (world.burst == true)) {
if ((ydist < 40) and (ydist > -40)) {
enemies[_local3][6] = stunduration;
}
}
if (enemies[_local3][6] > 0) {
stunned = true;
enemies[_local3][6] = enemies[_local3][6] - 1;
}
xdist = _root["enemymc" + enemid]._x - charhit._x;
ydist = _root["enemymc" + enemid]._y - charhit._y;
closetome = false;
if (((xdist < 200) and (xdist > -200)) and (stunned == false)) {
if ((ydist < 200) and (ydist > -200)) {
closetome = true;
_root["enemymc" + enemid].mc.gotoAndStop(1);
if (xdist > 10) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][7];
}
if (xdist < -10) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - enemies[_local3][7];
}
if (ydist > 10) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][7];
}
if (ydist < -10) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - enemies[_local3][7];
}
}
}
closetome2 = false;
if ((xdist < 300) and (xdist > -300)) {
if ((ydist < 300) and (ydist > -300)) {
closetome2 = true;
}
}
if ((closetome2 == false) and (stunned == false)) {
_root["enemymc" + enemid].mc.gotoAndStop(2);
xdest = enemies[_local3][3] - world.charx;
ydest = enemies[_local3][4] - world.chary;
if (xdest > _root["enemymc" + enemid]._x) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][7];
}
if (xdest < _root["enemymc" + enemid]._x) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - enemies[_local3][7];
}
if (ydest > _root["enemymc" + enemid]._y) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][7];
}
if (ydest < _root["enemymc" + enemid]._y) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - enemies[_local3][7];
}
}
enemyhit._x = _root["enemymc" + enemid]._x;
enemyhit._y = _root["enemymc" + enemid]._y;
enemydist = enemyhit._x - charhit._x;
var _local6 = new flash.geom.Point(enemyhit._x, enemyhit._y);
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
_root["enemymc" + enemid].removeMovieClip();
if ((_root.musicon == true) and (_root.twingdone == true)) {
_root.twing.gotoAndPlay(2);
_root.twingdone = false;
}
if (enemies[_local3][1] == 250) {
_root.lives = _root.lives + 1;
pointsmcv = pointsmcv + 1;
attachMovie("points_mc2", "points_mc" + pointsmcv, pointsmcv + 9000);
_root["points_mc" + pointsmcv].mc.numba.text = "Extra Life! ";
_root["points_mc" + pointsmcv]._x = enemyhit._x - 30;
_root["points_mc" + pointsmcv]._y = enemyhit._y + 30;
_root["points_mc" + pointsmcv].onEnterFrame = function () {
this._alpha = this._alpha - 1;
if (this._alpha < 20) {
this.removeMovieClip();
}
};
}
enemies[_local3][5] = false;
enemies[_local3][6] = 180;
pointsmcv = pointsmcv + 1;
if (world.life < 100) {
world.life = world.life + Math.round(enemies[_local3][1] / 5);
}
if (world.life > 100) {
world.life = 100;
}
attachMovie("points_mc", "points_mc" + pointsmcv, pointsmcv + 9000);
_root["points_mc" + pointsmcv].mc.numba.text = enemies[_local3][1];
_root["points_mc" + pointsmcv]._x = enemyhit._x;
_root["points_mc" + pointsmcv]._y = enemyhit._y;
_root.eaten = _root.eaten + enemies[_local3][1];
enemies[_local3][1] = 1;
_root["points_mc" + pointsmcv].onEnterFrame = function () {
this._alpha = this._alpha - 1;
if (this._alpha < 20) {
this.removeMovieClip();
}
};
}
}
if (enemies[_local3][0] == 1) {
if (enemies[_local3][8] == "alive") {
stunned = false;
xdist = _root["enemymc" + _local3]._x - bubblepop._x;
ydist = _root["enemymc" + _local3]._y - bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (world.burst == true)) {
if ((ydist < 40) and (ydist > -40)) {
enemies[_local3][6] = stunduration;
}
}
if (enemies[_local3][6] > 0) {
stunned = true;
enemies[_local3][6] = enemies[_local3][6] - 1;
}
xdist = (_root["enemymc" + enemid]._x - charhit._x) - 20;
ydist = (_root["enemymc" + enemid]._y - charhit._y) - 20;
imovedx = 0;
imovedy = 0;
closetome = false;
closetobaby = false;
closestx = 9999;
closesty = 9999;
var _local4 = 0;
while (_local4 < enemies.length) {
if ((enemies[_local4][0] == 2) and (enemies[_local4][9] == false)) {
xdist2 = _root["enemymc" + enemid]._x - _root["babyhit" + enemies[_local4][1]]._x;
ydist2 = _root["enemymc" + enemid]._y - _root["babyhit" + enemies[_local4][1]]._y;
if ((xdist2 < 150) and (xdist2 > -150)) {
if ((ydist2 < 150) and (ydist2 > -150)) {
closetobaby = true;
if (xdist2 < 0) {
checkerx = xdist2 * -1;
} else {
checkerx = xdist2;
}
if (ydist2 < 0) {
checkery = ydist2 * -1;
} else {
checkery = ydist2;
}
checkerclosest = checkery + checkerx;
if (closestx < 0) {
checkerx2 = closestx * -1;
} else {
checkerx2 = closestx;
}
if (closesty < 0) {
checkery2 = closesty * -1;
} else {
checkery2 = closesty;
}
checkerclosest2 = checkery2 + checkerx2;
if (checkerclosest < checkerclosest2) {
closestx = xdist2;
closesty = ydist2;
}
}
}
}
_local4++;
}
if (((closetobaby == true) and (stunned == false)) and (_root.difficulty != "easy")) {
_root["enemymc" + enemid].mc.gotoAndStop(1);
xdist2 = closestx;
ydist2 = closesty;
pengsdanger = true;
if (xdist2 > 2) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - enemies[_local3][7];
imovedx = -1 * enemies[_local3][7];
}
if (xdist2 < -2) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][7];
imovedx = enemies[_local3][7];
}
if (ydist2 > 2) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - enemies[_local3][7];
imovedy = -1 * enemies[_local3][7];
}
if (ydist2 < -2) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][7];
imovedy = enemies[_local3][7];
}
xDistance = xdist2;
yDistance = ydist2;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
_root["enemymc" + enemid]._rotation = charDirection;
if ((_root["enemymc" + enemid]._rotation < 90) and (_root["enemymc" + enemid]._rotation > -90)) {
_root["enemymc" + enemid]._yscale = 100;
} else {
_root["enemymc" + enemid]._yscale = -100;
}
}
if (_root.difficulty == "easy") {
closetobaby = false;
}
if ((((xdist < 600) and (xdist > -600)) and (closetobaby == false)) and (stunned == false)) {
if ((ydist < 400) and (ydist > -400)) {
closetome = true;
_root["enemymc" + enemid].mc.gotoAndStop(2);
if (xdist > 10) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - enemies[_local3][7];
imovedx = -1 * enemies[_local3][7];
}
if (xdist < -10) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][7];
imovedx = enemies[_local3][7];
}
if (ydist > 10) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - enemies[_local3][7];
imovedy = -1 * enemies[_local3][7];
}
if (ydist < -10) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][7];
imovedy = enemies[_local3][7];
}
}
}
if (((closetome == false) and (closetobaby == false)) and (stunned == false)) {
_root["enemymc" + enemid].mc.gotoAndStop(1);
xdest = enemies[_local3][3] - world.charx;
ydest = enemies[_local3][4] - world.chary;
if (xdest > _root["enemymc" + enemid]._x) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][7];
}
if (xdest < _root["enemymc" + enemid]._x) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - enemies[_local3][7];
}
if (ydest > _root["enemymc" + enemid]._y) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][7];
}
if (ydest < _root["enemymc" + enemid]._y) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - enemies[_local3][7];
}
}
enemyhit2._x = _root["enemymc" + enemid]._x - 15;
enemyhit2._y = _root["enemymc" + enemid]._y - 15;
var _local6 = new flash.geom.Point(enemyhit2._x, enemyhit2._y);
colidedchar = false;
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit2.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
colidedchar = true;
}
_local7 = new flash.geom.Point(charhit2._x, charhit2._y);
if (enemyhit2.bmp.hitTest(_local6, 128, charhit2.bmp, _local7, 128)) {
colidedchar = true;
}
if (colidedchar == true) {
if (world.burst == true) {
if ((_root.musicon == true) and (_root.hitdone == true)) {
_root.hitz.gotoAndPlay(2);
_root.hitdone = false;
}
enemies[_local3][8] = 10;
pointsmcv = pointsmcv + 1;
attachMovie("points_mc", "points_mc" + pointsmcv, pointsmcv + 9000);
_root["points_mc" + pointsmcv].mc.numba.text = "50";
_root["points_mc" + pointsmcv]._x = enemyhit2._x;
_root["points_mc" + pointsmcv]._y = enemyhit2._y;
_root.eaten = _root.eaten + 50;
_root["points_mc" + pointsmcv].onEnterFrame = function () {
this._alpha = this._alpha - 1;
if (this._alpha < 20) {
this.removeMovieClip();
}
};
} else if (stunned == false) {
world.life = world.life - (1 * world.damagemulti);
_root.damagelast = _root.damagelast + 1;
if ((_root.musicon == true) and (_root.chirp5done == true)) {
_root.chirp5.gotoAndPlay(2);
_root.chirp5done = false;
}
}
}
_local4 = 0;
while (_local4 < enemies.length) {
if (((enemies[_local4][0] == 2) and (enemies[_local4][5] == true)) and (stunned == false)) {
_local7 = new flash.geom.Point(_root["babyhit" + enemies[_local4][1]]._x, _root["babyhit" + enemies[_local4][1]]._y);
if (enemyhit2.bmp.hitTest(_local6, 128, _root["babyhit" + enemies[_local4][1]].bmp, _local7, 128)) {
if ((enemies[_local4][9] == false) and (_root.difficulty != "easy")) {
_root["enemymc" + _local4].removeMovieClip();
if ((_root.musicon == true) and (_root.chirp2done == true)) {
_root.chirp2.gotoAndPlay(2);
_root.chirp2done = false;
}
pengsleft = pengsleft - 1;
pengsdied = pengsdied + 1;
enemies[_local4][9] = true;
enemies[_local4][6] = 999999 /* 0x0F423F */;
var _local5 = 0;
while (_local5 < enemies.length) {
if (enemies[_local5][0] == 2) {
following = 0;
endofline = 0;
enemies[_local5][8] = "none";
}
_local5++;
}
}
}
}
_local4++;
}
_local7 = new flash.geom.Point(tile1._x, tile1._y);
if (enemyhit2.bmp.hitTest(_local6, 128, tile1.bmp, _local7, 128)) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + (imovedx * -1);
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + (imovedy * -1);
}
_local7 = new flash.geom.Point(tile2._x, tile2._y);
if (enemyhit2.bmp.hitTest(_local6, 128, tile2.bmp, _local7, 128)) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + (imovedx * -1);
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + (imovedy * -1);
}
_local7 = new flash.geom.Point(tile3._x, tile3._y);
if (enemyhit2.bmp.hitTest(_local6, 128, tile3.bmp, _local7, 128)) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + (imovedx * -1);
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + (imovedy * -1);
}
} else {
_root["enemymc" + enemid]._yscale = 100;
_root["enemymc" + enemid].mc.gotoAndStop(3);
_root["enemymc" + enemid]._rotation = 0;
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - 1;
_root["enemymc" + enemid]._alpha = _root["enemymc" + enemid]._alpha - 4;
if (_root["enemymc" + enemid]._alpha < 1) {
enemies[_local3][1] = 5;
_root["enemymc" + enemid].removeMovieClip();
enemies[_local3][5] = false;
enemies[_local3][6] = 2160;
enemies[_local3][8] = "alive";
}
}
}
if (enemies[_local3][0] == 2) {
_root["babyhit" + enemies[_local3][1]]._x = _root["enemymc" + enemid]._x - 10;
_root["babyhit" + enemies[_local3][1]]._y = _root["enemymc" + enemid]._y - 10;
if (enemies[_local3][9] == false) {
xdistp = _root["enemymc" + enemid]._x - charhit._x;
ydistp = _root["enemymc" + enemid]._y - charhit._y;
shiftdown = false;
if (Key.isDown(_root.gamekeys.throwB)) {
shiftdown = true;
babystay = true;
}
if (enemies[_local3][8] == "none") {
_root["enemymc" + enemid].mc.gotoAndStop(1);
}
if (((enemies[_local3][8] != "none") and (shiftdown == false)) and (enemies[_local3][10] < movementsmoved)) {
_root["enemymc" + enemid]._x = lastmovements[enemies[_local3][8]][0] - world.charx;
_root["enemymc" + enemid]._y = lastmovements[enemies[_local3][8]][1] - world.chary;
_root["enemymc" + enemid]._rotation = lastmovements[enemies[_local3][8]][2];
}
if (shiftdown == true) {
babystay = false;
if (enemies[_local3][8] != "none") {
if ((_root.musicon == true) and (_root.chirp3done == true)) {
_root.chirp3.gotoAndPlay(2);
_root.chirp3done = false;
}
var _local4 = 0;
while (_local4 < enemies.length) {
if (enemies[_local4][0] == 2) {
following = 0;
enemies[_local4][8] = "none";
}
_local4++;
}
}
}
_root["babyhit" + enemies[_local3][1]]._x = _root["enemymc" + enemid]._x - 10;
_root["babyhit" + enemies[_local3][1]]._y = _root["enemymc" + enemid]._y - 10;
var _local6 = new flash.geom.Point(_root["babyhit" + enemies[_local3][1]]._x, _root["babyhit" + enemies[_local3][1]]._y);
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (_root["babyhit" + enemies[_local3][1]].bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
if (enemies[_local3][8] == "none") {
if ((_root.musicon == true) and (_root.chirp1done == true)) {
_root.chirp1.gotoAndPlay(2);
_root.chirp1done = false;
}
if (following == 0) {
enemies[_local3][8] = 8;
enemies[_local3][10] = movementsmoved + 8;
following = 1;
} else {
following = following + 1;
enemies[_local3][8] = (following * 3) + 5;
enemies[_local3][10] = movementsmoved + ((following * 3) + 5);
}
}
}
hometestx = _root["babyhit" + enemies[_local3][1]]._x + world.charx;
hometesty = _root["babyhit" + enemies[_local3][1]]._y + world.chary;
if ((((hometestx < (homex + homesize)) and (hometestx > (homex - homesize))) and (hometesty < (homey + homesize))) and (hometesty > (homey - homesize))) {
colided = false;
_root["babyhit" + enemies[_local3][1]]._x = _root["enemymc" + enemid]._x - 10;
_root["babyhit" + enemies[_local3][1]]._y = _root["enemymc" + enemid]._y - 10;
_local6 = new flash.geom.Point(_root["babyhit" + enemies[_local3][1]]._x, _root["babyhit" + enemies[_local3][1]]._y);
var _local4 = 0;
while (_local4 < enemies.length) {
if ((enemies[_local4][0] == 2) and (_local4 != _local3)) {
_local7 = new flash.geom.Point(_root["babyhit" + enemies[_local4][1]]._x, _root["babyhit" + enemies[_local4][1]]._y);
if (_root["babyhit" + enemies[_local3][1]].bmp.hitTest(_local6, 128, _root["babyhit" + enemies[_local4][1]].bmp, _local7, 128)) {
if (enemies[_local4][9] == true) {
colided = true;
}
}
}
_local4++;
}
if (colided == false) {
if ((_root.musicon == true) and (_root.chirp4done == true)) {
_root.chirp4.gotoAndPlay(2);
_root.chirp4done = false;
}
enemies[_local3][9] = true;
pengsleft = pengsleft - 1;
pengssaved = pengssaved + 1;
following = following - 1;
if (enemies[_local3][8] == 8) {
_local4 = 0;
while (_local4 < enemies.length) {
if ((enemies[_local4][0] == 2) and (enemies[_local4][8] != "none")) {
enemies[_local4][8] = enemies[_local4][8] - 3;
}
_local4++;
}
} else {
_local4 = 0;
while (_local4 < enemies.length) {
if (((enemies[_local4][0] == 2) and (enemies[_local4][8] != "none")) and (enemies[_local4][8] > enemies[_local3][8])) {
enemies[_local4][8] = enemies[_local4][8] - 3;
}
_local4++;
}
}
}
}
} else {
hometesty = _root["babyhit" + enemies[_local3][1]]._y + world.chary;
if (hometesty > 20) {
_root["enemymc" + enemid].mc.gotoAndStop(1);
_root["enemymc" + enemid]._rotation = -90;
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - 5;
_root["enemymc" + enemid]._yscale = -100;
colided = false;
var _local4 = 0;
while (_local4 < enemies.length) {
if ((enemies[_local4][0] == 2) and (_local4 != _local3)) {
xdist = _root["enemymc" + enemid]._x - _root["enemymc" + _local4]._x;
ydist = _root["enemymc" + enemid]._y - _root["enemymc" + _local4]._y;
if (xdist < 0) {
xidst = xdist * -1;
}
if (ydist < 0) {
yidst = ydist * -1;
}
distance = xdist + ydist;
if (distance < 30) {
if (_root["enemymc" + enemid]._y != _root["enemymc" + _local4]._y) {
if (_root["enemymc" + enemid]._y > _root["enemymc" + _local4]._y) {
colided = true;
}
} else if (_root["enemymc" + enemid]._x > _root["enemymc" + _local4]._x) {
colided = true;
}
}
}
_local4++;
}
if (colided == true) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + 5;
}
} else {
hometestx = _root["babyhit" + enemies[_local3][1]]._x + world.charx;
if (hometestx > -230) {
_root["enemymc" + enemid].mc.gotoAndStop(3);
_root["enemymc" + enemid]._rotation = 0;
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - 4;
_root["enemymc" + enemid]._yscale = 100;
}
}
}
}
if (enemies[_local3][0] == 3) {
if (enemies[_local3][8] == "alive") {
stunned = false;
xdist = _root["enemymc" + _local3]._x - bubblepop._x;
ydist = _root["enemymc" + _local3]._y - bubblepop._y;
if (((xdist < 60) and (xdist > -60)) and (world.burst == true)) {
if ((ydist < 60) and (ydist > -60)) {
enemies[_local3][6] = stunduration * 0.3;
}
}
if (enemies[_local3][6] > 0) {
stunned = true;
enemies[_local3][6] = enemies[_local3][6] - 1;
}
xdist = (_root["enemymc" + enemid]._x - charhit._x) - 20;
ydist = (_root["enemymc" + enemid]._y - charhit._y) - 20;
imovedx = 0;
imovedy = 0;
closetome = false;
if (((xdist < 500) and (xdist > -500)) and (stunned == false)) {
if ((ydist < 400) and (ydist > -400)) {
closetome = true;
if (xdist > 10) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - enemies[_local3][7];
imovedx = -1 * enemies[_local3][7];
}
if (xdist < -10) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][7];
imovedx = enemies[_local3][7];
}
if (ydist > 10) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - enemies[_local3][7];
imovedy = -1 * enemies[_local3][7];
}
if (ydist < -10) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][7];
imovedy = enemies[_local3][7];
}
}
}
if (((closetome == false) and (closetobaby == false)) and (stunned == false)) {
_root["enemymc" + enemid].mc.gotoAndStop(1);
xdest = enemies[_local3][3] - world.charx;
ydest = enemies[_local3][4] - world.chary;
if (xdest > _root["enemymc" + enemid]._x) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][7];
imovedx = enemies[_local3][7];
}
if (xdest < _root["enemymc" + enemid]._x) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - enemies[_local3][7];
imovedx = -1 * enemies[_local3][7];
}
if (ydest > _root["enemymc" + enemid]._y) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][7];
imovedy = enemies[_local3][7];
}
if (ydest < _root["enemymc" + enemid]._y) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - enemies[_local3][7];
imovedy = -1 * enemies[_local3][7];
}
}
enemyhit3._x = _root["enemymc" + enemid]._x - 15;
enemyhit3._y = _root["enemymc" + enemid]._y - 40;
var _local6 = new flash.geom.Point(enemyhit3._x, enemyhit3._y);
_root["enemymc" + enemid].filters = false;
colidedchar = false;
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit3.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
colidedchar = true;
}
_local7 = new flash.geom.Point(charhit2._x, charhit2._y);
if (enemyhit3.bmp.hitTest(_local6, 128, charhit2.bmp, _local7, 128)) {
colidedchar = true;
}
if (colidedchar == true) {
if (world.burst == true) {
if ((_root.musicon == true) and (_root.hitdone == true)) {
_root.hitz.gotoAndPlay(2);
_root.hitdone = false;
}
if (enemies[_local3][1] < 1) {
enemies[_local3][8] = 10;
pointsmcv = pointsmcv + 1;
attachMovie("points_mc", "points_mc" + pointsmcv, pointsmcv + 9000);
_root["points_mc" + pointsmcv].mc.numba.text = "200";
_root["points_mc" + pointsmcv]._x = enemyhit3._x;
_root["points_mc" + pointsmcv]._y = enemyhit3._y;
_root.eaten = _root.eaten + 200;
_root["points_mc" + pointsmcv].onEnterFrame = function () {
this._alpha = this._alpha - 1;
if (this._alpha < 20) {
this.removeMovieClip();
}
};
} else {
enemies[_local3][1] = enemies[_local3][1] - 1;
_root["enemymc" + enemid].filters = [redglow];
}
} else if (stunned == false) {
world.life = world.life - (1 * world.damagemulti);
_root.damagelast = _root.damagelast + 1;
if ((_root.musicon == true) and (_root.chirp5done == true)) {
_root.chirp5.gotoAndPlay(2);
_root.chirp5done = false;
}
}
}
var _local4 = 0;
while (_local4 < enemies.length) {
if (((enemies[_local4][0] == 2) and (enemies[_local4][5] == true)) and (stunned == false)) {
_local7 = new flash.geom.Point(_root["babyhit" + enemies[_local4][1]]._x, _root["babyhit" + enemies[_local4][1]]._y);
if (enemyhit3.bmp.hitTest(_local6, 128, _root["babyhit" + enemies[_local4][1]].bmp, _local7, 128)) {
if ((enemies[_local4][9] == false) and (_root.difficulty != "easy")) {
_root["enemymc" + _local4].removeMovieClip();
if ((_root.musicon == true) and (_root.chirp2done == true)) {
_root.chirp2.gotoAndPlay(2);
_root.chirp2done = false;
}
pengsleft = pengsleft - 1;
pengsdied = pengsdied + 1;
enemies[_local4][9] = true;
enemies[_local4][6] = 999999 /* 0x0F423F */;
var _local5 = 0;
while (_local5 < enemies.length) {
if (enemies[_local5][0] == 2) {
following = 0;
endofline = 0;
enemies[_local5][8] = "none";
}
_local5++;
}
}
}
}
_local4++;
}
colided = false;
_local7 = new flash.geom.Point(tile1._x, tile1._y);
if (enemyhit3.bmp.hitTest(_local6, 128, tile1.bmp, _local7, 128)) {
colided = true;
}
_local7 = new flash.geom.Point(tile2._x, tile2._y);
if (enemyhit3.bmp.hitTest(_local6, 128, tile2.bmp, _local7, 128)) {
colided = true;
}
_local7 = new flash.geom.Point(tile3._x, tile3._y);
if (enemyhit3.bmp.hitTest(_local6, 128, tile3.bmp, _local7, 128)) {
colided = true;
}
if (colided == false) {
_local4 = 0;
while (_local4 < enemies.length) {
if (((enemies[_local4][5] == true) and (enemies[_local4][0] == 3)) and (_local3 != _local4)) {
xdist = _root["enemymc" + enemid]._x - _root["enemymc" + _local4]._x;
ydist = _root["enemymc" + enemid]._y - _root["enemymc" + _local4]._y;
if ((((xdist < 70) and (xdist > -70)) and (ydist < 70)) and (ydist > -70)) {
colided = true;
}
}
_local4++;
}
}
if (colided == true) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + (imovedx * -1);
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + (imovedy * -1);
}
_root["enemymc" + enemid].mc.gotoAndStop(2);
} else {
_root["enemymc" + enemid]._yscale = 100;
_root["enemymc" + enemid].mc.gotoAndStop(3);
_root["enemymc" + enemid]._rotation = 0;
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - 1;
_root["enemymc" + enemid]._alpha = _root["enemymc" + enemid]._alpha - 4;
if (_root["enemymc" + enemid]._alpha < 1) {
enemies[_local3][1] = 5;
_root["enemymc" + enemid].removeMovieClip();
enemies[_local3][5] = false;
enemies[_local3][6] = 999999 /* 0x0F423F */;
enemies[_local3][8] = "alive";
}
}
}
if (enemies[_local3][0] == 4) {
if (enemies[_local3][8] == "alive") {
stunned = false;
xdist = _root["enemymc" + _local3]._x - bubblepop._x;
ydist = _root["enemymc" + _local3]._y - bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (world.burst == true)) {
if ((ydist < 40) and (ydist > -40)) {
enemies[_local3][6] = stunduration * 6;
}
}
if (enemies[_local3][6] > 0) {
stunned = true;
enemies[_local3][6] = enemies[_local3][6] - 1;
}
_root["enemymc" + enemid].mc.gotoAndStop(1);
_root["enemymc" + enemid]._rotation = charDirection;
if ((_root["enemymc" + enemid]._rotation < 90) and (_root["enemymc" + enemid]._rotation > -90)) {
_root["enemymc" + enemid]._yscale = 100;
} else {
_root["enemymc" + enemid]._yscale = -100;
}
xdist = (_root["enemymc" + enemid]._x - charhit._x) - 20;
ydist = (_root["enemymc" + enemid]._y - charhit._y) - 20;
enemies[_local3][1] = enemies[_local3][1] - 1;
if ((((((xdist < 350) and (xdist > -350)) and (ydist < 350)) and (ydist > -350)) and (enemies[_local3][1] < 1)) and (stunned == false)) {
enemies[_local3][1] = 72;
if (_root.difficulty != "hard") {
xtarg = 9 * Math.cos(_root["enemymc" + enemid]._rotation * (Math.PI/180));
ytarg = 9 * Math.sin(_root["enemymc" + enemid]._rotation * (Math.PI/180));
} else {
xtarg = 12 * Math.cos(_root["enemymc" + enemid]._rotation * (Math.PI/180));
ytarg = 12 * Math.sin(_root["enemymc" + enemid]._rotation * (Math.PI/180));
}
enemies.push([5, 50, 14, 0, 0, true, 0, 5, xtarg, ytarg]);
_root["enemymc" + _local3].mc.tur.gotoAndPlay(2);
thisenem = enemies.length - 1;
_root.attachMovie("enemy", "enemymc" + thisenem, 3050 + thisenem);
_root["enemymc" + thisenem]._x = _root["enemymc" + _local3]._x + (xtarg * 5);
_root["enemymc" + thisenem]._y = _root["enemymc" + _local3]._y + (ytarg * 5);
_root["enemymc" + thisenem]._rotation = _root["enemymc" + _local3]._rotation;
_root["enemymc" + thisenem].gotoAndStop(14);
}
enemyhit3._x = _root["enemymc" + enemid]._x - 40;
enemyhit3._y = _root["enemymc" + enemid]._y - 40;
var _local6 = new flash.geom.Point(enemyhit3._x, enemyhit3._y);
colidedchar = false;
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit3.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
colidedchar = true;
}
_local7 = new flash.geom.Point(charhit2._x, charhit2._y);
if (enemyhit3.bmp.hitTest(_local6, 128, charhit2.bmp, _local7, 128)) {
colidedchar = true;
}
if (colidedchar == true) {
if (world.burst == true) {
if ((_root.musicon == true) and (_root.hitdone == true)) {
_root.hitz.gotoAndPlay(2);
_root.hitdone = false;
}
if (_root.difficulty == "hard") {
enemies[_local3][8] = 2160;
} else if (_root.difficulty == "medium") {
enemies[_local3][8] = 3240;
} else {
enemies[_local3][8] = 99999 /* 0x01869F */;
}
pointsmcv = pointsmcv + 1;
attachMovie("points_mc", "points_mc" + pointsmcv, pointsmcv + 9000);
_root["points_mc" + pointsmcv].mc.numba.text = "100";
_root["points_mc" + pointsmcv]._x = enemyhit3._x;
_root["points_mc" + pointsmcv]._y = enemyhit3._y;
_root.eaten = _root.eaten + 100;
_root["points_mc" + pointsmcv].onEnterFrame = function () {
this._alpha = this._alpha - 1;
if (this._alpha < 20) {
this.removeMovieClip();
}
};
}
}
} else {
_root["enemymc" + enemid].mc.gotoAndStop(3);
enemies[_local3][8] = enemies[_local3][8] - 1;
if (enemies[_local3][8] < 1) {
enemies[_local3][8] = "alive";
}
}
}
if (enemies[_local3][0] == 5) {
xdist = _root["enemymc" + _local3]._x - mouseTargetMC._x;
ydist = _root["enemymc" + _local3]._y - mouseTargetMC._y;
if (((xdist < 30) and (xdist > -30)) and (world.burst == true)) {
if ((ydist < 30) and (ydist > -30)) {
enemies[_local3][1] = 0;
}
}
enemies[_local3][1] = enemies[_local3][1] - 1;
if (enemies[_local3][1] < 1) {
if (((enemies[_local3][1] == -1) and (_root.musicon == true)) and (_root.explodedone == true)) {
_root.explodez.play();
_root.explodedone = false;
}
_root["enemymc" + enemid].mc.gotoAndStop(2);
if (enemies[_local3][1] < -20) {
_root["enemymc" + enemid].removeMovieClip();
} else if (enemies[_local3][1] > -10) {
enemyhit3._x = _root["enemymc" + enemid]._x - 40;
enemyhit3._y = _root["enemymc" + enemid]._y - 40;
var _local6 = new flash.geom.Point(enemyhit3._x, enemyhit3._y);
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit3.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
world.life = world.life - (1 * world.damagemulti);
_root.damagelast = _root.damagelast + 1;
if ((_root.musicon == true) and (_root.chirp5done == true)) {
_root.chirp5.gotoAndPlay(2);
_root.chirp5done = false;
}
}
}
} else {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][8];
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][9];
enemyhit._x = _root["enemymc" + enemid]._x - 2.5;
enemyhit._y = _root["enemymc" + enemid]._y - 2.5;
var _local6 = new flash.geom.Point(enemyhit._x, enemyhit._y);
colidedchar = false;
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
colidedchar = true;
}
_local7 = new flash.geom.Point(charhit2._x, charhit2._y);
if (enemyhit.bmp.hitTest(_local6, 128, charhit2.bmp, _local7, 128)) {
colidedchar = true;
}
if (colidedchar == true) {
if (world.burst != true) {
world.life = world.life - (5 * world.damagemulti);
_root.damagelast = _root.damagelast + 1;
if ((_root.musicon == true) and (_root.chirp5done == true)) {
_root.chirp5.gotoAndPlay(2);
_root.chirp5done = false;
}
}
enemies[_local3][1] = 0;
}
var _local4 = 0;
while (_local4 < enemies.length) {
if (((enemies[_local4][0] != 2) and (enemies[_local4][5] == true)) and (_local4 != _local3)) {
xdistE = _root["enemymc" + _local3]._x - _root["enemymc" + _local4]._x;
if (xdistE < 0) {
xdistE = xdistE * -1;
}
ydistE = _root["enemymc" + _local3]._y - _root["enemymc" + _local4]._y;
if (ydistE < 0) {
ydistE = ydistE * -1;
}
distE = xdistE + ydistE;
if (distE < 100) {
killedne = false;
if ((enemies[_local4][0] == 1) and (distE < 30)) {
if (enemies[_local4][8] == "alive") {
enemies[_local3][1] = 0;
enemies[_local4][8] = 10;
killedne = 150;
}
}
if ((enemies[_local4][0] == 7) and (distE < 480)) {
enemies[_local3][1] = 0;
}
if ((enemies[_local4][0] == 3) and (distE < 80)) {
if (enemies[_local4][8] == "alive") {
enemies[_local4][1] = 0;
enemies[_local4][8] = 10;
enemies[_local3][1] = 0;
killedne = 300;
}
}
if ((enemies[_local4][0] == 5) and (distE < 30)) {
if (enemies[_local4][1] > 0) {
enemies[_local3][1] = 0;
enemies[_local4][1] = 0;
killedne = 25;
}
}
if ((enemies[_local4][0] == 6) and (distE < 30)) {
if (enemies[_local4][8] == "alive") {
killedne = 150;
enemies[_local3][1] = 0;
enemies[_local4][1] = 0;
}
}
if ((enemies[_local4][0] == 4) and (distE < 50)) {
enemies[_local3][1] = 0;
if (enemies[_local4][8] == "alive") {
killedne = 200;
if (_root.difficulty == "hard") {
enemies[_local4][8] = 2160;
} else if (_root.difficulty == "medium") {
enemies[_local4][8] = 3240;
} else {
enemies[_local4][8] = 99999 /* 0x01869F */;
}
}
}
if (killedne != false) {
pointsmcv = pointsmcv + 1;
attachMovie("points_mc", "points_mc" + pointsmcv, pointsmcv + 9000);
_root["points_mc" + pointsmcv].mc.numba.text = killedne;
_root["points_mc" + pointsmcv]._x = _root["enemymc" + _local3]._x;
_root["points_mc" + pointsmcv]._y = _root["enemymc" + _local3]._y;
_root.eaten = _root.eaten + killedne;
_root["points_mc" + pointsmcv].onEnterFrame = function () {
this._alpha = this._alpha - 1;
if (this._alpha < 20) {
this.removeMovieClip();
}
};
}
}
}
if ((enemies[_local4][0] == 2) and (enemies[_local4][5] == true)) {
_local7 = new flash.geom.Point(_root["babyhit" + enemies[_local4][1]]._x, _root["babyhit" + enemies[_local4][1]]._y);
if (enemyhit.bmp.hitTest(_local6, 128, _root["babyhit" + enemies[_local4][1]].bmp, _local7, 128)) {
if ((enemies[_local4][9] == false) and (_root.difficulty != "easy")) {
enemies[_local3][1] = 0;
_root["enemymc" + _local4].removeMovieClip();
if ((_root.musicon == true) and (_root.chirp2done == true)) {
_root.chirp2.gotoAndPlay(2);
_root.chirp2done = false;
}
pengsleft = pengsleft - 1;
pengsdied = pengsdied + 1;
enemies[_local4][9] = true;
enemies[_local4][6] = 999999 /* 0x0F423F */;
var _local5 = 0;
while (_local5 < enemies.length) {
if (enemies[_local5][0] == 2) {
following = 0;
endofline = 0;
enemies[_local5][8] = "none";
}
_local5++;
}
}
}
}
_local4++;
}
_local7 = new flash.geom.Point(tile1._x, tile1._y);
if (enemyhit.bmp.hitTest(_local6, 128, tile1.bmp, _local7, 128)) {
enemies[_local3][1] = 0;
}
_local7 = new flash.geom.Point(tile2._x, tile2._y);
if (enemyhit.bmp.hitTest(_local6, 128, tile2.bmp, _local7, 128)) {
enemies[_local3][1] = 0;
}
_local7 = new flash.geom.Point(tile3._x, tile3._y);
if (enemyhit.bmp.hitTest(_local6, 128, tile3.bmp, _local7, 128)) {
enemies[_local3][1] = 0;
}
}
}
if (enemies[_local3][0] == 6) {
stunned = false;
xdist = _root["enemymc" + _local3]._x - bubblepop._x;
ydist = _root["enemymc" + _local3]._y - bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (world.burst == true)) {
if ((ydist < 40) and (ydist > -40)) {
if (_root.difficulty == hard) {
enemies[_local3][6] = stunduration * 4;
} else {
enemies[_local3][6] = stunduration * 6;
}
}
}
if (enemies[_local3][6] > 0) {
stunned = true;
enemies[_local3][6] = enemies[_local3][6] - 1;
}
if ((enemies[_local3][1] == "xr") and (stunned == false)) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + enemies[_local3][7];
}
if ((enemies[_local3][1] == "xl") and (stunned == false)) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x - enemies[_local3][7];
}
if ((enemies[_local3][1] == "yd") and (stunned == false)) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y + enemies[_local3][7];
}
if ((enemies[_local3][1] == "yu") and (stunned == false)) {
_root["enemymc" + enemid]._y = _root["enemymc" + enemid]._y - enemies[_local3][7];
}
if (enemies[_local3][1] < 1) {
enemies[_local3][1] = enemies[_local3][1] - 1;
_root["enemymc" + enemid].mc.gotoAndStop(2);
if (enemies[_local3][1] < -20) {
_root["enemymc" + enemid].removeMovieClip();
} else if (enemies[_local3][1] > -10) {
enemyhit3._x = _root["enemymc" + enemid]._x - 40;
enemyhit3._y = _root["enemymc" + enemid]._y - 40;
var _local6 = new flash.geom.Point(enemyhit3._x, enemyhit3._y);
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit3.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
world.life = world.life - (1 * world.damagemulti);
_root.damagelast = _root.damagelast + 1;
if ((_root.musicon == true) and (_root.chirp5done == true)) {
_root.chirp5.gotoAndPlay(2);
_root.chirp5done = false;
}
}
}
} else {
enemyhit2._x = _root["enemymc" + enemid]._x - 15;
enemyhit2._y = _root["enemymc" + enemid]._y - 15;
var _local6 = new flash.geom.Point(enemyhit2._x, enemyhit2._y);
colidedchar = false;
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit2.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
colidedchar = true;
}
_local7 = new flash.geom.Point(charhit2._x, charhit2._y);
if (enemyhit2.bmp.hitTest(_local6, 128, charhit2.bmp, _local7, 128)) {
colidedchar = true;
}
if (colidedchar == true) {
if (world.burst != true) {
world.life = world.life - (1 * world.damagemulti);
_root.damagelast = _root.damagelast + 1;
if ((_root.musicon == true) and (_root.chirp5done == true)) {
_root.chirp5.gotoAndPlay(2);
_root.chirp5done = false;
}
} else if ((_root.musicon == true) and (_root.hitdone == true)) {
_root.hitz.gotoAndPlay(2);
_root.hitdone = false;
}
}
var _local4 = 0;
while (_local4 < enemies.length) {
if ((enemies[_local4][0] == 2) and (enemies[_local4][5] == true)) {
_local7 = new flash.geom.Point(_root["babyhit" + enemies[_local4][1]]._x, _root["babyhit" + enemies[_local4][1]]._y);
if (enemyhit2.bmp.hitTest(_local6, 128, _root["babyhit" + enemies[_local4][1]].bmp, _local7, 128)) {
if ((enemies[_local4][9] == false) and (_root.difficulty != "easy")) {
_root["enemymc" + _local4].removeMovieClip();
if ((_root.musicon == true) and (_root.chirp2done == true)) {
_root.chirp2.gotoAndPlay(2);
_root.chirp2done = false;
}
pengsleft = pengsleft - 1;
pengsdied = pengsdied + 1;
enemies[_local4][9] = true;
enemies[_local4][6] = 999999 /* 0x0F423F */;
var _local5 = 0;
while (_local5 < enemies.length) {
if (enemies[_local5][0] == 2) {
following = 0;
endofline = 0;
enemies[_local5][8] = "none";
}
_local5++;
}
}
}
}
_local4++;
}
if (enemies[_local3][1] == "xr") {
if ((_root["enemymc" + _local3]._x + world.charx) > (enemies[_local3][3] + enemies[_local3][9])) {
enemies[_local3][1] = "xl";
}
}
if (enemies[_local3][1] == "xl") {
if ((_root["enemymc" + _local3]._x + world.charx) < (enemies[_local3][3] - enemies[_local3][9])) {
enemies[_local3][1] = "xr";
}
}
if (enemies[_local3][1] == "yd") {
if ((_root["enemymc" + _local3]._y + world.chary) > (enemies[_local3][4] + enemies[_local3][9])) {
enemies[_local3][1] = "yu";
}
}
if (enemies[_local3][1] == "yu") {
if ((_root["enemymc" + _local3]._y + world.chary) < (enemies[_local3][4] - enemies[_local3][9])) {
enemies[_local3][1] = "yd";
}
}
}
}
if (enemies[_local3][0] == 7) {
_root["enemymc" + enemid]._rotation = 0;
_root["enemymc" + enemid]._yscale = 100;
xdist2 = (_root["enemymc" + enemid]._x - charhit._x) - 20;
if (xdist2 < 0) {
xdist = xdist2 * -1;
}
if ((world.charx + charhit._x) > 1500) {
_root["enemymc" + enemid].mc.gotoAndStop(2);
if ((_root["enemymc" + enemid]._x + world.charx) < 18500) {
if (_root.difficulty != "easy") {
if (_root.difficulty != "medium") {
if (_root["enemymc" + enemid]._x < -150) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + (movespeed + 3);
} else if (_root["enemymc" + enemid]._x > -70) {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + (movespeed - 1);
} else {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + movespeed;
}
} else {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + (movespeed - 2);
}
} else {
_root["enemymc" + enemid]._x = _root["enemymc" + enemid]._x + (movespeed - 4);
}
}
enemyhit5._x = _root["enemymc" + enemid]._x - 350;
enemyhit5._y = _root["enemymc" + enemid]._y - 250;
var _local6 = new flash.geom.Point(enemyhit5._x, enemyhit5._y);
colidedchar = false;
var _local7 = new flash.geom.Point(charhit._x, charhit._y);
if (enemyhit5.bmp.hitTest(_local6, 128, charhit.bmp, _local7, 128)) {
colidedchar = true;
}
_local7 = new flash.geom.Point(charhit2._x, charhit2._y);
if (enemyhit5.bmp.hitTest(_local6, 128, charhit2.bmp, _local7, 128)) {
colidedchar = true;
}
if (colidedchar == true) {
world.life = world.life - 123;
_root.damagelast = _root.damagelast + 1;
if ((_root.musicon == true) and (_root.chirp5done == true)) {
_root.chirp5.gotoAndPlay(2);
_root.chirp5done = false;
}
}
var _local4 = 0;
while (_local4 < enemies.length) {
_local7 = new flash.geom.Point(_root["babyhit" + enemies[_local4][1]]._x, _root["babyhit" + enemies[_local4][1]]._y);
if (enemyhit5.bmp.hitTest(_local6, 128, _root["babyhit" + enemies[_local4][1]].bmp, _local7, 128)) {
if (enemies[_local4][9] == false) {
_root["enemymc" + _local4].removeMovieClip();
if (following > 0) {
following = following - 1;
}
if ((_root.musicon == true) and (_root.chirp2done == true)) {
_root.chirp2.gotoAndPlay(2);
_root.chirp2done = false;
}
pengsleft = pengsleft - 1;
pengsdied = pengsdied + 1;
enemies[_local4][9] = true;
enemies[_local4][6] = 999999 /* 0x0F423F */;
}
}
_local4++;
}
} else {
_root["enemymc" + enemid].mc.gotoAndStop(1);
}
}
} else if (((world.charx + _root["enemymc" + _local3]._x) > (world.charx + 1800)) or ((world.charx + _root["enemymc" + _local3]._x) < (world.charx - 1200))) {
if (enemies[_local3][0] != 2) {
_root["enemymc" + _local3].removeMovieClip();
enemies[_local3][5] = false;
enemies[_local3][6] = 0;
}
}
} else {
if (enemies[_local3][6] > 0) {
enemies[_local3][6] = enemies[_local3][6] - 1;
}
if (enemies[_local3][0] == 4) {
if (enemies[_local3][8] != "alive") {
enemies[_local3][8] = enemies[_local3][8] - 1;
if (enemies[_local3][8] < 1) {
enemies[_local3][8] = "alive";
}
}
}
}
_local3++;
}
enemyhit._x = -100;
enemyhit._y = -100;
}
function movetilesright() {
spawnfishy();
world.tile = world.tile + 1;
world.nexttile = world.nexttile + 600;
world.prevtile = world.prevtile + 600;
tile1._x = tile1._x + 600;
tile2._x = tile2._x + 600;
tile3._x = tile3._x + 600;
object1._x = object1._x + 600;
object2._x = object2._x + 600;
object3._x = object3._x + 600;
object1.gotoAndStop(world.tile - 1);
object2.gotoAndStop(world.tile);
object3.gotoAndStop(world.tile + 1);
object4._x = object4._x + 600;
object5._x = object5._x + 600;
object6._x = object6._x + 600;
object4.gotoAndStop(world.tile - 1);
object5.gotoAndStop(world.tile);
object6.gotoAndStop(world.tile + 1);
tile1.gotoAndStop(world.tile - 1);
tile2.gotoAndStop(world.tile);
tile3.gotoAndStop(world.tile + 1);
tile1.bmp = tile2.bmp;
tile2.bmp = tile3.bmp;
tile3.bmp = new flash.display.BitmapData(tile3._width, tile3._height, true, 0);
tile3.bmp.draw(tile3);
}
function movetilesleft() {
spawnfishy();
world.tile = world.tile - 1;
world.nexttile = world.nexttile - 600;
world.prevtile = world.prevtile - 600;
tile1._x = tile1._x - 600;
tile2._x = tile2._x - 600;
tile3._x = tile3._x - 600;
object1._x = object1._x - 600;
object2._x = object2._x - 600;
object3._x = object3._x - 600;
object1.gotoAndStop(world.tile - 1);
object2.gotoAndStop(world.tile);
object3.gotoAndStop(world.tile + 1);
object4._x = object4._x - 600;
object5._x = object5._x - 600;
object6._x = object6._x - 600;
object4.gotoAndStop(world.tile - 1);
object5.gotoAndStop(world.tile);
object6.gotoAndStop(world.tile + 1);
tile1.gotoAndStop(world.tile - 1);
tile2.gotoAndStop(world.tile);
tile3.gotoAndStop(world.tile + 1);
tile3.bmp = tile2.bmp;
tile2.bmp = tile1.bmp;
tile1.bmp = new flash.display.BitmapData(tile1._width, tile1._height, true, 0);
tile1.bmp.draw(tile1);
}
function movemap() {
var _local3 = 0;
while (_local3 < (pointsmcv + 1)) {
_root["points_mc" + _local3]._x = _root["points_mc" + _local3]._x + movemapx;
_root["points_mc" + _local3]._y = _root["points_mc" + _local3]._y + movemapy;
_local3++;
}
bubblepop._x = bubblepop._x + movemapx;
bubblepop._y = bubblepop._y + movemapy;
enemyhit1._x = enemyhit1._x + movemapx;
enemyhit1._y = enemyhit1._y + movemapy;
enemyhit2._x = enemyhit2._x + movemapx;
enemyhit2._y = enemyhit2._y + movemapy;
enemyhit3._x = enemyhit3._x + movemapx;
enemyhit3._y = enemyhit3._y + movemapy;
enemyhit4._x = enemyhit4._x + movemapx;
enemyhit4._y = enemyhit4._y + movemapy;
enemyhit5._x = enemyhit5._x + movemapx;
enemyhit5._y = enemyhit5._y + movemapy;
world.charx = world.charx + (movemapx * -1);
world.chary = world.chary + (movemapy * -1);
world.burstx = world.burstx + movemapx;
world.bursty = world.bursty + movemapy;
var _local2 = 0;
while (_local2 < enemies.length) {
_root["enemymc" + _local2]._x = _root["enemymc" + _local2]._x + movemapx;
_root["enemymc" + _local2]._y = _root["enemymc" + _local2]._y + movemapy;
if (enemies[_local2][0] == 2) {
_root["babyhit" + enemies[_local2][1]]._x = _root["babyhit" + enemies[_local2][1]]._x + movemapx;
_root["babyhit" + enemies[_local2][1]]._y = _root["babyhit" + enemies[_local2][1]]._y + movemapy;
}
_local2++;
}
char_mc._x = char_mc._x + movemapx;
char_mc._y = char_mc._y + movemapy;
charhit._x = charhit._x + movemapx;
charhit._y = charhit._y + movemapy;
tile1._x = tile1._x + movemapx;
tile1._y = tile1._y + movemapy;
tile2._x = tile2._x + movemapx;
tile2._y = tile2._y + movemapy;
tile3._x = tile3._x + movemapx;
tile3._y = tile3._y + movemapy;
object1._x = object1._x + movemapx;
object1._y = object1._y + movemapy;
object2._x = object2._x + movemapx;
object2._y = object2._y + movemapy;
object3._x = object3._x + movemapx;
object3._y = object3._y + movemapy;
object4._x = object4._x + movemapx;
object4._y = object4._y + movemapy;
object5._x = object5._x + movemapx;
object5._y = object5._y + movemapy;
object6._x = object6._x + movemapx;
object6._y = object6._y + movemapy;
}
stop();
bgSound.stop();
_root.damagelast = 0;
_root.qfirst = "";
_root.qlast = ", ";
_root.blowdy = false;
_root.blowdx = false;
_root.explodedone = true;
_root.hitdone = true;
_root.twingdone = true;
_root.chirp1done = true;
_root.chirp2done = true;
_root.chirp3done = true;
_root.chirp4done = true;
_root.chirp5done = true;
_root.gamepaused = false;
_root.pengssavedlast = 0;
_root.timergo = true;
var D = 0;
while (D < (_root.flakes + 3)) {
_root["flake" + D].removeMovieClip();
D++;
}
if (_root.curlevel > 18) {
_root.gotoAndStop(8);
}
if (_root.curlevel > _root.recordlevel) {
_root.recordlevel = _root.curlevel;
}
pengsdanger = false;
world = {damagemulti:1, levelover:false, levelovertime:20, pengspeed:0.1, charx:300, chary:200, tile:2, prevtile:0, nexttile:600, burst:false, burstx:0, bursty:0, bursting:0, burstcd:0, life:100, leveltimer:10, bonuslvl:false};
if (_root.difficulty == "hard") {
world.damagemulti = 4;
}
if (_root.difficulty == "medium") {
world.damagemulti = 2;
}
swimming = true;
framespeed = 18;
world.leveltimer = 300 * framespeed;
stunduration = 15;
movespeed = 20;
pointsmcv = 0;
prevpoints = _root.eaten;
babystay = false;
movementsmoved = 0;
lastmovements = [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]];
if (_root.curlevel == 15) {
world.tile = 10;
world.charx = world.charx + 4800;
world.prevtile = world.prevtile + 4800;
world.nexttile = world.nexttile + 4800;
}
bgSound = new Sound(this);
bgSound.attachSound("cave");
var redglow = (new flash.filters.GlowFilter(15597568, 0.6, 4, 10, 3, 3, false, false));
attachMovie("char_mc", "char_mc", 5000);
attachMovie("thesea", "thesea", 500);
attachMovie("fadeto", "fadeto", 11101);
fadeto._alpha = 0;
attachMovie("levelinfo", "levelinfo", 8993);
levelinfo._x = 50;
levelinfo._y = 100;
levelinfo._alpha = 120;
levelinfo.gotoAndStop(_root.curlevel);
attachMovie("mouseTargetMC", "mouseTargetMC", 9000);
attachMovie("bubblepop", "bubblepop", 8969);
bubblepop._alpha = 0;
attachMovie("blowd_mc", "blowd_mc", 8987);
if (_root.curlevel == 1) {
_root.gamepaused = true;
attachMovie("tutorial", "tutorial", 18998);
}
attachMovie("HUD", "HUD", 8995);
attachMovie("tiles" + _root.curlevel, "tile1", 3001);
attachMovie("tiles" + _root.curlevel, "tile2", 3002);
attachMovie("tiles" + _root.curlevel, "tile3", 3003);
attachMovie("objects" + _root.curlevel, "object1", 3004);
attachMovie("objects" + _root.curlevel, "object2", 3005);
attachMovie("objects" + _root.curlevel, "object3", 3006);
attachMovie("objectsT" + _root.curlevel, "object4", 5001);
attachMovie("objectsT" + _root.curlevel, "object5", 5002);
attachMovie("objectsT" + _root.curlevel, "object6", 5003);
attachMovie("enemyhit", "enemyhit", 50);
enemyhit._x = -100;
enemyhit._y = -100;
attachMovie("enemyhit2", "enemyhit2", 51);
enemyhit2._x = -100;
enemyhit2._y = -100;
attachMovie("enemyhit3", "enemyhit3", 52);
enemyhit3._x = -100;
enemyhit3._y = -100;
attachMovie("enemyhit4", "enemyhit4", 53);
enemyhit4._x = -500;
enemyhit4._y = -500;
attachMovie("enemyhit5", "enemyhit5", 54);
enemyhit5._x = -500;
enemyhit5._y = -500;
tile1.gotoAndStop(world.tile - 1);
tile2.gotoAndStop(world.tile);
tile3.gotoAndStop(world.tile + 1);
tile1._x = -600;
tile2._x = 0;
tile3._x = 600;
tile1._y = -200;
tile2._y = -200;
tile3._y = -200;
object1.gotoAndStop(world.tile - 1);
object2.gotoAndStop(world.tile);
object3.gotoAndStop(world.tile + 1);
object1._x = -600;
object2._x = 0;
object3._x = 600;
object1._y = -200;
object2._y = -200;
object3._y = -200;
object4.gotoAndStop(world.tile - 1);
object5.gotoAndStop(world.tile);
object6.gotoAndStop(world.tile + 1);
object4._x = -600;
object5._x = 0;
object6._x = 600;
object4._y = -200;
object5._y = -200;
object6._y = -200;
enemyhit.bmp = new flash.display.BitmapData(enemyhit._width, enemyhit._height, true, 0);
enemyhit.bmp.draw(enemyhit);
enemyhit2.bmp = new flash.display.BitmapData(enemyhit2._width, enemyhit2._height, true, 0);
enemyhit2.bmp.draw(enemyhit2);
enemyhit3.bmp = new flash.display.BitmapData(enemyhit3._width, enemyhit3._height, true, 0);
enemyhit3.bmp.draw(enemyhit3);
enemyhit5.bmp = new flash.display.BitmapData(enemyhit5._width, enemyhit5._height, true, 0);
enemyhit5.bmp.draw(enemyhit5);
tile1.bmp = new flash.display.BitmapData(tile1._width, tile1._height, true, 0);
tile1.bmp.draw(tile1);
tile2.bmp = new flash.display.BitmapData(tile2._width, tile2._height, true, 0);
tile2.bmp.draw(tile2);
tile3.bmp = new flash.display.BitmapData(tile3._width, tile3._height, true, 0);
tile3.bmp.draw(tile3);
charhit.bmp = new flash.display.BitmapData(charhit._width, charhit._height, true, 0);
charhit.bmp.draw(charhit);
charhit2.bmp = new flash.display.BitmapData(charhit2._width, charhit2._height, true, 0);
charhit2.bmp.draw(charhit2);
homex = 575;
homey = 0;
homesize = 200;
pengsleft = 0;
endofline = 0;
following = 0;
pengssaved = 0;
pengsdied = 0;
if (((_root.curlevel == 13) or (_root.curlevel == 15)) or (_root.curlevel == 17)) {
world.leveltimer = 600 * framespeed;
bgSound.attachSound("city");
}
if (_root.curlevel == 15) {
homex = 5365;
}
if (_root.curlevel == 17) {
homex = 18570;
}
lvl1enemies = [[2, 1, 10, 1701, 922, false, 0, 7, "none", false, false, 0], [2, 2, 10, 1397, 705, false, 0, 7, "none", false, false, 0], [0, 5, 1, 1551, 821, false, 0, 5], [0, 5, 1, 1542, 989, false, 0, 5], [0, 5, 1, 1180, 802, false, 0, 5], [0, 5, 1, 1043, 985, false, 0, 5], [0, 5, 1, 727, 797, false, 0, 5], [0, 5, 1, 531, 937, false, 0, 5], [6, "xr", 15, 976, 947, false, 0, 5, "alive", 220], [6, "xl", 15, 976, 777, false, 0, 5, "alive", 220]];
lvl2enemies = [[0, 5, 1, -200, -200, true, 0, 0], [0, 5, 1, 491, 577, false, 0, 5], [0, 5, 1, 679, 560, false, 0, 5], [0, 5, 1, 681, 693, false, 0, 5], [0, 5, 1, 535, 698, false, 0, 5], [0, 5, 1, 544, 850, false, 0, 5], [0, 5, 1, 643, 983, false, 0, 5], [0, 5, 1, 522, 1102, false, 0, 5], [0, 5, 1, 631, 1229, false, 0, 5], [0, 5, 1, 511, 1353, false, 0, 5], [0, 5, 1, 682, 1508, false, 0, 5], [0, 5, 1, 509, 1664, false, 0, 5], [0, 5, 1, 674, 1780, false, 0, 5], [0, 5, 1, 561, 1969, false, 0, 5], [0, 5, 1, 878, 2082, false, 0, 5], [0, 5, 1, 771, 1844, false, 0, 5], [0, 5, 1, 1021, 1890, false, 0, 5], [0, 5, 1, 1120, 2038, false, 0, 5], [0, 5, 1, 1271, 1852, false, 0, 5], [0, 5, 1, 1166, 1785, false, 0, 5], [0, 5, 1, 1246, 1629, false, 0, 5], [0, 5, 1, 1029, 1504, false, 0, 5], [0, 5, 1, 830, 1586, false, 0, 5], [0, 5, 1, 832, 1440, false, 0, 5], [0, 5, 1, 1090, 1440, false, 0, 5], [0, 5, 1, 1300, 1445, false, 0, 5], [0, 5, 1, 1245, 1271, false, 0, 5], [0, 5, 1, 1102, 1124, false, 0, 5], [0, 5, 1, 908, 1106, false, 0, 5], [0, 5, 1, 1173, 1000, false, 0, 5], [0, 5, 1, 774, 1184, false, 0, 5], [0, 5, 1, 780, 1036, false, 0, 5], [0, 5, 1, 1257, 824, false, 0, 5], [0, 5, 1, 1122, 770, false, 0, 5], [0, 5, 1, 1212, 558, false, 0, 5], [0, 5, 1, 976, 622, false, 0, 5], [0, 5, 1, 827, 571, false, 0, 5], [0, 5, 1, 783, 666, false, 0, 5], [0, 5, 1, 1026, 1072, false, 0, 5], [0, 5, 1, 1282, 1262, false, 0, 5], [0, 5, 1, 1072, 1330, false, 0, 5], [0, 5, 1, 908, 1314, false, 0, 5], [0, 5, 1, 998, 1783, false, 0, 5], [0, 5, 1, 818, 1711, false, 0, 2]];
lvl3enemies = [[0, 5, 1, -200, -200, true, 0, 0], [2, 1, 10, 1801, 2036, false, 0, 7, "none", false, 0], [2, 2, 10, 1177, 1956, false, 0, 7, "none", false, 0], [2, 3, 10, 2651, 1996, false, 0, 7, "none", false, 0], [2, 4, 10, 3019, 1818, false, 0, 7, "none", false, 0], [2, 5, 10, 2509, 555, false, 0, 7, "none", false, 0], [0, 5, 1, 1063, 952, false, 0, 5], [0, 5, 1, 1385, 822, false, 0, 5], [0, 5, 1, 1660, 915, false, 0, 5], [0, 5, 1, 2097, 876, false, 0, 5], [0, 5, 1, 2427, 860, false, 0, 5], [0, 5, 1, 2819, 610, false, 0, 5], [0, 5, 1, 3141, 1150, false, 0, 5], [0, 5, 1, 3648, 1125, false, 0, 5], [0, 5, 1, 3756, 1349, false, 0, 5], [0, 5, 1, 3596, 1509, false, 0, 5], [0, 5, 1, 3954, 1540, false, 0, 5], [0, 5, 1, 4280, 1410, false, 0, 5], [0, 5, 1, 3919, 1327, false, 0, 5], [0, 5, 1, 4034, 1128, false, 0, 5], [0, 5, 1, 3763, 1124, false, 0, 5], [0, 5, 1, 2934, 1817, false, 0, 5], [0, 5, 1, 1916, 1434, false, 0, 5], [0, 5, 1, 1810, 1982, false, 0, 5], [0, 5, 1, 1189, 1876, false, 0, 5], [1, 0, 11, 3964, 1305, false, 0, 2, "alive"], [1, 0, 11, 1659, 823, false, 0, 2, "alive"], [6, "yu", 15, 1200, 900, false, 0, 4, "alive", 150]];
lvl4enemies = [[0, 5, 1, -200, -200, true, 0, 0], [0, 5, 1, 491, 577, false, 0, 5], [0, 5, 1, 679, 560, false, 0, 5], [0, 5, 1, 681, 693, false, 0, 5], [0, 5, 1, 535, 698, false, 0, 5], [0, 5, 1, 544, 850, false, 0, 5], [0, 5, 1, 643, 983, false, 0, 5], [0, 5, 1, 522, 1102, false, 0, 5], [0, 5, 1, 631, 1229, false, 0, 5], [0, 5, 1, 511, 1353, false, 0, 5], [0, 5, 1, 682, 1508, false, 0, 5], [0, 5, 1, 509, 1664, false, 0, 5], [0, 5, 1, 674, 1780, false, 0, 5], [0, 5, 1, 561, 1969, false, 0, 5], [0, 5, 1, 878, 2082, false, 0, 5], [0, 5, 1, 771, 1844, false, 0, 5], [0, 5, 1, 1021, 1890, false, 0, 5], [0, 5, 1, 1120, 2038, false, 0, 5], [0, 5, 1, 1271, 1852, false, 0, 5], [0, 5, 1, 1166, 1785, false, 0, 5], [0, 5, 1, 1246, 1629, false, 0, 5], [0, 5, 1, 1029, 1504, false, 0, 5], [0, 5, 1, 830, 1586, false, 0, 5], [0, 5, 1, 832, 1440, false, 0, 5], [0, 5, 1, 1090, 1440, false, 0, 5], [0, 5, 1, 1300, 1445, false, 0, 5], [0, 5, 1, 1245, 1271, false, 0, 5], [0, 5, 1, 1102, 1124, false, 0, 5], [0, 5, 1, 908, 1106, false, 0, 5], [0, 5, 1, 1173, 1000, false, 0, 5], [0, 5, 1, 774, 1184, false, 0, 5], [0, 5, 1, 780, 1036, false, 0, 5], [0, 5, 1, 1257, 824, false, 0, 5], [0, 5, 1, 1122, 770, false, 0, 5], [0, 5, 1, 1212, 558, false, 0, 5], [0, 5, 1, 976, 622, false, 0, 5], [0, 5, 1, 827, 571, false, 0, 5], [0, 5, 1, 783, 666, false, 0, 5], [0, 5, 1, 1026, 1072, false, 0, 5], [0, 5, 1, 1282, 1262, false, 0, 5], [0, 5, 1, 1072, 1330, false, 0, 5], [0, 5, 1, 908, 1314, false, 0, 5], [0, 5, 1, 998, 1783, false, 0, 5], [0, 5, 1, 818, 1711, false, 0, 2]];
lvl5enemies = [[0, 5, 1, -200, -200, true, 0, 0], [2, 1, 10, 2497, 1285, false, 0, 7, "none", false, false, 0], [2, 2, 10, 2426, 1081, false, 0, 7, "none", false, false, 0], [2, 3, 10, 984, 1677, false, 0, 7, "none", false, false, 0], [2, 4, 10, 2289, 1625, false, 0, 7, "none", false, false, 0], [2, 5, 10, 4074, 1247, false, 0, 7, "none", false, false, 0], [2, 6, 10, 3738, 1358, false, 0, 7, "none", false, false, 0], [2, 7, 10, 1049, 858, false, 0, 7, "none", false, false, 0], [6, "xr", 15, 544, 630, false, 0, 4, "alive", 160], [6, "xr", 15, 1010, 678, false, 0, 3, "alive", 90], [6, "yd", 15, 3300, 1120, false, 0, 3, "alive", 170], [6, "yd", 15, 3330, 1120, false, 0, 4, "alive", 170], [6, "yu", 15, 3360, 1120, false, 0, 3, "alive", 170], [6, "yd", 15, 2200, 1890, false, 0, 3, "alive", 80], [6, "yd", 15, 2600, 1880, false, 0, 3, "alive", 80], [6, "yd", 15, 2280, 1180, false, 0, 3, "alive", 100], [6, "yd", 15, 1890, 1375, false, 0, 4, "alive", 125], [6, "xr", 15, 1910, 1365, false, 0, 4, "alive", 270], [1, 0, 11, 1981, 634, false, 0, 3, "alive"], [1, 0, 11, 1815, 1361, false, 0, 3, "alive"], [1, 0, 11, 1852, 1974, false, 0, 3, "alive"], [1, 0, 11, 3217, 1013, false, 0, 3, "alive"], [1, 0, 11, 3734, 644, false, 0, 3, "alive"], [1, 0, 11, 2847, 1788, false, 0, 3, "alive"], [1, 0, 11, 542, 1213, false, 0, 3, "alive"], [0, 5, 1, 1002, 536, false, 0, 5], [0, 5, 1, 1835, 575, false, 0, 5], [0, 5, 1, 2122, 677, false, 0, 5], [0, 5, 1, 2798, 624, false, 0, 5], [0, 5, 1, 3206, 619, false, 0, 5], [0, 5, 1, 3591, 1272, false, 0, 5], [0, 5, 1, 4253, 1223, false, 0, 5], [0, 5, 1, 1021, 1355, false, 0, 5], [0, 5, 1, 2414, 1191, false, 0, 5], [0, 5, 1, 908, 1314, false, 0, 2]];
lvl6enemies = [[0, 5, 1, -200, -200, true, 0, 0], [0, 5, 1, 491, 577, false, 0, 5], [0, 5, 1, 679, 560, false, 0, 5], [0, 5, 1, 681, 693, false, 0, 5], [0, 5, 1, 535, 698, false, 0, 5], [0, 5, 1, 544, 850, false, 0, 5], [0, 5, 1, 643, 983, false, 0, 5], [0, 5, 1, 522, 1102, false, 0, 5], [0, 5, 1, 631, 1229, false, 0, 5], [0, 5, 1, 511, 1353, false, 0, 5], [0, 5, 1, 682, 1508, false, 0, 5], [0, 5, 1, 509, 1664, false, 0, 5], [0, 5, 1, 674, 1780, false, 0, 5], [0, 5, 1, 561, 1969, false, 0, 5], [0, 5, 1, 878, 2082, false, 0, 5], [0, 5, 1, 771, 1844, false, 0, 5], [0, 5, 1, 1021, 1890, false, 0, 5], [0, 5, 1, 1120, 2038, false, 0, 5], [0, 5, 1, 1271, 1852, false, 0, 5], [0, 5, 1, 1166, 1785, false, 0, 5], [0, 5, 1, 1246, 1629, false, 0, 5], [0, 5, 1, 1029, 1504, false, 0, 5], [0, 5, 1, 830, 1586, false, 0, 5], [0, 5, 1, 832, 1440, false, 0, 5], [0, 5, 1, 1090, 1440, false, 0, 5], [0, 5, 1, 1300, 1445, false, 0, 5], [0, 5, 1, 1245, 1271, false, 0, 5], [0, 5, 1, 1102, 1124, false, 0, 5], [0, 5, 1, 908, 1106, false, 0, 5], [0, 5, 1, 1173, 1000, false, 0, 5], [0, 5, 1, 774, 1184, false, 0, 5], [0, 5, 1, 780, 1036, false, 0, 5], [0, 5, 1, 1257, 824, false, 0, 5], [0, 5, 1, 1122, 770, false, 0, 5], [0, 5, 1, 1212, 558, false, 0, 5], [0, 5, 1, 976, 622, false, 0, 5], [0, 5, 1, 827, 571, false, 0, 5], [0, 5, 1, 783, 666, false, 0, 5], [0, 5, 1, 1026, 1072, false, 0, 5], [0, 5, 1, 1282, 1262, false, 0, 5], [0, 5, 1, 1072, 1330, false, 0, 5], [0, 5, 1, 908, 1314, false, 0, 5], [0, 5, 1, 998, 1783, false, 0, 5], [0, 5, 1, 818, 1711, false, 0, 2]];
lvl7enemies = [[0, 5, 1, -200, -200, true, 0, 0], [2, 1, 10, 2569, 1607, false, 0, 7, "none", false, false, 0], [2, 2, 10, 2403, 1700, false, 0, 7, "none", false, false, 0], [2, 3, 10, 2253, 1566, false, 0, 7, "none", false, false, 0], [2, 4, 10, 2474, 1168, false, 0, 7, "none", false, false, 0], [2, 5, 10, 2318, 989, false, 0, 7, "none", false, false, 0], [0, 5, 1, 1207, 1026, false, 0, 5], [0, 5, 1, 1663, 1148, false, 0, 5], [0, 5, 1, 1766, 963, false, 0, 5], [0, 5, 1, 1681, 709, false, 0, 5], [0, 5, 1, 1465, 741, false, 0, 5], [0, 5, 1, 1276, 736, false, 0, 5], [0, 5, 1, 940, 834, false, 0, 5], [0, 5, 1, 2382, 1159, false, 0, 5], [0, 5, 1, 2410, 1526, false, 0, 5], [3, 15, 12, 1678, 977, false, 0, 9, "alive"]];
lvl8enemies = lvl2enemies;
lvl9enemies = [[0, 5, 1, -200, -200, true, 0, 0], [3, 10, 12, 2649, 689, false, 0, 9, "alive"], [3, 10, 12, 2772, 1259, false, 0, 9, "alive"], [3, 10, 12, 3809, 1301, false, 0, 9, "alive"], [3, 10, 12, 3838, 1031, false, 0, 9, "alive"], [3, 10, 12, 3311, 913, false, 0, 9, "alive"], [3, 10, 12, 1766, 900, false, 0, 9, "alive"], [0, 5, 1, 1882, 339, false, 0, 5], [0, 5, 1, 1470, 315, false, 0, 5], [0, 5, 1, 1097, 316, false, 0, 5], [0, 5, 1, 1526, 860, false, 0, 5], [0, 5, 1, 1302, 1008, false, 0, 5], [0, 5, 1, 1009, 846, false, 0, 5], [0, 5, 1, 696, 869, false, 0, 5], [0, 5, 1, 1770, 1485, false, 0, 5], [0, 5, 1, 1215, 1565, false, 0, 5], [0, 5, 1, 1156, 1827, false, 0, 5], [0, 5, 1, 1760, 1967, false, 0, 5], [0, 5, 1, 4722, 821, false, 0, 5], [0, 5, 1, 4545, 317, false, 0, 5], [0, 5, 1, 3914, 394, false, 0, 5], [0, 5, 1, 3616, 290, false, 0, 5], [0, 5, 1, 2858, 1241, false, 0, 5], [0, 5, 1, 2823, 890, false, 0, 5], [0, 5, 1, 3534, 1006, false, 0, 5], [0, 5, 1, 3657, 1505, false, 0, 5], [0, 5, 1, 4087, 1122, false, 0, 5], [0, 5, 1, 4625, 1191, false, 0, 5], [6, "xr", 15, 4720, 665, false, 0, 4, "alive", 120], [6, "xr", 15, 4720, 635, false, 0, 5, "alive", 120], [6, "xr", 15, 4720, 695, false, 0, 3, "alive", 120], [6, "yd", 15, 2390, 2050, false, 0, 4, "alive", 90], [6, "xr", 15, 1180, 1730, false, 0, 4, "alive", 190], [6, "xr", 15, 1160, 1800, false, 0, 4, "alive", 150], [1, 0, 11, 1211, 1598, false, 0, 3, "alive"], [1, 0, 11, 2032, 289, false, 0, 3, "alive"], [1, 0, 11, 4671, 1085, false, 0, 3, "alive"], [1, 0, 11, 4521, 326, false, 0, 3, "alive"], [2, 1, 10, 1051, 397, false, 0, 7, "none", false, false, 0], [2, 2, 10, 3062, 1825, false, 0, 7, "none", false, false, 0], [2, 3, 10, 1703, 1827, false, 0, 7, "none", false, false, 0], [2, 4, 10, 3660, 184, false, 0, 7, "none", false, false, 0], [2, 5, 10, 3489, 290, false, 0, 7, "none", false, false, 0], [2, 6, 10, 3680, 438, false, 0, 7, "none", false, false, 0], [2, 7, 10, 1076, 222, false, 0, 7, "none", false, false, 0]];
lvl10enemies = lvl2enemies;
lvl11enemies = [[0, 5, 1, -200, -200, true, 0, 0], [2, 1, 10, 3736, 711, false, 0, 7, "none", false, false, 0], [2, 2, 10, 3811, 834, false, 0, 7, "none", false, false, 0], [2, 3, 10, 3787, 2226, false, 0, 7, "none", false, false, 0], [2, 4, 10, 3434, 2213, false, 0, 7, "none", false, false, 0], [2, 5, 10, 3635, 2273, false, 0, 7, "none", false, false, 0], [6, "yu", 15, 900, 900, false, 0, 4, "alive", 150], [6, "yd", 15, 920, 920, false, 0, 5, "alive", 170], [6, "yd", 15, 1467, 609, false, 0, 5, "alive", 50], [6, "yd", 15, 1608, 658, false, 0, 5, "alive", 100], [6, "yd", 15, 2112, 678, false, 0, 5, "alive", 100], [6, "yd", 15, 2976, 651, false, 0, 5, "alive", 100], [6, "yd", 15, 3193, 1521, false, 0, 5, "alive", 100], [6, "yd", 15, 2100, 1177, false, 0, 5, "alive", 100], [6, "xr", 15, 3699, 1842, false, 0, 5, "alive", 100], [6, "xr", 15, 3606, 1068, false, 0, 5, "alive", 100], [6, "xr", 15, 3588, 967, false, 0, 5, "alive", 100], [6, "xr", 15, 1768, 876, false, 0, 5, "alive", 100], [6, "xr", 15, 1765, 964, false, 0, 5, "alive", 100], [6, "xr", 15, 3723, 1683, false, 0, 5, "alive", 100], [6, "xr", 15, 3732, 1775, false, 0, 5, "alive", 100], [6, "yd", 15, 3271, 752, false, 0, 5, "alive", 130], [6, "yd", 15, 3130, 679, false, 0, 5, "alive", 130], [1, 0, 11, 1198, 650, false, 0, 4, "alive"], [0, 5, 1, 2377, 574, false, 0, 5], [0, 5, 1, 3227, 727, false, 0, 5], [0, 5, 1, 3639, 838, false, 0, 5], [0, 5, 1, 3269, 1172, false, 0, 5], [0, 5, 1, 2793, 1346, false, 0, 5], [0, 5, 1, 3329, 1538, false, 0, 5], [0, 5, 1, 3662, 1486, false, 0, 5], [0, 5, 1, 3468, 1991, false, 0, 5], [0, 5, 1, 3678, 2125, false, 0, 5], [0, 5, 1, 2267, 1261, false, 0, 5], [0, 5, 1, 1115, 634, false, 0, 5], [0, 5, 1, 1330, 878, false, 0, 5], [0, 5, 1, 1095, 1087, false, 0, 5], [0, 5, 1, 2728, 637, false, 0, 5], [0, 5, 1, 1901, 1126, false, 0, 5], [0, 5, 1, 1766, 762, false, 0, 5], [1, 0, 11, 2531, 637, false, 0, 4, "alive"], [1, 0, 11, 2832, 1306, false, 0, 4, "alive"], [4, 30, 13, 2499, 1501, false, 0, 1, "alive"], [4, 30, 13, 2579, 479, false, 0, 1, "alive"], [4, 30, 13, 1200, 1100, false, 0, 1, "alive"]];
lvl12enemies = lvl2enemies;
lvl13enemies = [[0, 5, 1, -200, -200, true, 0, 0], [4, 30, 13, 1582, 1534, false, 0, 1, "alive"], [4, 30, 13, 2420, 1532, false, 0, 1, "alive"], [4, 30, 13, 2955, 849, false, 0, 1, "alive"], [4, 30, 13, 3791, 755, false, 0, 1, "alive"], [4, 30, 13, 3792, 533, false, 0, 1, "alive"], [4, 30, 13, 4878, 1230, false, 0, 1, "alive"], [4, 30, 13, 6011, 1381, false, 0, 1, "alive"], [4, 30, 13, 6009, 1853, false, 0, 1, "alive"], [4, 30, 13, 4126, 1552, false, 0, 1, "alive"], [4, 30, 13, 4254, 2198, false, 0, 1, "alive"], [4, 30, 13, 5677, 1578, false, 0, 1, "alive"], [4, 30, 13, 2460, 860, false, 0, 1, "alive"], [4, 30, 13, 8005, 1033, false, 0, 1, "alive"], [1, 0, 11, 3884, 1800, false, 0, 4, "alive"], [1, 0, 11, 1142, 1289, false, 0, 4, "alive"], [1, 0, 11, 1354, 881, false, 0, 4, "alive"], [1, 0, 11, 3427, 739, false, 0, 4, "alive"], [1, 0, 11, 4393, 874, false, 0, 4, "alive"], [1, 0, 11, 6713, 996, false, 0, 4, "alive"], [1, 0, 11, 7705, 1094, false, 0, 4, "alive"], [6, "yu", 15, 1134, 171, false, 0, 5, "alive", 50], [6, "xr", 15, 1776, 423, false, 0, 5, "alive", 210], [6, "xr", 15, 4260, 122, false, 0, 5, "alive", 150], [6, "yu", 15, 3792, 183, false, 0, 5, "alive", 50], [6, "yu", 15, 4768, 262, false, 0, 5, "alive", 50], [6, "yu", 15, 3770, 1221, false, 0, 5, "alive", 160], [6, "yu", 15, 3970, 1181, false, 0, 5, "alive", 110], [6, "yu", 15, 4120, 1091, false, 0, 5, "alive", 110], [6, "yu", 15, 3871, 1206, false, 0, 5, "alive", 110], [6, "xr", 15, 4108, 1067, false, 0, 5, "alive", 170], [6, "yu", 15, 5393, 419, false, 0, 5, "alive", 50], [6, "xr", 15, 5323, 680, false, 0, 5, "alive", 50], [6, "xr", 15, 7852, 1294, false, 0, 5, "alive", 130], [6, "xr", 15, 7853, 1376, false, 0, 6, "alive", 150], [6, "xr", 15, 7879, 785, false, 0, 5, "alive", 160], [6, "xr", 15, 7870, 861, false, 0, 6, "alive", 170], [6, "xr", 15, 6724, 1652, false, 0, 6, "alive", 140], [6, "xr", 15, 6712, 1577, false, 0, 5, "alive", 140], [6, "yu", 15, 6042, 2382, false, 0, 5, "alive", 70], [6, "yu", 15, 1806, 2213, false, 0, 6, "alive", 140], [6, "yu", 15, 1846, 2213, false, 0, 7, "alive", 140], [6, "yu", 15, 1886, 2213, false, 0, 8, "alive", 140], [6, "yu", 15, 1361, 2241, false, 0, 6, "alive", 160], [6, "yu", 15, 1321, 2241, false, 0, 7, "alive", 160], [6, "yu", 15, 1281, 2241, false, 0, 8, "alive", 160], [3, 10, 12, 2486, 1289, false, 0, 9, "alive"], [3, 10, 12, 4392, 1893, false, 0, 9, "alive"], [0, 5, 1, 6635, 1068, false, 0, 5], [0, 5, 1, 6753, 926, false, 0, 5], [0, 5, 1, 3748, 1114, false, 0, 5], [0, 5, 1, 5403, 1488, false, 0, 5], [0, 5, 1, 5713, 1787, false, 0, 5], [0, 5, 1, 6337, 1569, false, 0, 5], [0, 5, 1, 6743, 1625, false, 0, 5], [0, 5, 1, 5997, 2398, false, 0, 5], [0, 5, 1, 4514, 2050, false, 0, 5], [0, 5, 1, 4051, 1794, false, 0, 5], [0, 5, 1, 3183, 1673, false, 0, 5], [0, 5, 1, 687, 1002, false, 0, 5], [0, 5, 1, 1058, 802, false, 0, 5], [0, 5, 1, 1906, 215, false, 0, 5], [0, 5, 1, 4390, 180, false, 0, 5], [0, 5, 1, 4201, 681, false, 0, 5], [0, 5, 1, 4494, 1053, false, 0, 5], [0, 5, 1, 4681, 1617, false, 0, 5], [0, 5, 1, 2884, 1466, false, 0, 5], [0, 5, 1, 2334, 1066, false, 0, 5], [0, 5, 1, 1590, 1392, false, 0, 5], [0, 5, 1, 1278, 2191, false, 0, 5], [0, 5, 1, 1836, 2216, false, 0, 5], [0, 5, 1, 1885, 1024, false, 0, 5], [0, 5, 1, 3518, 617, false, 0, 5], [0, 5, 1, 3574, 822, false, 0, 5], [0, 5, 1, 5888, 1528, false, 0, 5], [0, 5, 1, 7896, 785, false, 0, 5], [0, 5, 1, 2043, 1793, false, 0, 5], [0, 5, 1, 2719, 1071, false, 0, 5], [0, 5, 1, 3054, 642, false, 0, 5], [0, 5, 1, 4482, 1734, false, 0, 5], [0, 5, 1, 1142, 1321, false, 0, 5], [0, 5, 1, 2525, 1287, false, 0, 5], [0, 5, 1, 3467, 1264, false, 0, 5], [2, 1, 10, 7625, 1644, false, 0, 7, "none", false, false, 0], [2, 2, 10, 7853, 1684, false, 0, 7, "none", false, false, 0], [2, 3, 10, 7919, 653, false, 0, 7, "none", false, false, 0], [2, 4, 10, 6738, 1352, false, 0, 7, "none", false, false, 0], [2, 5, 10, 6551, 1414, false, 0, 7, "none", false, false, 0], [2, 6, 10, 6207, 2411, false, 0, 7, "none", false, false, 0], [2, 7, 10, 3152, 1200, false, 0, 7, "none", false, false, 0], [2, 8, 10, 3316, 1416, false, 0, 7, "none", false, false, 0], [2, 9, 10, 1960, 1535, false, 0, 7, "none", false, false, 0], [2, 10, 10, 1597, 2107, false, 0, 7, "none", false, false, 0], [2, 11, 10, 1688, 203, false, 0, 7, "none", false, false, 0]];
lvl14enemies = lvl2enemies;
lvl15enemies = [[0, 5, 1, -200, -200, true, 0, 0], [4, 30, 13, 7049, 1268, false, 0, 1, "alive"], [4, 30, 13, 7076, 928, false, 0, 1, "alive"], [4, 30, 13, 7703, 1435, false, 0, 1, "alive"], [4, 30, 13, 7958, 1428, false, 0, 1, "alive"], [4, 30, 13, 7811, 1232, false, 0, 1, "alive"], [4, 30, 13, 9058, 1132, false, 0, 1, "alive"], [4, 30, 13, 8841, 1111, false, 0, 1, "alive"], [4, 30, 13, 9475, 720, false, 0, 1, "alive"], [4, 30, 13, 9219, 919, false, 0, 1, "alive"], [4, 30, 13, 12865, 860, false, 0, 1, "alive"], [4, 30, 13, 12814, 1283, false, 0, 1, "alive"], [4, 30, 13, 12494, 870, false, 0, 1, "alive"], [4, 30, 13, 10900, 1612, false, 0, 1, "alive"], [4, 30, 13, 7025, 2052, false, 0, 1, "alive"], [4, 30, 13, 5421, 1471, false, 0, 1, "alive"], [4, 30, 13, 5226, 1477, false, 0, 1, "alive"], [4, 30, 13, 1844, 1651, false, 0, 1, "alive"], [4, 30, 13, 1610, 1329, false, 0, 1, "alive"], [4, 30, 13, 3467, 2116, false, 0, 1, "alive"], [4, 30, 13, 3400, 1896, false, 0, 1, "alive"], [4, 30, 13, 1609, 1901, false, 0, 1, "alive"], [4, 30, 13, 1625, 2044, false, 0, 1, "alive"], [4, 30, 13, 781, 1592, false, 0, 1, "alive"], [4, 30, 13, 9033, 1948, false, 0, 1, "alive"], [4, 30, 13, 8990, 1799, false, 0, 1, "alive"], [4, 30, 13, 10717, 624, false, 0, 1, "alive"], [4, 30, 13, 11629, 1079, false, 0, 1, "alive"], [4, 30, 13, 5504, 2070, false, 0, 1, "alive"], [3, 10, 12, 492, 2018, false, 0, 9, "alive"], [3, 10, 12, 4826, 980, false, 0, 9, "alive"], [3, 10, 12, 12094, 1087, false, 0, 9, "alive"], [3, 10, 12, 993, 999, false, 0, 9, "alive"], [1, 0, 11, 8382, 1208, false, 0, 4, "alive"], [1, 0, 11, 9025, 750, false, 0, 4, "alive"], [1, 0, 11, 11172, 764, false, 0, 4, "alive"], [1, 0, 11, 11372, 1449, false, 0, 4, "alive"], [1, 0, 11, 7199, 1750, false, 0, 4, "alive"], [1, 0, 11, 4765, 2096, false, 0, 4, "alive"], [1, 0, 11, 4377, 1445, false, 0, 4, "alive"], [1, 0, 11, 4049, 735, false, 0, 4, "alive"], [1, 0, 11, 3788, 850, false, 0, 4, "alive"], [1, 0, 11, 3607, 327, false, 0, 4, "alive"], [1, 0, 11, 2919, 771, false, 0, 4, "alive"], [1, 0, 11, 2541, 569, false, 0, 4, "alive"], [1, 0, 11, 1485, 967, false, 0, 4, "alive"], [1, 0, 11, 817, 1238, false, 0, 4, "alive"], [1, 0, 11, 2483, 1427, false, 0, 4, "alive"], [1, 0, 11, 6112, 1965, false, 0, 4, "alive"], [1, 0, 11, 6119, 607, false, 0, 4, "alive"], [1, 0, 11, 5782, 888, false, 0, 4, "alive"], [1, 0, 11, 10304, 1031, false, 0, 4, "alive"], [6, "xr", 15, 7703, 456, false, 0, 5, "alive", 70], [6, "xr", 15, 7699, 381, false, 0, 5, "alive", 90], [6, "yd", 15, 7790, 304, false, 0, 5, "alive", 90], [6, "yd", 15, 7599, 300, false, 0, 5, "alive", 90], [6, "xr", 15, 7242, 1412, false, 0, 5, "alive", 60], [6, "xr", 15, 7241, 1496, false, 0, 4, "alive", 60], [6, "yd", 15, 6916, 1742, false, 0, 6, "alive", 60], [6, "yd", 15, 6829, 1768, false, 0, 5, "alive", 80], [6, "yd", 15, 6672, 1808, false, 0, 6, "alive", 80], [6, "yd", 15, 5607, 2179, false, 0, 5, "alive", 100], [6, "yd", 15, 5403, 2182, false, 0, 6, "alive", 100], [6, "yd", 15, 4954, 2101, false, 0, 7, "alive", 100], [6, "xr", 15, 4800, 1953, false, 0, 5, "alive", 70], [6, "xr", 15, 4816, 1764, false, 0, 5, "alive", 70], [6, "xr", 15, 4199, 1696, false, 0, 5, "alive", 110], [6, "xr", 15, 4157, 1800, false, 0, 5, "alive", 130], [6, "xr", 15, 4125, 1883, false, 0, 5, "alive", 140], [6, "xr", 15, 4844, 464, false, 0, 5, "alive", 50], [6, "xr", 15, 4845, 512, false, 0, 6, "alive", 50], [6, "xr", 15, 4847, 573, false, 0, 7, "alive", 50], [6, "yd", 15, 3331, 546, false, 0, 8, "alive", 120], [6, "yd", 15, 3228, 551, false, 0, 7, "alive", 120], [6, "yd", 15, 3154, 571, false, 0, 8, "alive", 140], [6, "yd", 15, 8500, 2106, false, 0, 5, "alive", 180], [6, "yd", 15, 8422, 2106, false, 0, 6, "alive", 180], [6, "xr", 15, 8426, 2149, false, 0, 5, "alive", 140], [6, "xr", 15, 8393, 2236, false, 0, 5, "alive", 120], [6, "xr", 15, 8421, 2020, false, 0, 6, "alive", 120], [6, "yd", 15, 2951, 1244, false, 0, 5, "alive", 60], [6, "yd", 15, 3390, 1131, false, 0, 5, "alive", 60], [6, "yd", 15, 2024, 1481, false, 0, 5, "alive", 60], [6, "yd", 15, 2561, 1434, false, 0, 5, "alive", 60], [6, "yd", 15, 2352, 1449, false, 0, 5, "alive", 60], [6, "yd", 15, 1676, 1440, false, 0, 5, "alive", 130], [6, "xr", 15, 1904, 355, false, 0, 5, "alive", 50], [6, "xr", 15, 1788, 483, false, 0, 5, "alive", 50], [6, "yd", 15, 1948, 424, false, 0, 5, "alive", 100], [6, "yd", 15, 1744, 366, false, 0, 5, "alive", 100], [6, "yd", 15, 2423, 516, false, 0, 5, "alive", 100], [6, "yd", 15, 1867, 826, false, 0, 5, "alive", 100], [0, 5, 1, 8945, 771, false, 0, 5], [0, 5, 1, 4733, 2111, false, 0, 5], [0, 5, 1, 7267, 2148, false, 0, 5], [0, 5, 1, 7247, 1758, false, 0, 5], [0, 5, 1, 6419, 827, false, 0, 5], [0, 5, 1, 5652, 635, false, 0, 5], [0, 5, 1, 7799, 1356, false, 0, 5], [0, 5, 1, 7851, 738, false, 0, 5], [0, 5, 1, 8492, 1329, false, 0, 5], [0, 5, 1, 8445, 2109, false, 0, 5], [0, 5, 1, 10025, 1380, false, 0, 5], [0, 5, 1, 11522, 1391, false, 0, 5], [0, 5, 1, 12333, 1133, false, 0, 5], [0, 5, 1, 12934, 1046, false, 0, 5], [0, 5, 1, 7685, 296, false, 0, 5], [0, 5, 1, 9968, 730, false, 0, 5], [0, 5, 1, 11041, 1106, false, 0, 5], [0, 5, 1, 8935, 1208, false, 0, 5], [0, 5, 1, 6198, 577, false, 0, 5], [0, 5, 1, 7015, 1065, false, 0, 5], [0, 5, 1, 6478, 1954, false, 0, 5], [0, 5, 1, 5834, 2077, false, 0, 5], [0, 5, 1, 5314, 1631, false, 0, 5], [0, 5, 1, 4584, 1435, false, 0, 5], [0, 5, 1, 4017, 2029, false, 0, 5], [0, 5, 1, 3026, 1822, false, 0, 5], [0, 5, 1, 2960, 2006, false, 0, 5], [0, 5, 1, 2091, 2105, false, 0, 5], [0, 5, 1, 687, 1907, false, 0, 5], [0, 5, 1, 1629, 943, false, 0, 5], [0, 5, 1, 2188, 744, false, 0, 5], [0, 5, 1, 1842, 358, false, 0, 5], [0, 5, 1, 3335, 500, false, 0, 5], [0, 5, 1, 4481, 507, false, 0, 5], [0, 5, 1, 4812, 1023, false, 0, 5], [0, 5, 1, 1384, 1440, false, 0, 5], [0, 5, 1, 1870, 1473, false, 0, 5], [0, 5, 1, 2727, 1379, false, 0, 5], [0, 5, 1, 4162, 914, false, 0, 5], [0, 5, 1, 3613, 308, false, 0, 5], [0, 5, 1, 2878, 790, false, 0, 5], [0, 5, 1, 802, 1026, false, 0, 5], [2, 1, 10, 7268, 2039, false, 0, 7, "none", false, false, 0], [2, 2, 10, 7873, 282, false, 0, 7, "none", false, false, 0], [2, 3, 10, 9681, 542, false, 0, 7, "none", false, false, 0], [2, 4, 10, 13106, 945, false, 0, 7, "none", false, false, 0], [2, 5, 10, 8331, 2297, false, 0, 7, "none", false, false, 0], [2, 6, 10, 5615, 1608, false, 0, 7, "none", false, false, 0], [2, 7, 10, 2281, 1987, false, 0, 7, "none", false, false, 0], [2, 8, 10, 766, 2246, false, 0, 7, "none", false, false, 0], [2, 9, 10, 1772, 149, false, 0, 7, "none", false, false, 0], [2, 10, 10, 4950, 350, false, 0, 7, "none", false, false, 0]];
lvl16enemies = lvl2enemies;
lvl17enemies = [[0, 5, 1, -200, -200, true, 0, 0], [7, 30, 16, 1078, 899, false, 0, 1, "alive"], [1, 0, 11, 19368, 1162, false, 0, 4, "alive"], [4, 30, 13, 19530, 1244, false, 0, 1, "alive"], [4, 30, 13, 19606, 952, false, 0, 1, "alive"], [4, 30, 13, 20030, 1042, false, 0, 1, "alive"], [4, 30, 13, 20425, 1138, false, 0, 1, "alive"], [4, 30, 13, 20316, 897, false, 0, 1, "alive"], [4, 30, 13, 20179, 1364, false, 0, 1, "alive"], [4, 30, 13, 20824, 1820, false, 0, 1, "alive"], [4, 30, 13, 21055, 1790, false, 0, 1, "alive"], [4, 30, 13, 20807, 1436, false, 0, 1, "alive"], [4, 30, 13, 22151, 2090, false, 0, 1, "alive"], [4, 30, 13, 22029, 2253, false, 0, 1, "alive"], [4, 30, 13, 21218, 2149, false, 0, 1, "alive"], [4, 30, 13, 21515, 954, false, 0, 1, "alive"], [4, 30, 13, 21519, 752, false, 0, 1, "alive"], [4, 30, 13, 21686, 473, false, 0, 1, "alive"], [4, 30, 13, 23892, 556, false, 0, 1, "alive"], [4, 30, 13, 24041, 803, false, 0, 1, "alive"], [4, 30, 13, 23283, 1078, false, 0, 1, "alive"], [4, 30, 13, 23917, 1415, false, 0, 1, "alive"], [4, 30, 13, 24018, 1171, false, 0, 1, "alive"], [4, 30, 13, 24399, 611, false, 0, 1, "alive"], [4, 30, 13, 24831, 797, false, 0, 1, "alive"], [4, 30, 13, 24449, 980, false, 0, 1, "alive"], [4, 30, 13, 21308, 735, false, 0, 1, "alive"], [4, 30, 13, 20959, 497, false, 0, 1, "alive"], [0, 5, 1, 24182, 1810, false, 0, 5], [0, 5, 1, 21785, 971, false, 0, 5], [1, 0, 11, 20486, 1690, false, 0, 4, "alive"], [1, 0, 11, 20735, 772, false, 0, 4, "alive"], [1, 0, 11, 22264, 730, false, 0, 4, "alive"], [1, 0, 11, 23485, 1119, false, 0, 4, "alive"], [1, 0, 11, 24720, 1044, false, 0, 4, "alive"], [6, "yd", 15, 18878, 462, false, 0, 5, "alive", 120], [6, "yd", 15, 18936, 463, false, 0, 5, "alive", 120], [6, "yd", 15, 18999, 463, false, 0, 5, "alive", 120], [6, "yd", 15, 19059, 463, false, 0, 5, "alive", 100], [6, "yd", 15, 19255, 458, false, 0, 5, "alive", 50], [6, "yd", 15, 19417, 500, false, 0, 5, "alive", 70], [6, "yd", 15, 18934, 926, false, 0, 5, "alive", 50], [6, "yd", 15, 19052, 1031, false, 0, 5, "alive", 120], [6, "yd", 15, 3496, 915, false, 0, 8, "alive", 160], [6, "yu", 15, 3326, 917, false, 0, 7, "alive", 160], [6, "yu", 15, 3452, 912, false, 0, 6, "alive", 160], [6, "yd", 15, 1954, 905, false, 0, 5, "alive", 160], [6, "yu", 15, 1669, 905, false, 0, 6, "alive", 160], [6, "yd", 15, 3068, 826, false, 0, 7, "alive", 80], [1, 0, 11, 4745, 893, false, 0, 4, "alive"], [1, 0, 11, 3540, 876, false, 0, 4, "alive"], [1, 0, 11, 8321, 968, false, 0, 4, "alive"], [1, 0, 11, 9135, 983, false, 0, 4, "alive"], [1, 0, 11, 10618, 891, false, 0, 4, "alive"], [1, 0, 11, 11344, 905, false, 0, 4, "alive"], [1, 0, 11, 13898, 986, false, 0, 4, "alive"], [1, 0, 11, 14834, 867, false, 0, 4, "alive"], [1, 0, 11, 17208, 920, false, 0, 4, "alive"], [4, 30, 13, 18200, 774, false, 0, 1, "alive"], [4, 30, 13, 18190, 1035, false, 0, 1, "alive"], [4, 30, 13, 13245, 874, false, 0, 1, "alive"], [4, 30, 13, 15415, 1041, false, 0, 1, "alive"], [4, 30, 13, 7211, 1057, false, 0, 1, "alive"], [0, 5, 1, 22222, 1275, false, 0, 5], [0, 5, 1, 22698, 1122, false, 0, 5], [0, 5, 1, 22901, 1059, false, 0, 5], [0, 5, 1, 22770, 1757, false, 0, 5], [0, 5, 1, 22273, 1795, false, 0, 5], [0, 5, 1, 22058, 1818, false, 0, 5], [0, 5, 1, 22051, 2338, false, 0, 5], [0, 5, 1, 20974, 2333, false, 0, 5], [0, 5, 1, 20964, 2083, false, 0, 5], [0, 5, 1, 20907, 1643, false, 0, 5], [0, 5, 1, 20722, 1534, false, 0, 5], [0, 5, 1, 20405, 1590, false, 0, 5], [0, 5, 1, 19995, 1400, false, 0, 5], [0, 5, 1, 19756, 1194, false, 0, 5], [0, 5, 1, 19191, 1153, false, 0, 5], [0, 5, 1, 18743, 883, false, 0, 5], [0, 5, 1, 21616, 2127, false, 0, 5], [0, 5, 1, 20440, 952, false, 0, 5], [0, 5, 1, 20221, 1109, false, 0, 5], [0, 5, 1, 20031, 840, false, 0, 5], [0, 5, 1, 19784, 907, false, 0, 5], [0, 5, 1, 19638, 563, false, 0, 5], [0, 5, 1, 18719, 407, false, 0, 5], [0, 5, 1, 20800, 764, false, 0, 5], [0, 5, 1, 21127, 615, false, 0, 5], [0, 5, 1, 21555, 565, false, 0, 5], [0, 5, 1, 21795, 819, false, 0, 5], [0, 5, 1, 21678, 1142, false, 0, 5], [0, 5, 1, 21090, 1037, false, 0, 5], [0, 5, 1, 22505, 726, false, 0, 5], [0, 5, 1, 23498, 1577, false, 0, 5], [0, 5, 1, 23265, 1520, false, 0, 5], [0, 5, 1, 23482, 1116, false, 0, 5], [0, 5, 1, 24098, 1336, false, 0, 5], [0, 5, 1, 24018, 2226, false, 0, 5], [0, 5, 1, 23887, 2050, false, 0, 5], [0, 5, 1, 24643, 1302, false, 0, 5], [0, 5, 1, 24573, 892, false, 0, 5], [0, 5, 1, 24666, 522, false, 0, 5], [0, 5, 1, 24528, 240, false, 0, 5], [0, 5, 1, 23835, 648, false, 0, 5], [0, 5, 1, 24103, 594, false, 0, 5], [0, 5, 1, 17958, 821, false, 0, 5], [0, 5, 1, 17766, 934, false, 0, 5], [0, 5, 1, 17122, 925, false, 0, 5], [0, 5, 1, 16516, 936, false, 0, 5], [0, 5, 1, 15890, 949, false, 0, 5], [0, 5, 1, 15519, 902, false, 0, 5], [0, 5, 1, 14204, 914, false, 0, 5], [0, 5, 1, 13533, 822, false, 0, 5], [0, 5, 1, 12877, 926, false, 0, 5], [0, 5, 1, 12277, 955, false, 0, 5], [0, 5, 1, 11788, 895, false, 0, 5], [0, 5, 1, 11176, 907, false, 0, 5], [0, 5, 1, 10540, 866, false, 0, 5], [0, 5, 1, 9981, 982, false, 0, 5], [0, 5, 1, 9360, 814, false, 0, 5], [0, 5, 1, 9057, 953, false, 0, 5], [0, 5, 1, 8556, 804, false, 0, 5], [0, 5, 1, 8173, 1019, false, 0, 5], [0, 5, 1, 7794, 792, false, 0, 5], [0, 5, 1, 7468, 1025, false, 0, 5], [0, 5, 1, 6992, 812, false, 0, 5], [0, 5, 1, 6632, 970, false, 0, 5], [0, 5, 1, 5980, 803, false, 0, 5], [0, 5, 1, 5456, 974, false, 0, 5], [0, 5, 1, 4981, 927, false, 0, 5], [0, 5, 1, 4402, 870, false, 0, 5], [0, 5, 1, 3838, 916, false, 0, 5], [0, 5, 1, 3243, 1004, false, 0, 5], [0, 5, 1, 2714, 989, false, 0, 5], [0, 5, 1, 2145, 870, false, 0, 5], [0, 5, 1, 1791, 900, false, 0, 5], [2, 1, 10, 4057, 867, false, 0, 7, "none", false, false, 0], [2, 2, 10, 21057, 1984, false, 0, 7, "none", false, false, 0], [2, 3, 10, 20859, 2023, false, 0, 7, "none", false, false, 0], [2, 4, 10, 22522, 1567, false, 0, 7, "none", false, false, 0], [2, 5, 10, 21307, 970, false, 0, 7, "none", false, false, 0], [2, 6, 10, 23937, 317, false, 0, 7, "none", false, false, 0], [2, 7, 10, 24168, 2230, false, 0, 7, "none", false, false, 0], [2, 8, 10, 23915, 2324, false, 0, 7, "none", false, false, 0], [2, 9, 10, 23557, 1499, false, 0, 7, "none", false, false, 0], [2, 10, 10, 23523, 1673, false, 0, 7, "none", false, false, 0], [2, 11, 10, 24640, 213, false, 0, 7, "none", false, false, 0], [2, 12, 10, 22808, 924, false, 0, 7, "none", false, false, 0]];
lvl18enemies = [[0, 5, 1, -200, -200, true, 0, 0], [0, 5, 1, 818, 640, false, 0, 5], [0, 5, 1, 560, 918, false, 0, 5], [0, 5, 1, 802, 1053, false, 0, 5], [0, 5, 1, 650, 1371, false, 0, 5], [0, 5, 1, 763, 1516, false, 0, 5], [0, 5, 1, 615, 1731, false, 0, 5], [0, 5, 1, 837, 1932, false, 0, 5], [0, 5, 1, 1264, 1860, false, 0, 5], [0, 5, 1, 1249, 2166, false, 0, 5], [0, 5, 1, 1551, 2024, false, 0, 5], [0, 5, 1, 1726, 2094, false, 0, 5], [0, 5, 1, 1711, 1870, false, 0, 5], [0, 5, 1, 1530, 1632, false, 0, 5], [0, 5, 1, 1557, 1495, false, 0, 5], [0, 5, 1, 1242, 1538, false, 0, 5], [0, 5, 1, 1548, 1353, false, 0, 5], [0, 5, 1, 1312, 1125, false, 0, 5], [0, 5, 1, 1567, 888, false, 0, 5], [0, 5, 1, 1747, 665, false, 0, 5], [0, 5, 1, 1337, 543, false, 0, 5], [0, 5, 1, 2048, 556, false, 0, 5], [0, 5, 1, 2071, 782, false, 0, 5], [0, 5, 1, 1846, 1017, false, 0, 5], [0, 5, 1, 1848, 1286, false, 0, 5], [0, 5, 1, 1878, 1379, false, 0, 5], [0, 5, 1, 1919, 1652, false, 0, 5], [0, 5, 1, 2101, 2011, false, 0, 5], [0, 5, 1, 1837, 2200, false, 0, 5], [0, 5, 1, 2431, 2050, false, 0, 5], [0, 5, 1, 2380, 1833, false, 0, 5], [0, 5, 1, 2173, 1496, false, 0, 5], [0, 5, 1, 2097, 1065, false, 0, 5], [0, 5, 1, 2347, 833, false, 0, 5], [0, 5, 1, 2350, 508, false, 0, 5], [0, 5, 1, 2635, 554, false, 0, 5], [0, 5, 1, 2517, 944, false, 0, 5], [0, 5, 1, 2348, 1178, false, 0, 5], [0, 5, 1, 2368, 1414, false, 0, 5], [0, 5, 1, 2598, 1726, false, 0, 5], [0, 5, 1, 2777, 1744, false, 0, 5], [0, 5, 1, 2660, 1408, false, 0, 5], [0, 5, 1, 2572, 1133, false, 0, 5], [0, 5, 1, 2871, 836, false, 0, 5], [0, 5, 1, 2947, 604, false, 0, 5], [0, 5, 1, 2799, 574, false, 0, 5], [0, 5, 1, 3236, 712, false, 0, 5], [0, 5, 1, 3283, 870, false, 0, 5], [0, 5, 1, 3028, 1132, false, 0, 5], [0, 5, 1, 3292, 1312, false, 0, 5], [0, 5, 1, 3134, 1522, false, 0, 5], [0, 5, 1, 3310, 1762, false, 0, 5], [0, 5, 1, 3646, 1867, false, 0, 5], [0, 5, 1, 3695, 1579, false, 0, 5], [0, 5, 1, 3527, 1398, false, 0, 5], [0, 5, 1, 3626, 1101, false, 0, 5], [0, 5, 1, 3399, 941, false, 0, 5], [0, 5, 1, 3327, 736, false, 0, 5], [0, 5, 1, 3632, 559, false, 0, 5], [0, 5, 1, 3253, 539, false, 0, 5], [0, 5, 1, 3786, 741, false, 0, 5], [0, 5, 1, 3301, 794, false, 0, 5], [0, 5, 1, 3073, 803, false, 0, 5], [0, 5, 1, 3354, 1474, false, 0, 5], [0, 5, 1, 3432, 1002, false, 0, 5], [0, 5, 1, 2805, 703, false, 0, 5], [0, 5, 1, 2639, 1300, false, 0, 5], [0, 5, 1, 2203, 1587, false, 0, 5], [0, 5, 1, 2074, 1221, false, 0, 5], [0, 5, 1, 1769, 1222, false, 0, 5], [0, 5, 1, 1369, 1143, false, 0, 5], [0, 5, 1, 1309, 1050, false, 0, 5], [0, 5, 1, 1608, 984, false, 0, 5], [0, 5, 1, 1543, 618, false, 0, 5], [0, 5, 1, 1075, 647, false, 0, 5], [0, 5, 1, 852, 897, false, 0, 5], [0, 5, 1, 571, 1431, false, 0, 5], [0, 5, 1, 925, 1781, false, 0, 5], [0, 5, 1, 3068, 1746, false, 0, 5], [0, 5, 1, 3068, 2147, false, 0, 5], [0, 5, 1, 3497, 1946, false, 0, 5], [0, 5, 1, 3681, 1700, false, 0, 5], [0, 5, 1, 3581, 1660, false, 0, 5], [0, 5, 1, 3379, 1174, false, 0, 5], [0, 5, 1, 3655, 889, false, 0, 5], [0, 5, 1, 3474, 562, false, 0, 5], [0, 5, 1, 2611, 614, false, 0, 5], [0, 5, 1, 2333, 596, false, 0, 5], [0, 5, 1, 1854, 586, false, 0, 5], [0, 5, 1, 1013, 830, false, 0, 5], [0, 5, 1, 880, 1604, false, 0, 5], [0, 5, 1, 1200, 1624, false, 0, 5], [0, 5, 1, 1427, 1095, false, 0, 5], [0, 5, 1, 2388, 527, false, 0, 5]];
enemies = _root[("lvl" + _root.curlevel) + "enemies"];
if (_root.difficulty == "hard") {
var D = 0;
while (D < enemies.length) {
if (enemies[D][0] == 1) {
enemies[D][7] = enemies[D][7] * 1.5;
}
if (enemies[D][0] == 6) {
enemies[D][7] = enemies[D][7] * 1.5;
}
if (enemies[D][0] == 3) {
enemies[D][1] = enemies[D][1] * 2;
}
D++;
}
}
var D = 0;
while (D < enemies.length) {
if (enemies[D][0] == 2) {
pengsleft = pengsleft + 1;
attachMovie("enemyhit2", "babyhit" + enemies[D][1], 100 + enemies[D][1]);
_root["babyhit" + enemies[D][1]]._x = -100;
_root["babyhit" + enemies[D][1]]._y = -100;
_root["babyhit" + enemies[D][1]].bmp = new flash.display.BitmapData(_root["babyhit" + enemies[D][1]]._width, _root["babyhit" + enemies[D][1]]._height, true, 0);
_root["babyhit" + enemies[D][1]].bmp.draw(_root["babyhit" + enemies[D][1]]);
}
D++;
}
if (pengsleft == 0) {
bgSound.attachSound("alex");
world.bonuslvl = true;
world.leveltimer = 30 * framespeed;
}
if (_root.musicon == true) {
bgSound.start(1, 9999);
bgSound.setVolume(100);
} else {
bgSound.start(1, 9999);
bgSound.setVolume(0);
}
if (_root.curlevel == 18) {
world.leveltimer = 120 * framespeed;
}
var b = 0;
while (b < enemies.length) {
if (enemies[b][5] == false) {
if (((enemies[b][3] < (world.charx + 1800)) and (enemies[b][3] > (world.charx - 1200))) or (enemies[b][0] == 2)) {
if (((enemies[b][0] == 0) or (enemies[b][0] == 4)) or (enemies[b][0] == 7)) {
_root.attachMovie("enemy", "enemymc" + b, 1000 + b);
} else {
_root.attachMovie("enemy", "enemymc" + b, 3050 + b);
}
_root["enemymc" + b]._x = enemies[b][3] - world.charx;
_root["enemymc" + b]._y = enemies[b][4] - world.chary;
_root["enemymc" + b].gotoAndStop(enemies[b][2]);
enemies[b][5] = true;
if (enemies[b][0] == 0) {
randomg = random(300);
if (randomg < 100) {
_root["enemymc" + b].gotoAndStop(1);
enemies[b][1] = 5;
}
if (randomg > 99) {
_root["enemymc" + b].gotoAndStop(2);
enemies[b][1] = 10;
}
if (randomg > 149) {
_root["enemymc" + b].gotoAndStop(3);
enemies[b][1] = 20;
}
if (randomg > 199) {
_root["enemymc" + b].gotoAndStop(4);
enemies[b][1] = 30;
}
if (randomg > 229) {
_root["enemymc" + b].gotoAndStop(5);
enemies[b][1] = 50;
}
if (randomg > 249) {
_root["enemymc" + b].gotoAndStop(6);
enemies[b][1] = 75;
}
if (randomg > 269) {
_root["enemymc" + b].gotoAndStop(7);
enemies[b][1] = 100;
}
if (randomg > 284) {
_root["enemymc" + b].gotoAndStop(8);
enemies[b][1] = 150;
}
if (randomg > 294) {
_root["enemymc" + b].gotoAndStop(9);
enemies[b][1] = 250;
}
}
}
}
b++;
}
charhit.onEnterFrame = function () {
if (world.levelover != false) {
world.levelovertime = world.levelovertime - 1;
if (world.levelovertime < 20) {
fadeto._alpha = fadeto._alpha + 5;
if (_root.musicon == true) {
bgSound.setVolume(world.levelovertime * 5);
}
}
if (world.levelovertime < 1) {
if (world.levelover == "bad") {
_root.gotoAndStop(7);
}
if (world.levelover == "good") {
_root.gotoAndStop(6);
}
}
}
if (_root.gamepaused == false) {
if (_root.totalscore < _root.eaten) {
if ((_root.eaten - _root.totalscore) < 25) {
_root.totalscore = _root.totalscore + 1;
} else if ((_root.eaten - _root.totalscore) < 50) {
_root.totalscore = _root.totalscore + 3;
} else if ((_root.eaten - _root.totalscore) < 100) {
_root.totalscore = _root.totalscore + 5;
} else if ((_root.eaten - _root.totalscore) < 500) {
_root.totalscore = _root.totalscore + 11;
} else if ((_root.eaten - _root.totalscore) < 13431400) {
_root.totalscore = _root.totalscore + 31;
}
if (_root.totalscore > _root.eaten) {
_root.totalscore = _root.eaten;
}
}
thesea._y = tile1._y;
mouseTargetMC._rotation = char_mc._rotation;
if (levelinfo._alpha > 0) {
levelinfo._alpha = levelinfo._alpha - 1;
}
Mouse.hide();
if ((pengsleft < 1) and (world.bonuslvl == false)) {
if (pengssaved > 0) {
if (_root.timergo == true) {
_root.timergo = false;
_root.timergotimer = 36;
}
_root.timergotimer = _root.timergotimer - 1;
if (_root.timergotimer < 1) {
_root.pengssavedlast = pengssaved;
_root.pengstotallast = pengssaved + pengsdied;
_root.timeleftlast = Math.round(world.leveltimer / framespeed);
_root.multilast = world.damagemulti;
_root.timebonused = ((pengssaved * Math.round(world.leveltimer / framespeed)) * 5) * world.damagemulti;
_root.totalscore = _root.eaten;
_root.eaten = _root.eaten + (((pengssaved * Math.round(world.leveltimer / framespeed)) * 5) * world.damagemulti);
if (pengsdied < 1) {
_root.curlevel = _root.curlevel + 1;
_root.clearclears = _root.clearclears + pengssaved;
_root.clearedtotal = _root.clearedtotal + (pengssaved + pengsdied);
} else {
_root.curlevel = _root.curlevel + 2;
_root.clearclears = _root.clearclears + pengssaved;
_root.clearedtotal = _root.clearedtotal + (pengssaved + pengsdied);
}
world.levelover = "good";
_root.gamepaused = true;
}
} else {
world.levelover = "bad";
_root.gamepaused = true;
_root.timebonused = "All of the baby penguins were killed.";
_root.eaten = prevpoints;
_root.totalscore = _root.eaten;
}
}
if (world.life < 1) {
world.levelover = "bad";
_root.gamepaused = true;
_root.timebonused = "You ran out of health.";
_root.eaten = prevpoints;
_root.totalscore = _root.eaten;
}
if (world.leveltimer < 1) {
if (world.bonuslvl == false) {
world.levelover = "bad";
_root.gamepaused = true;
_root.timebonused = "you ran out of Time.";
_root.eaten = prevpoints;
_root.totalscore = _root.eaten;
} else {
_root.curlevel = _root.curlevel + 1;
_root.totalscore = _root.eaten;
_root.timebonused = ((_root.eaten - prevpoints) * 5) * world.damagemulti;
_root.eaten = _root.eaten + (((_root.eaten - prevpoints) * 5) * world.damagemulti);
world.levelover = "good";
_root.gamepaused = true;
}
}
_root.life = world.life;
if (_root.timergo == true) {
world.leveltimer = world.leveltimer - 1;
}
timedd = Math.round(world.leveltimer / framespeed);
_root.timed = "time: " + timedd;
dancefishy();
_root.charx = world.charx;
_root.chary = world.chary;
if ((pengsleft > 1) or (pengsleft < 1)) {
_root.remaining = pengsleft + " penguins remain";
} else {
_root.remaining = pengsleft + " penguin remains";
}
if (world.charx > world.nexttile) {
movetilesright();
}
if (world.charx < world.prevtile) {
movetilesleft();
}
mousemoved = false;
if (gamekeys.mousemove == true) {
if (mouseTargetMC._x < 200) {
movespeedchanger = 0;
if (mouseTargetMC._x > 100) {
movespeedchanger = Math.round((mouseTargetMC._x - 100) / 5) * -1;
}
if (char_mc._x < 560) {
if (char_mc._x < (560 - movespeed)) {
movemapx = movespeed + movespeedchanger;
movemapy = 0;
movemap();
} else {
movemapx = Math.round(560 - char_mc._x);
movemapy = 0;
movemap();
}
mousemoved = true;
}
}
if (mouseTargetMC._x > 400) {
movespeedchanger = 0;
if (mouseTargetMC._x < 500) {
movespeedchanger = Math.round((500 - mouseTargetMC._x) / 5) * -1;
}
if (char_mc._x > 40) {
if (char_mc._x > (40 + movespeed)) {
movemapx = (movespeed + movespeedchanger) * -1;
movemapy = 0;
movemap();
} else {
movemapx = Math.round((char_mc._x - 40) * -1);
movemapy = 0;
movemap();
}
mousemoved = true;
}
}
if (mouseTargetMC._y > 250) {
movespeedchanger = 0;
if (mouseTargetMC._y < 350) {
movespeedchanger = Math.round((350 - mouseTargetMC._y) / 5) * -1;
}
if (char_mc._y > 40) {
if (char_mc._y > (40 + movespeed)) {
movemapx = 0;
movemapy = (movespeed + movespeedchanger) * -1;
movemap();
} else {
movemapx = 0;
movemapy = Math.round((char_mc._y - 40) * -1);
movemap();
}
mousemoved = true;
}
}
if (mouseTargetMC._y < 150) {
movespeedchanger = 0;
if (mouseTargetMC._y > 50) {
movespeedchanger = Math.round((mouseTargetMC._y - 50) / 5) * -1;
}
if (char_mc._y < 360) {
if (char_mc._y < (360 - movespeed)) {
movemapx = 0;
movemapy = movespeed + movespeedchanger;
movemap();
} else {
movemapx = 0;
movemapy = Math.round(360 - char_mc._y);
movemap();
}
mousemoved = true;
}
}
}
if (Key.isDown(_root.gamekeys.pauseB)) {
_root.gamepaused = true;
attachMovie("pausescreen", "pausescreen", 19005);
}
if (Key.isDown(_root.gamekeys.leftB)) {
if ((char_mc._x < 560) and (mousemoved == false)) {
if (char_mc._x < (560 - movespeed)) {
movemapx = movespeed;
movemapy = 0;
movemap();
} else {
movemapx = Math.round(560 - char_mc._x);
movemapy = 0;
movemap();
}
}
}
if (Key.isDown(_root.gamekeys.rightB)) {
if ((char_mc._x > 40) and (mousemoved == false)) {
if (char_mc._x > (40 + movespeed)) {
movemapx = movespeed * -1;
movemapy = 0;
movemap();
} else {
movemapx = Math.round((char_mc._x - 40) * -1);
movemapy = 0;
movemap();
}
}
}
if (Key.isDown(_root.gamekeys.downB)) {
if ((char_mc._y > 40) and (mousemoved == false)) {
if (char_mc._y > (40 + movespeed)) {
movemapx = 0;
movemapy = movespeed * -1;
movemap();
} else {
movemapx = 0;
movemapy = Math.round((char_mc._y - 40) * -1);
movemap();
}
}
}
if (Key.isDown(_root.gamekeys.upB)) {
if ((char_mc._y < 360) and (mousemoved == false)) {
if (char_mc._y < (360 - movespeed)) {
movemapx = 0;
movemapy = movespeed;
movemap();
} else {
movemapx = 0;
movemapy = Math.round(360 - char_mc._y);
movemap();
}
}
}
xtarg = 20 * Math.cos(char_mc._rotation * (Math.PI/180));
ytarg = 20 * Math.sin(char_mc._rotation * (Math.PI/180));
char_mc._x = charhit._x + 10;
char_mc._y = charhit._y + 10;
charhit2._x = charhit._x - xtarg;
charhit2._y = charhit._y - ytarg;
xcheckerm = false;
if (_root._xmouse > 605) {
mouseTargetMC._x = 600;
xcheckerm = true;
}
if (_root._xmouse < -5) {
mouseTargetMC._x = 0;
xcheckerm = true;
}
if (xcheckerm == false) {
mouseTargetMC._x = _root._xmouse;
}
ycheckerm = false;
if (_root._ymouse > 405) {
mouseTargetMC._y = 400;
ycheckerm = true;
}
if (_root._ymouse < -5) {
mouseTargetMC._y = 0;
ycheckerm = true;
}
if (ycheckerm == false) {
mouseTargetMC._y = _root._ymouse;
}
blowd_mc._x = _root._xmouse;
blowd_mc._y = _root._ymouse;
_root.mouseyx = mouseTargetMC._x + world.charx;
_root.mouseyy = mouseTargetMC._y + world.chary;
qdown = false;
if (Key.isDown(_root.gamekeys.reportB)) {
qdown = true;
qdown2 = true;
}
if ((qdown == false) and (qdown2 == true)) {
trace((((_root.qfirst + _root.mouseyx) + ", ") + _root.mouseyy) + _root.qlast);
qdown2 = false;
}
xDistance = mouseTargetMC._x - charhit._x;
yDistance = mouseTargetMC._y - charhit._y;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
mouseDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
mouseDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
mouseDirection = (-90 * (yDistance / normalise)) + 180;
} else {
mouseDirection = (90 * (xDistance / normalise)) + 270;
}
xDest = mouseTargetMC._x;
yDest = mouseTargetMC._y;
char_mc._rotation = mouseDirection;
movedy = 0;
movedx = 0;
onMouseDown = function () {
mousedown = true;
};
onMouseUp = function () {
mousedown = false;
};
if (((world.burst == false) and (mousedown == true)) and (world.burstcd < 1)) {
world.burst = true;
bubblepop._x = mouseTargetMC._x;
bubblepop._y = mouseTargetMC._y;
bubblepop._alpha = 100;
bubblepop._rotation = mouseTargetMC._rotation;
bubblepop.gotoAndPlay(1);
world.bursting = 12;
world.burstcd = 12;
}
if (world.burst == true) {
char_mc.gotoAndStop(2);
mouseTargetMC.gotoAndStop(3);
world.bursting = world.bursting - 1;
} else {
if (world.burstcd < 1) {
mouseTargetMC.gotoAndStop(1);
} else {
bubblepop._alpha = 0;
mouseTargetMC.gotoAndStop(3);
}
char_mc.gotoAndStop(1);
world.burstcd = world.burstcd - 1;
}
if (world.bursting == 0) {
world.burst = false;
}
spacedown = false;
if (Key.isDown(_root.gamekeys.jumpB)) {
spacedown = true;
}
if (spacedown == false) {
if (charhit._x != xDest) {
moveheh = Math.round((xDest - charhit._x) * world.pengspeed);
charhit._x = charhit._x + moveheh;
movedx = moveheh;
}
}
var _local2 = new flash.geom.Point(charhit._x, charhit._y);
var _local3 = new flash.geom.Point(tile1._x, tile1._y);
_root.colidedx = false;
if (charhit.bmp.hitTest(_local2, 128, tile1.bmp, _local3, 128)) {
_root.colidedx = true;
charhit._x = charhit._x - movedx;
}
_local3 = new flash.geom.Point(tile2._x, tile2._y);
if (charhit.bmp.hitTest(_local2, 128, tile2.bmp, _local3, 128)) {
_root.colidedx = true;
charhit._x = charhit._x - movedx;
}
_local3 = new flash.geom.Point(tile3._x, tile3._y);
if (charhit.bmp.hitTest(_local2, 128, tile3.bmp, _local3, 128)) {
_root.colidedx = true;
charhit._x = charhit._x - movedx;
}
if (spacedown == false) {
if (charhit._y != yDest) {
moveheh2 = Math.round((yDest - charhit._y) * world.pengspeed);
charhit._y = charhit._y + moveheh2;
movedy = moveheh2;
}
}
_local2 = new flash.geom.Point(charhit._x, charhit._y);
_local3 = new flash.geom.Point(tile1._x, tile1._y);
_root.colidedy = false;
if (charhit.bmp.hitTest(_local2, 128, tile1.bmp, _local3, 128)) {
_root.colidedy = true;
charhit._y = charhit._y - movedy;
}
_local3 = new flash.geom.Point(tile2._x, tile2._y);
if (charhit.bmp.hitTest(_local2, 128, tile2.bmp, _local3, 128)) {
_root.colidedy = true;
charhit._y = charhit._y - movedy;
}
_local3 = new flash.geom.Point(tile3._x, tile3._y);
if (charhit.bmp.hitTest(_local2, 128, tile3.bmp, _local3, 128)) {
_root.colidedy = true;
charhit._y = charhit._y - movedy;
}
lastmovements.unshift([(world.charx + charhit._x) + 20, (world.chary + charhit._y) + 20, char_mc._rotation]);
movementsmoved = movementsmoved + 1;
if (lastmovements.length > 200) {
lastmovements.length = 200;
}
if ((char_mc._rotation < 90) and (char_mc._rotation > -90)) {
char_mc._yscale = 100;
} else {
char_mc._yscale = -100;
}
}
};
Frame 6
stop();
Mouse.show();
if (_root.clearclears < _root.clearedtotal) {
_root.savededed = ((_root.clearedtotal + " out of 61 babies found, ") + _root.clearclears) + " saved";
} else {
_root.savededed = _root.clearedtotal + " out of 61 babies saved";
}
_root.fadinout = false;
_root.fadevolume = 100;
bgSound.stop();
bgSound = new Sound(this);
bgSound.attachSound("menusong");
if (_root.musicon == true) {
bgSound.start(1, 9999);
bgSound.setVolume(100);
} else {
bgSound.start(1, 9999);
bgSound.setVolume(0);
}
_root.bubblepop.removeMovieClip();
_root.fadeto.removeMovieClip();
_root.levelinfo.removeMovieClip();
_root.char_mc.removeMovieClip();
_root.thesea.removeMovieClip();
_root.charhit.removeMovieClip();
_root.enemyhit.removeMovieClip();
_root.enemyhit2.removeMovieClip();
_root.enemyhit3.removeMovieClip();
_root.enemyhit4.removeMovieClip();
_root.enemyhit5.removeMovieClip();
_root.mouseTargetMC.removeMovieClip();
_root.HUD.removeMovieClip();
_root.tile1.removeMovieClip();
_root.tile2.removeMovieClip();
_root.tile3.removeMovieClip();
_root.object1.removeMovieClip();
_root.object2.removeMovieClip();
_root.object3.removeMovieClip();
_root.object4.removeMovieClip();
_root.object5.removeMovieClip();
_root.object6.removeMovieClip();
var D = 0;
while (D < enemies.length) {
_root["enemymc" + D].removeMovieClip();
if (enemies[D][0] == 2) {
_root["babyhit" + enemies[D][1]].removeMovieClip();
}
D++;
}
var D = 0;
while (D < (pointsmcv + 1)) {
_root["points_mc" + D].removeMovieClip();
D++;
}
if (_root.curlevel > 18) {
_root.gotoAndStop(8);
}
Instance of Symbol 388 MovieClip in Frame 6
onClipEvent (load) {
amiplaying = false;
this.stop();
}
onClipEvent (enterFrame) {
if ((_root.musicon == true) and (amiplaying == false)) {
_root.bgSound.setVolume(100);
amiplaying = true;
} else if (_root.musicon == false) {
_root.bgSound.setVolume(0);
amiplaying = false;
}
}
Instance of Symbol 104 MovieClip "fadez" in Frame 6
onClipEvent (enterFrame) {
if (_root.fadinout == true) {
this._alpha = this._alpha + 5;
_root.fadevolume = _root.fadevolume - 5;
if (_root.musicon == true) {
_root.bgSound.setVolume(_root.fadevolume);
}
if (this._alpha > 99) {
_root.gotoAndStop(5);
}
}
}
Frame 7
stop();
Mouse.show();
bgSound.stop();
_root.fadinout = false;
_root.fadevolume = 100;
bgSound = new Sound(this);
bgSound.attachSound("menusong");
if (_root.musicon == true) {
bgSound.start(1, 9999);
bgSound.setVolume(100);
} else {
bgSound.start(1, 9999);
bgSound.setVolume(0);
}
_root.lives = _root.lives - 1;
if (_root.lives > 1) {
_root.livesmsg = _root.lives + " lives remain";
} else if (_root.lives > 0) {
_root.livesmsg = _root.lives + " life remains";
} else {
_root.livesmsg = "Game Over";
}
_root.totalscore = _root.eaten;
_root.bubblepop.removeMovieClip();
_root.fadeto.removeMovieClip();
_root.levelinfo.removeMovieClip();
_root.thesea.removeMovieClip();
_root.char_mc.removeMovieClip();
_root.charhit.removeMovieClip();
_root.enemyhit.removeMovieClip();
_root.enemyhit2.removeMovieClip();
_root.enemyhit3.removeMovieClip();
_root.enemyhit4.removeMovieClip();
_root.enemyhit5.removeMovieClip();
_root.mouseTargetMC.removeMovieClip();
_root.HUD.removeMovieClip();
_root.tile1.removeMovieClip();
_root.tile2.removeMovieClip();
_root.tile3.removeMovieClip();
_root.object1.removeMovieClip();
_root.object2.removeMovieClip();
_root.object3.removeMovieClip();
_root.object4.removeMovieClip();
_root.object5.removeMovieClip();
_root.object6.removeMovieClip();
var D = 0;
while (D < enemies.length) {
_root["enemymc" + D].removeMovieClip();
if (enemies[D][0] == 2) {
_root["babyhit" + enemies[D][1]].removeMovieClip();
}
D++;
}
var D = 0;
while (D < (pointsmcv + 1)) {
_root["points_mc" + D].removeMovieClip();
D++;
}
Instance of Symbol 887 MovieClip in Frame 7
onClipEvent (load) {
if (_root.lives > 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Frame 8
stop();
Mouse.show();
bgSound.stop();
_root.fadinout = false;
_root.fadevolume = 100;
bgSound = new Sound(this);
bgSound.attachSound("endsong");
if (_root.musicon == true) {
bgSound.start(1, 9999);
bgSound.setVolume(100);
} else {
bgSound.start(1, 9999);
bgSound.setVolume(0);
}
_root.lives = _root.lives - 1;
if (_root.lives > 1) {
_root.livesmsg = _root.lives + " lives remain";
} else if (_root.lives > 0) {
_root.livesmsg = _root.lives + " life remains";
} else {
_root.livesmsg = "Game Over";
}
_root.bubblepop.removeMovieClip();
_root.fadeto.removeMovieClip();
_root.levelinfo.removeMovieClip();
_root.thesea.removeMovieClip();
_root.char_mc.removeMovieClip();
_root.charhit.removeMovieClip();
_root.enemyhit.removeMovieClip();
_root.enemyhit2.removeMovieClip();
_root.enemyhit3.removeMovieClip();
_root.enemyhit4.removeMovieClip();
_root.enemyhit5.removeMovieClip();
_root.mouseTargetMC.removeMovieClip();
_root.HUD.removeMovieClip();
_root.tile1.removeMovieClip();
_root.tile2.removeMovieClip();
_root.tile3.removeMovieClip();
_root.object1.removeMovieClip();
_root.object2.removeMovieClip();
_root.object3.removeMovieClip();
_root.object4.removeMovieClip();
_root.object5.removeMovieClip();
_root.object6.removeMovieClip();
var D = 0;
while (D < enemies.length) {
_root["enemymc" + D].removeMovieClip();
if (enemies[D][0] == 2) {
_root["babyhit" + enemies[D][1]].removeMovieClip();
}
D++;
}
var D = 0;
while (D < (pointsmcv + 1)) {
_root["points_mc" + D].removeMovieClip();
D++;
}
if (_root.clearclears > 60) {
_root.endmssg = "You rescued all the penguins!";
allsaved = true;
} else if (_root.clearclears > 44) {
if (_root.clearclears > 54) {
_root.endmssg = "You found all of the penguins and saved most of them!";
} else {
_root.endmssg = "You found all of the penguins and saved alot of them!";
}
} else {
_root.endmssg = "You found all of the penguins but quite a few didnt make it...";
}
_root.endmssg = _root.endmssg + ("\nFinal Score: " + _root.eaten);
_root.totalscore = _root.eaten;
Symbol 31 MovieClip [_shipExplosion] Frame 29
this.removeMovieClip();
Symbol 51 MovieClip [char_mc] Frame 1
stop();
Instance of Symbol 54 MovieClip in Symbol 61 MovieClip Frame 1
onClipEvent (enterFrame) {
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
this._xscale = PercentLoaded;
} else if (_root.falsedomain == false) {
_root.play();
} else {
_root.loadtext = "Incorrect Domain";
}
}
Symbol 71 Button
on (press) {
getURL ("http://www.addictinggames.com", blank);
}
Symbol 77 MovieClip [mouseTargetMC] Frame 1
stop();
Symbol 911 MovieClip [__Packages.mx.transitions.OnEnterFrameBeacon] Frame 0
class mx.transitions.OnEnterFrameBeacon
{
function OnEnterFrameBeacon () {
}
static function init() {
var _local4 = _global.MovieClip;
if (!_root.__OnEnterFrameBeacon) {
mx.transitions.BroadcasterMX.initialize(_local4);
var _local3 = _root.createEmptyMovieClip("__OnEnterFrameBeacon", 9876);
_local3.onEnterFrame = function () {
_global.MovieClip.broadcastMessage("onEnterFrame");
};
}
}
static var version = "1.1.0.52";
}
Symbol 912 MovieClip [__Packages.mx.transitions.BroadcasterMX] Frame 0
class mx.transitions.BroadcasterMX
{
var _listeners;
function BroadcasterMX () {
}
static function initialize(o, dontCreateArray) {
if (o.broadcastMessage != undefined) {
delete o.broadcastMessage;
}
o.addListener = mx.transitions.BroadcasterMX.prototype.addListener;
o.removeListener = mx.transitions.BroadcasterMX.prototype.removeListener;
if (!dontCreateArray) {
o._listeners = new Array();
}
}
function addListener(o) {
removeListener(o);
if (broadcastMessage == undefined) {
broadcastMessage = mx.transitions.BroadcasterMX.prototype.broadcastMessage;
}
return(_listeners.push(o));
}
function removeListener(o) {
var _local2 = _listeners;
var _local3 = _local2.length;
while (_local3--) {
if (_local2[_local3] == o) {
_local2.splice(_local3, 1);
if (!_local2.length) {
broadcastMessage = undefined;
}
return(true);
}
}
return(false);
}
function broadcastMessage() {
var _local5 = String(arguments.shift());
var _local4 = _listeners.concat();
var _local6 = _local4.length;
var _local3 = 0;
while (_local3 < _local6) {
_local4[_local3][_local5].apply(_local4[_local3], arguments);
_local3++;
}
}
static var version = "1.1.0.52";
}
Symbol 913 MovieClip [__Packages.mx.transitions.Tween] Frame 0
class mx.transitions.Tween
{
var obj, prop, begin, useSeconds, _listeners, addListener, prevTime, _time, looping, _duration, broadcastMessage, isPlaying, _fps, prevPos, _pos, change, _intervalID, _startTime;
function Tween (obj, prop, func, begin, finish, duration, useSeconds) {
mx.transitions.OnEnterFrameBeacon.init();
if (!arguments.length) {
return;
}
this.obj = obj;
this.prop = prop;
this.begin = begin;
position = (begin);
this.duration = (duration);
this.useSeconds = useSeconds;
if (func) {
this.func = func;
}
this.finish = (finish);
_listeners = [];
addListener(this);
start();
}
function set time(t) {
prevTime = _time;
if (t > duration) {
if (looping) {
rewind(t - _duration);
update();
broadcastMessage("onMotionLooped", this);
} else {
if (useSeconds) {
_time = _duration;
update();
}
stop();
broadcastMessage("onMotionFinished", this);
}
} else if (t < 0) {
rewind();
update();
} else {
_time = t;
update();
}
//return(time);
}
function get time() {
return(_time);
}
function set duration(d) {
_duration = (((d == null) || (d <= 0)) ? (_global.Infinity) : (d));
//return(duration);
}
function get duration() {
return(_duration);
}
function set FPS(fps) {
var _local2 = isPlaying;
stopEnterFrame();
_fps = fps;
if (_local2) {
startEnterFrame();
}
//return(FPS);
}
function get FPS() {
return(_fps);
}
function set position(p) {
setPosition(p);
//return(position);
}
function setPosition(p) {
prevPos = _pos;
obj[prop] = (_pos = p);
broadcastMessage("onMotionChanged", this, _pos);
updateAfterEvent();
}
function get position() {
return(getPosition());
}
function getPosition(t) {
if (t == undefined) {
t = _time;
}
return(func(t, begin, change, _duration));
}
function set finish(f) {
change = f - begin;
//return(finish);
}
function get finish() {
return(begin + change);
}
function continueTo(finish, duration) {
begin = position;
this.finish = (finish);
if (duration != undefined) {
this.duration = (duration);
}
start();
}
function yoyo() {
continueTo(begin, time);
}
function startEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.addListener(this);
} else {
_intervalID = setInterval(this, "onEnterFrame", 1000 / _fps);
}
isPlaying = true;
}
function stopEnterFrame() {
if (_fps == undefined) {
_global.MovieClip.removeListener(this);
} else {
clearInterval(_intervalID);
}
isPlaying = false;
}
function start() {
rewind();
startEnterFrame();
broadcastMessage("onMotionStarted", this);
}
function stop() {
stopEnterFrame();
broadcastMessage("onMotionStopped", this);
}
function resume() {
fixTime();
startEnterFrame();
broadcastMessage("onMotionResumed", this);
}
function rewind(t) {
_time = ((t == undefined) ? 0 : (t));
fixTime();
update();
}
function fforward() {
time = (_duration);
fixTime();
}
function nextFrame() {
if (useSeconds) {
time = ((getTimer() - _startTime) / 1000);
} else {
time = (_time + 1);
}
}
function onEnterFrame() {
nextFrame();
}
function prevFrame() {
if (!useSeconds) {
time = (_time - 1);
}
}
function toString() {
return("[Tween]");
}
function fixTime() {
if (useSeconds) {
_startTime = getTimer() - (_time * 1000);
}
}
function update() {
position = (getPosition(_time));
}
static var version = "1.1.0.52";
static var __initBeacon = mx.transitions.OnEnterFrameBeacon.init();
static var __initBroadcaster = mx.transitions.BroadcasterMX.initialize(mx.transitions.Tween.prototype, true);
function func(t, b, c, d) {
return(((c * t) / d) + b);
}
}
Symbol 914 MovieClip [__Packages.mx.transitions.easing.Strong] Frame 0
class mx.transitions.easing.Strong
{
function Strong () {
}
static function easeIn(t, b, c, d) {
t = t / d;
return((((((c * t) * t) * t) * t) * t) + b);
}
static function easeOut(t, b, c, d) {
t = (t / d) - 1;
return((c * (((((t * t) * t) * t) * t) + 1)) + b);
}
static function easeInOut(t, b, c, d) {
t = t / (d / 2);
if (t < 1) {
return(((((((c / 2) * t) * t) * t) * t) * t) + b);
}
t = t - 2;
return(((c / 2) * (((((t * t) * t) * t) * t) + 2)) + b);
}
static var version = "1.1.0.52";
}
Symbol 915 MovieClip [__Packages.mx.transitions.easing.Bounce] Frame 0
class mx.transitions.easing.Bounce
{
function Bounce () {
}
static function easeOut(t, b, c, d) {
t = t / d;
if (t < 0.363636363636364) {
return((c * ((7.5625 * t) * t)) + b);
}
if (t < 0.727272727272727) {
t = t - 0.545454545454545;
return((c * (((7.5625 * t) * t) + 0.75)) + b);
}
if (t < 0.909090909090909) {
t = t - 0.818181818181818;
return((c * (((7.5625 * t) * t) + 0.9375)) + b);
}
t = t - 0.954545454545455;
return((c * (((7.5625 * t) * t) + 0.984375)) + b);
}
static function easeIn(t, b, c, d) {
return((c - easeOut(d - t, 0, c, d)) + b);
}
static function easeInOut(t, b, c, d) {
if (t < (d / 2)) {
return((easeIn(t * 2, 0, c, d) * 0.5) + b);
}
return(((easeOut((t * 2) - d, 0, c, d) * 0.5) + (c * 0.5)) + b);
}
static var version = "1.1.0.52";
}
Symbol 94 MovieClip Frame 1
function LOGO_IN() {
var _local1 = new mx.transitions.Tween(AGlogo_mc, "_y", mx.transitions.easing.Strong.easeIn, -75, 85, 12, false);
_local1.onMotionFinished = function () {
LOGO_SMASH();
var _local3 = new mx.transitions.Tween(AGlogo_mc, "_y", mx.transitions.easing.Bounce.easeOut, 60, 85, 6, false);
var _local4 = new mx.transitions.Tween(AGlogo_mc, "_x", mx.transitions.easing.Bounce.easeOut, 30, 50, 6, false);
var _local2 = new mx.transitions.Tween(AGpresented_mc, "_y", mx.transitions.easing.Bounce.easeOut, 15, 25, 6, false);
var _local1 = new mx.transitions.Tween(AGpresented_mc, "_x", mx.transitions.easing.Bounce.easeOut, 110, 100, 6, false);
};
}
function LOGO_SMASH() {
AG_SMASH.start();
AGclick_btn._visible = true;
}
function AG_HOLD_COUNTER() {
if (AG_COUNT == AG_TIME) {
clearInterval(AG_HOLD_ID);
_level0.START_ping.broadcastMessage("presented");
this.unloadMovie();
_root.play();
} else {
AG_COUNT++;
}
}
_parent.stop();
var AG_SMASH = new Sound();
AG_SMASH.attachSound("Smash");
var AG_COUNT = 0;
var AG_TIME = 4;
var AG_HOLD_ID;
AG_HOLD_ID = setInterval(this, "AG_HOLD_COUNTER", 1000);
AGpresented_mc._alpha = 0;
AGclick_btn._visible = false;
AGlogo_mc._y = -70;
var AGpresented_IN = (new mx.transitions.Tween(AGpresented_mc, "_alpha", mx.transitions.easing.Strong.easeIn, 0, 100, 12, false));
AGpresented_IN.onMotionFinished = function () {
LOGO_IN();
};
AGskip_btn.onRelease = function () {
AG_COUNT = AG_TIME;
AG_HOLD_COUNTER();
};
AGclick_btn.onRelease = function () {
getURL ("http://www.addictinggames.com", "_blank");
};
Symbol 102 Button
on (release) {
_root.gotoAndStop(4);
}
Symbol 108 Button
on (release) {
getURL ("http://mattbentley.muzic.net.nz", "_blank");
}
Symbol 111 MovieClip Frame 190
_root.gotoAndStop(4);
Symbol 122 Button
on (release) {
_root.curlevel = 1;
_root.lives = 5;
_root.eaten = 0;
_root.clearclears = 0;
_root.totalscore = 0;
_root.clearedtotal = 0;
gotoAndStop (6);
}
Symbol 124 Button
on (release) {
gotoAndStop (2);
}
Symbol 125 Button
on (release) {
gotoAndStop (3);
}
Symbol 128 Button
on (release) {
gotoAndStop (4);
}
Symbol 130 Button
on (release) {
gotoAndStop (5);
}
Symbol 132 Button
on (release) {
gotoAndStop (1);
}
Symbol 137 Button
on (release) {
if (_root.mousemoveD == "off") {
_root.gamekeys.mousemove = true;
_root.mousemoveD = "on";
} else {
_root.gamekeys.mousemove = false;
_root.mousemoveD = "off";
}
}
Symbol 139 Button
on (release) {
_quality = "medium";
}
Symbol 140 Button
on (release) {
_quality = "low";
}
Symbol 143 Button
on (release) {
_quality = "high";
}
Symbol 146 Button
on (release) {
if (_root.keywaiting != 1) {
gotoAndStop (1);
} else {
presskey.play();
}
}
Symbol 151 MovieClip Frame 1
stop();
Symbol 153 MovieClip Frame 1
stop();
Symbol 153 MovieClip Frame 2
stop();
Symbol 154 Button
on (release) {
_root.keywaiting = 1;
_root.theStateLeft = 1;
presskey2.gotoAndStop(2);
}
Symbol 206 MovieClip Frame 1
stop();
Symbol 207 Button
on (release) {
_root.keywaiting = 1;
_root.theStateRight = 1;
presskey2.gotoAndStop(2);
}
Symbol 209 Button
on (release) {
_root.keywaiting = 1;
_root.theStateup = 1;
presskey2.gotoAndStop(2);
}
Symbol 211 Button
on (release) {
_root.keywaiting = 1;
_root.theStateDown = 1;
presskey2.gotoAndStop(2);
}
Symbol 213 Button
on (release) {
_root.keywaiting = 1;
_root.theStateThrow = 1;
presskey2.gotoAndStop(2);
}
Symbol 215 Button
on (release) {
_root.keywaiting = 1;
_root.theStateJump = 1;
presskey2.gotoAndStop(2);
}
Symbol 218 MovieClip Frame 1
stop();
Symbol 219 Button
on (release) {
_root.keywaiting = 1;
_root.theStatePause = 1;
presskey2.gotoAndStop(2);
}
Symbol 227 MovieClip Frame 1
stop();
Symbol 227 MovieClip Frame 2
stop();
Symbol 248 MovieClip Frame 1
stop();
Symbol 248 MovieClip Frame 2
stop();
Symbol 274 MovieClip Frame 1
stop();
Symbol 279 MovieClip Frame 1
stop();
Symbol 284 MovieClip Frame 1
stop();
Symbol 286 MovieClip Frame 1
stop();
Symbol 290 MovieClip Frame 1
stop();
Symbol 300 MovieClip Frame 1
stop();
Symbol 301 MovieClip [enemy] Frame 1
stop();
Symbol 307 Button
on (release) {
_root.framed = _root.framed + 1;
if (_root.framed > _root.framedmax) {
_root.framed = 1;
}
_parent.enemc.gotoAndStop(_root.framed);
}
Symbol 308 Button
on (release) {
_root.framed = _root.framed - 1;
if (_root.framed < 1) {
_root.framed = _root.framedmax;
}
_parent.enemc.gotoAndStop(_root.framed);
}
Symbol 321 MovieClip Frame 1
stop();
_root.framed = 1;
if (_root.recordlevel < 25) {
_root.framedmax = 13;
}
if (_root.recordlevel < 11) {
_root.framedmax = 12;
}
if (_root.recordlevel < 7) {
_root.framedmax = 11;
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(1);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop(2);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 3
onClipEvent (load) {
this.gotoAndStop(3);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop(4);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop(5);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 6
onClipEvent (load) {
this.gotoAndStop(6);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 7
onClipEvent (load) {
this.gotoAndStop(7);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 8
onClipEvent (load) {
this.gotoAndStop(8);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 9
onClipEvent (load) {
this.gotoAndStop(9);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 10
onClipEvent (load) {
this.gotoAndStop(15);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 11
onClipEvent (load) {
this.gotoAndStop(11);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 12
onClipEvent (load) {
this.gotoAndStop(12);
this.mc.mc.gotoAndStop(3);
}
Instance of Symbol 301 MovieClip [enemy] "tur" in Symbol 321 MovieClip Frame 13
onClipEvent (load) {
this.gotoAndStop(13);
}
Symbol 323 Button
on (release) {
_root.difficulty = "easy";
gotoAndStop (7);
}
on (rollOver) {
_root.difficultydes = "Easy \n The baby penguins are invincible. \n You take half damage from enemies. \n You recieve half bonus points.";
}
Symbol 325 Button
on (release) {
_root.difficulty = "medium";
gotoAndStop (7);
}
on (rollOver) {
_root.difficultydes = "Medium \n \n Everything is normal.";
}
Symbol 327 Button
on (release) {
_root.difficulty = "hard";
gotoAndStop (7);
}
on (rollOver) {
_root.difficultydes = "Hard \n Some enemies are faster and stronger \n You take double damage. \n You recieve double bonus points.";
}
Symbol 346 MovieClip Frame 1
stop();
Symbol 371 MovieClip Frame 25
stop();
Symbol 376 MovieClip Frame 541
stop();
_root.fadinout = true;
Symbol 377 Button
on (release) {
_root.fadinout = true;
}
Symbol 378 MovieClip Frame 1
stop();
Instance of Symbol 57 MovieClip in Symbol 378 MovieClip Frame 1
onClipEvent (load) {
var bevel = (new flash.filters.BevelFilter());
bevel.type = inner;
bevel.blurY = 0;
bevel.blurX = 5;
bevel.knockout = true;
bevel.strength = 2;
bevel.quality = 1;
bevel.shadowAlpha = 1;
bevel.shadowColor = 16777215 /* 0xFFFFFF */;
bevel.highlightAlpha = 1;
bevel.highlightColor = 16777215 /* 0xFFFFFF */;
bevel.angle = 45;
bevel.distance = 1;
}
onClipEvent (enterFrame) {
bevel.angle = _root._xmouse + _root._ymouse;
this.filters = [bevel];
}
Instance of Symbol 57 MovieClip in Symbol 378 MovieClip Frame 3
onClipEvent (load) {
var bevel = (new flash.filters.BevelFilter());
bevel.type = inner;
bevel.blurY = 0;
bevel.blurX = 5;
bevel.knockout = true;
bevel.strength = 2;
bevel.quality = 1;
bevel.shadowAlpha = 1;
bevel.shadowColor = 16777215 /* 0xFFFFFF */;
bevel.highlightAlpha = 1;
bevel.highlightColor = 16777215 /* 0xFFFFFF */;
bevel.angle = 45;
bevel.distance = 1;
}
onClipEvent (enterFrame) {
bevel.angle = _root._xmouse + _root._ymouse;
this.filters = [bevel];
}
Instance of Symbol 148 MovieClip in Symbol 378 MovieClip Frame 4
onClipEvent (keyUp) {
if (_root.keywaiting == 1) {
_root.mc.presskey3.play();
_root.mc.presskey2.gotoAndStop(1);
}
if (_root.theStateLeft == 1) {
_root.theStateLeft = 0;
_root.gamekeys.leftB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateRight == 1) {
_root.theStateRight = 0;
_root.gamekeys.rightB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateDown == 1) {
_root.theStateDown = 0;
_root.gamekeys.downB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateThrow == 1) {
_root.theStateThrow = 0;
_root.gamekeys.throwB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateSlash == 1) {
_root.theStateSlash = 0;
_root.gamekeys.slashB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateJump == 1) {
_root.theStateJump = 0;
_root.gamekeys.jumpB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateup == 1) {
_root.theStateup = 0;
_root.gamekeys.upB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateSpew == 1) {
_root.theStateSpew = 0;
_root.gamekeys.spewB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStatePause == 1) {
_root.theStatePause = 0;
_root.gamekeys.pauseB = Key.getCode();
_root.keywaiting = 0;
}
}
Instance of Symbol 206 MovieClip in Symbol 378 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.leftB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.leftB);
}
Instance of Symbol 206 MovieClip in Symbol 378 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.rightB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.rightB);
}
Instance of Symbol 206 MovieClip in Symbol 378 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.upB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.upB);
}
Instance of Symbol 206 MovieClip in Symbol 378 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.downB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.downB);
}
Instance of Symbol 206 MovieClip in Symbol 378 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.throwB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.throwB);
}
Instance of Symbol 206 MovieClip in Symbol 378 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.jumpB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.jumpB);
}
Instance of Symbol 206 MovieClip in Symbol 378 MovieClip Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.pauseB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.pauseB);
}
Symbol 383 Button
on (release) {
if (_root.musicon == true) {
_root.musicon = false;
} else {
_root.musicon = true;
}
}
Instance of Symbol 385 MovieClip in Symbol 388 MovieClip Frame 1
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (_root.musicon == true) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Symbol 388 MovieClip Frame 525
gotoAndPlay (5);
Symbol 390 MovieClip Frame 1
stop();
Instance of Symbol 407 MovieClip in Symbol 408 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.pengsdanger == false) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Symbol 416 MovieClip Frame 1
stop();
Instance of Symbol 385 MovieClip in Symbol 416 MovieClip Frame 1
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (_root.musicon == true) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 0;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 1;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 2;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 4;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 5;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 6;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 7;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 8;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 3;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 9;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 10;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 408 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
thismcid = 11;
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (_root.pengsleft > thismcid) {
if (_root.following > thismcid) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 412 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
loaded = false;
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (loaded == false) {
loaded = true;
invis = true;
var D = 0;
while (D < _root.enemies.length) {
enem = _root.enemies[D];
if (enem[0] == 2) {
invis = false;
this.attachMovie("blipbaby", "blip" + enem[1], 5 + enem[1]);
}
if ((((enem[0] != 2) and (enem[0] != 5)) and (enem[0] != 4)) and (enem[0] != 6)) {
invis = false;
this.attachMovie("blipenemy", "blipe" + D, 105 + D);
this["blipe" + D]._alpha = 0;
this["blipe" + D]._xscale = 70;
this["blipe" + D]._yscale = 70;
}
if (enem[0] == 4) {
invis = false;
this.attachMovie("blipenemy2", "blipe" + D, 105 + D);
this["blipe" + D]._alpha = 0;
this["blipe" + D]._xscale = 100;
this["blipe" + D]._yscale = 100;
}
if (enem[0] == 3) {
this["blipe" + D]._xscale = 100;
this["blipe" + D]._yscale = 100;
}
if (enem[0] == 7) {
this["blipe" + D]._xscale = 150;
this["blipe" + D]._yscale = 150;
}
D++;
}
if (invis == false) {
this._alpha = 100;
}
}
var D = 0;
while (D < _root.enemies.length) {
enem = _root.enemies[D];
thisblip = _root.enemies[D][1];
if (((enem[0] != 2) and (enem[0] != 5)) and (enem[0] != 6)) {
if ((enem[5] == true) and (enem[8] == "alive")) {
xDistance = _root["enemymc" + D]._x - _root.charhit._x;
yDistance = _root["enemymc" + D]._y - _root.charhit._y;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
rotvalue = charDirection;
if (xDistance < 0) {
xDistance = xDistance * -1;
}
if (yDistance < 0) {
yDistance = yDistance * -1;
}
tdistance = (xDistance + yDistance) / 25;
if (tdistance < 50) {
this["blipe" + D]._alpha = 100;
} else {
this["blipe" + D]._alpha = 0;
}
if (tdistance < 35) {
movedist = tdistance;
} else {
movedist = 35;
}
xtarg = movedist * Math.cos(rotvalue * (Math.PI/180));
ytarg = movedist * Math.sin(rotvalue * (Math.PI/180));
this["blipe" + D]._x = xtarg;
this["blipe" + D]._y = ytarg;
} else {
this["blipe" + D]._alpha = 0;
}
}
if (enem[0] == 2) {
if ((enem[8] == "none") and (enem[9] == false)) {
xDistance = _root["babyhit" + thisblip]._x - _root.charhit._x;
yDistance = _root["babyhit" + thisblip]._y - _root.charhit._y;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
rotvalue = charDirection;
if (xDistance < 0) {
xDistance = xDistance * -1;
}
if (yDistance < 0) {
yDistance = yDistance * -1;
}
tdistance = (xDistance + yDistance) / 25;
if (tdistance < 50) {
this["blip" + thisblip]._alpha = 100;
} else {
this["blip" + thisblip]._alpha = 30;
}
if (tdistance < 35) {
movedist = tdistance;
} else {
movedist = 35;
}
xtarg = movedist * Math.cos(rotvalue * (Math.PI/180));
ytarg = movedist * Math.sin(rotvalue * (Math.PI/180));
this["blip" + thisblip]._x = xtarg;
this["blip" + thisblip]._y = ytarg;
} else {
this["blip" + thisblip]._alpha = 0;
}
}
D++;
}
}
Instance of Symbol 416 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (load) {
amiplaying = true;
}
onClipEvent (enterFrame) {
if ((_root.musicon == true) and (amiplaying == false)) {
_root.bgSound.setVolume(100);
amiplaying = true;
} else if (_root.musicon == false) {
_root.bgSound.setVolume(0);
amiplaying = false;
}
}
Instance of Symbol 420 MovieClip in Symbol 421 MovieClip [HUD] Frame 1
onClipEvent (enterFrame) {
this._xscale = _root.life;
}
Symbol 442 MovieClip Frame 1
gotoAndPlay(random(30));
Symbol 702 MovieClip Frame 1
stop();
Symbol 702 MovieClip Frame 2
stop();
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 5
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 2;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 5
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 4;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 5
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 1;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 5
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 5;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 5
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 7;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 5
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 6;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 6
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 10;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
thisrock = 2;
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 6
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 11;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 6
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 12;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
thisrock = 1;
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 6
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 13;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 6
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 9;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 6
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 8;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 7
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 31;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 7
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 32;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 7
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 33;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 7
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 39;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 8
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 14;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 8
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 15;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 8
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 16;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 8
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 18;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 8
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 17;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 8
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 19;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 9
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 34;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 9
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 35;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 9
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 40;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 9
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 41;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 10
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 20;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 10
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 21;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 10
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 22;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 10
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 23;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 10
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 24;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 11
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 25;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 11
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 26;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 11
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 27;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 11
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 28;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 11
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 29;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 11
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 30;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 12
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 36;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 12
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 37;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 12
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 38;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 12
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 42;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 12
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 43;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 12
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 44;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 13
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 45;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 13
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 46;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 13
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 47;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 13
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 48;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 13
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 49;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 13
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 50;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 14
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 51;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 14
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 52;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 14
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 53;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 14
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 54;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 14
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 55;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 15
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 56;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 15
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 57;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 15
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 58;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 15
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 59;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 15
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 60;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 16
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 61;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 16
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 62;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 16
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 63;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 16
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 64;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 16
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 65;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 16
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 66;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 16
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 67;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 17
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 71;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 17
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 73;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 17
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 74;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 17
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 68;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 17
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 69;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 18
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 75;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 18
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 76;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 18
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 77;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 18
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 72;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 18
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 70;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 19
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 78;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 19
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 79;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 19
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 80;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 81;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 82;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 83;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 84;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 85;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 86;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 87;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 88;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 89;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 20
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 90;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 91;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 92;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 93;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 94;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 95;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 96;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 97;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 98;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 99;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 21
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 100;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 22
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 101;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 22
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 102;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 22
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 103;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 22
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 104;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 22
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 105;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 23
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 106;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 23
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 107;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 23
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 108;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 23
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 111;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 23
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 112;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 23
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 113;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 24
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 114;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 24
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 115;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 24
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 116;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 24
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 109;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 24
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 110;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 25
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 117;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 25
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 118;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 25
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 119;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 25
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 110;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 121;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 122;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 123;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 124;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 125;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 126;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 127;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 128;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 129;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 26
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 130;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 131;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 132;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 133;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 134;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 135;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 136;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 137;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 138;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 139;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 27
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 140;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 28
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 141;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 28
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 142;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 28
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 143;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 28
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 144;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 28
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 145;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 28
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 146;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 28
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 147;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 29
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 148;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 29
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 149;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 29
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 150;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 29
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 151;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 29
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 152;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 29
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 153;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 29
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 154;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 30
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 155;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 30
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 156;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 30
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 157;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 30
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 158;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 30
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 159;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 702 MovieClip in Symbol 714 MovieClip [tiles17] Frame 30
onClipEvent (load) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
thisid = 160;
}
onClipEvent (enterFrame) {
if ((_parent._x + this._x) < (_root.enemyhit5._x + 500)) {
this.gotoAndStop(2);
}
}
Symbol 747 MovieClip Frame 1
stop();
Symbol 774 MovieClip [levelinfo] Frame 1
stop();
Symbol 775 Button
on (release) {
_root.tutorial.tutexit._y = 100;
}
Symbol 777 Button
on (release) {
_root.tutlastmoves = "0";
_root.gamepaused = false;
_root.tutorial.removeMovieClip();
}
Symbol 778 Button
on (release) {
_root.tutorial.tutexit._y = -200;
}
Symbol 792 MovieClip Frame 1
stop();
Symbol 813 MovieClip [tutorial] Frame 1
stop();
Instance of Symbol 51 MovieClip [char_mc] "tutchar" in Symbol 813 MovieClip [tutorial] Frame 1
onClipEvent (load) {
_root.tutlastmoves = [[this._x, this._y, 0]];
}
onClipEvent (enterFrame) {
xDistance = _root._xmouse - this._x;
yDistance = _root._ymouse - this._y;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
xDest = _root._xmouse;
yDest = _root._ymouse;
spacedown = false;
if (Key.isDown(_root.gamekeys.jumpB)) {
spacedown = true;
}
if (spacedown == false) {
if (xDistance < 0) {
xTemp = xDistance * -1;
} else {
xTempt = xDistance;
}
if ((xDistance > 20) or (xDistance < -20)) {
this._x = this._x + Math.round((xDest - this._x) * 0.1);
}
if ((yDistance < -20) or (yDistance > 20)) {
this._y = this._y + Math.round((yDest - this._y) * 0.1);
}
}
if (_root.tutburst == true) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
_root.tutlastmoves.unshift([this._x, this._y, this._rotation]);
if (_root.tutlastmoves.length > 40) {
_root.tutlastmoves.length = 40;
}
}
Instance of Symbol 786 MovieClip in Symbol 813 MovieClip [tutorial] Frame 1
onClipEvent (enterFrame) {
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.gotoAndStop(2);
}
}
}
Instance of Symbol 385 MovieClip in Symbol 813 MovieClip [tutorial] Frame 1
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (_root.musicon == true) {
this._alpha = 0;
} else {
this._alpha = 100;
}
}
Instance of Symbol 77 MovieClip [mouseTargetMC] in Symbol 813 MovieClip [tutorial] Frame 1
onClipEvent (load) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
_root.tutburst = false;
cooldown = 0;
}
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
cooldown = cooldown - 1;
onMouseDown = function () {
if ((_root.tutburst == false) and (cooldown < 1)) {
_root.tutburst = true;
cooldown = 32;
_root.tutorial.bubblepop._alpha = 100;
_root.tutorial.bubblepop.gotoAndPlay(1);
_root.tutorial.bubblepop._x = this._x;
_root.tutorial.bubblepop._y = this._y;
}
};
if (cooldown < 20) {
_root.tutorial.bubblepop._alpha = 0;
_root.tutburst = false;
}
if (_root.tutburst == true) {
this.gotoAndStop(3);
} else if (cooldown < 1) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(3);
}
}
Instance of Symbol 786 MovieClip in Symbol 813 MovieClip [tutorial] Frame 2
onClipEvent (enterFrame) {
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.gotoAndStop(3);
}
}
}
Instance of Symbol 792 MovieClip in Symbol 813 MovieClip [tutorial] Frame 3
onClipEvent (load) {
stayed = 0;
}
onClipEvent (enterFrame) {
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
spacedown = false;
if (Key.isDown(_root.gamekeys.jumpB)) {
spacedown = true;
}
if (spacedown == true) {
stayed = stayed + 1;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
stayed = 0;
}
if (stayed > 37) {
_root.tutorial.gotoAndStop(4);
}
}
}
}
Instance of Symbol 793 MovieClip "tutbaby" in Symbol 813 MovieClip [tutorial] Frame 4
onClipEvent (load) {
following = false;
delay = 0;
}
onClipEvent (enterFrame) {
delay = delay - 1;
if (Key.isDown(_root.gamekeys.throwB)) {
following = false;
_root.followed = false;
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if (((xdist < 30) and (xdist > -30)) and (following == false)) {
if ((ydist < 30) and (ydist > -30)) {
following = true;
_root.followed = true;
delay = 5;
}
}
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutchar._x - this._x) + 20;
yDistance = (_root.tutorial.tutchar._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
if (following != true) {
this._rotation = charDirection;
}
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 70;
} else {
this._yscale = -70;
}
if ((following == true) and (delay < 1)) {
this._x = _root.tutlastmoves[4][0];
this._y = _root.tutlastmoves[4][1];
this._rotation = _root.tutlastmoves[4][2];
}
}
Instance of Symbol 792 MovieClip in Symbol 813 MovieClip [tutorial] Frame 4
onClipEvent (load) {
stayed = 0;
}
onClipEvent (enterFrame) {
xdist = this._x - _root.tutorial.tutbaby._x;
ydist = this._y - _root.tutorial.tutbaby._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.gotoAndStop(5);
}
}
}
Instance of Symbol 792 MovieClip in Symbol 813 MovieClip [tutorial] Frame 5
onClipEvent (load) {
stayed = 0;
}
onClipEvent (enterFrame) {
_root.tutbabytouched = false;
xdist = this._x - _root.tutorial.tutbaby._x;
ydist = this._y - _root.tutorial.tutbaby._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutbabytouched = true;
this.gotoAndStop(2);
}
}
if (_root.tutbabytouched == false) {
this.gotoAndStop(1);
}
}
Instance of Symbol 792 MovieClip in Symbol 813 MovieClip [tutorial] Frame 5
onClipEvent (load) {
stayed = 0;
}
onClipEvent (enterFrame) {
if (_root.tutbabytouched == false) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
if (_root.tutbabytouched == true) {
if (_root.difficulty != "easy") {
_root.tutorial.gotoAndStop(6);
} else {
_root.tutorial.gotoAndStop(16);
}
}
}
}
}
Instance of Symbol 796 MovieClip in Symbol 813 MovieClip [tutorial] Frame 6
onClipEvent (load) {
stunned = 0;
}
onClipEvent (enterFrame) {
stunned = stunned - 1;
xdist = this._x - _root._xmouse;
ydist = this._y - _root._ymouse;
if (((xdist < 40) and (xdist > -40)) and (_root.tutburst == true)) {
if ((ydist < 40) and (ydist > -40)) {
stunned = 20;
}
}
xdist = this._x - _root.tutorial.tutbaby._x;
ydist = this._y - _root.tutorial.tutbaby._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.gotoAndStop(7);
}
}
if (stunned < 1) {
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutbaby._x - this._x) + 20;
yDistance = (_root.tutorial.tutbaby._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
this._x = this._x + (3 * Math.cos(this._rotation * (Math.PI/180)));
this._y = this._y + (3 * Math.sin(this._rotation * (Math.PI/180)));
}
}
Instance of Symbol 796 MovieClip in Symbol 813 MovieClip [tutorial] Frame 7
onClipEvent (load) {
stunned = 0;
timesstunned = 0;
}
onClipEvent (enterFrame) {
stunned = stunned - 1;
xdist = this._x - _root.tutorial.bubblepop._x;
ydist = this._y - _root.tutorial.bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (_root.tutburst == true)) {
if ((ydist < 40) and (ydist > -40)) {
if (stunned < 1) {
timesstunned = timesstunned + 1;
}
if (timesstunned > 3) {
_root.tutorial.gotoAndStop(8);
}
stunned = 20;
}
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if (((xdist < 30) and (xdist > -30)) and (_root.tutburst == true)) {
if ((ydist < 30) and (ydist > -30)) {
}
}
if (stunned < 1) {
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutchar._x - this._x) + 20;
yDistance = (_root.tutorial.tutchar._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
if ((xDistance > 10) or (xDistance < -10)) {
this._x = this._x + (3 * Math.cos(this._rotation * (Math.PI/180)));
}
if ((yDistance > 10) or (yDistance < -10)) {
this._y = this._y + (3 * Math.sin(this._rotation * (Math.PI/180)));
}
}
}
Instance of Symbol 796 MovieClip in Symbol 813 MovieClip [tutorial] Frame 8
onClipEvent (load) {
stunned = 0;
timeskilled = 0;
}
onClipEvent (enterFrame) {
stunned = stunned - 1;
xdist = this._x - _root.tutorial.bubblepop._x;
ydist = this._y - _root.tutorial.bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (_root.tutburst == true)) {
if ((ydist < 40) and (ydist > -40)) {
stunned = 20;
}
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if (((xdist < 30) and (xdist > -30)) and (_root.tutburst == true)) {
if ((ydist < 30) and (ydist > -30)) {
timeskilled = timeskilled + 1;
stunned = 0;
this._x = 620;
this._y = 200;
if (timeskilled == 2) {
this._x = -20;
}
if (timeskilled > 3) {
_root.tutorial.gotoAndStop(9);
}
}
}
if (stunned < 1) {
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutchar._x - this._x) + 20;
yDistance = (_root.tutorial.tutchar._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
if ((xDistance > 10) or (xDistance < -10)) {
this._x = this._x + (3 * Math.cos(this._rotation * (Math.PI/180)));
}
if ((yDistance > 10) or (yDistance < -10)) {
this._y = this._y + (3 * Math.sin(this._rotation * (Math.PI/180)));
}
}
}
Instance of Symbol 801 MovieClip in Symbol 813 MovieClip [tutorial] Frame 9
onClipEvent (load) {
left = true;
right = false;
up = true;
down = true;
}
onClipEvent (enterFrame) {
if ((((left == true) and (right == true)) and (down == true)) and (up == true)) {
_root.tutorial.gotoAndStop(10);
}
if (Key.isDown(_root.gamekeys.rightB)) {
_root.tutorial.tutchar._x = _root.tutorial.tutchar._x - 15;
if (this._x > -200) {
this._x = this._x - 15;
} else {
right = true;
}
}
}
Instance of Symbol 801 MovieClip in Symbol 813 MovieClip [tutorial] Frame 10
onClipEvent (load) {
left = false;
right = true;
up = true;
down = true;
}
onClipEvent (enterFrame) {
if ((((left == true) and (right == true)) and (down == true)) and (up == true)) {
_root.tutorial.gotoAndStop(11);
}
if (Key.isDown(_root.gamekeys.leftB)) {
_root.tutorial.tutchar._x = _root.tutorial.tutchar._x + 15;
if (this._x < 600) {
this._x = this._x + 15;
} else {
left = true;
}
}
}
Instance of Symbol 801 MovieClip in Symbol 813 MovieClip [tutorial] Frame 11
onClipEvent (load) {
left = true;
right = true;
up = false;
down = true;
}
onClipEvent (enterFrame) {
if ((((left == true) and (right == true)) and (down == true)) and (up == true)) {
_root.tutorial.gotoAndStop(12);
}
if (Key.isDown(_root.gamekeys.upB)) {
_root.tutorial.tutchar._y = _root.tutorial.tutchar._y + 15;
if (this._y < 400) {
this._y = this._y + 15;
} else {
up = true;
}
}
}
Instance of Symbol 801 MovieClip in Symbol 813 MovieClip [tutorial] Frame 12
onClipEvent (load) {
left = true;
right = true;
up = true;
down = false;
}
onClipEvent (enterFrame) {
if ((((left == true) and (right == true)) and (down == true)) and (up == true)) {
_root.tutorial.gotoAndStop(13);
}
if (Key.isDown(_root.gamekeys.downB)) {
_root.tutorial.tutchar._y = _root.tutorial.tutchar._y - 15;
if (this._y > -200) {
this._y = this._y - 15;
} else {
down = true;
}
}
}
Instance of Symbol 801 MovieClip in Symbol 813 MovieClip [tutorial] Frame 13
onClipEvent (load) {
left = false;
right = false;
up = false;
down = false;
}
onClipEvent (enterFrame) {
if ((((left == true) and (right == true)) and (down == true)) and (up == true)) {
_root.tutalldir = true;
}
if (Key.isDown(_root.gamekeys.leftB)) {
left = true;
_root.tutorial.tutchar._x = _root.tutorial.tutchar._x + 15;
if (this._x < 785) {
this._x = this._x + 15;
} else {
this._x = -185;
}
}
if (Key.isDown(_root.gamekeys.rightB)) {
right = true;
_root.tutorial.tutchar._x = _root.tutorial.tutchar._x - 15;
if (this._x > -185) {
this._x = this._x - 15;
} else {
this._x = 785;
}
}
if (Key.isDown(_root.gamekeys.upB)) {
up = true;
_root.tutorial.tutchar._y = _root.tutorial.tutchar._y + 15;
if (this._y < 585) {
this._y = this._y + 15;
} else {
this._y = -185;
}
}
if (Key.isDown(_root.gamekeys.downB)) {
down = true;
_root.tutorial.tutchar._y = _root.tutorial.tutchar._y - 15;
if (this._y > -185) {
this._y = this._y - 15;
} else {
this._y = 585;
}
}
}
Instance of Symbol 792 MovieClip in Symbol 813 MovieClip [tutorial] Frame 13
onClipEvent (load) {
stayed = 0;
}
onClipEvent (enterFrame) {
if (_root.tutalldir == true) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
if (_root.tutalldir == true) {
_root.tutorial.gotoAndStop(14);
}
}
}
if (Key.isDown(_root.gamekeys.leftB)) {
if (this._x < 785) {
this._x = this._x + 15;
} else {
this._x = -185;
}
}
if (Key.isDown(_root.gamekeys.rightB)) {
if (this._x > -185) {
this._x = this._x - 15;
} else {
this._x = 785;
}
}
if (Key.isDown(_root.gamekeys.upB)) {
if (this._y < 585) {
this._y = this._y + 15;
} else {
this._y = -185;
}
}
if (Key.isDown(_root.gamekeys.downB)) {
if (this._y > -185) {
this._y = this._y - 15;
} else {
this._y = 585;
}
}
}
Instance of Symbol 792 MovieClip in Symbol 813 MovieClip [tutorial] Frame 14
onClipEvent (load) {
stayed = 0;
}
onClipEvent (enterFrame) {
xdist = this._x - _root.tutorial.tutbaby._x;
ydist = this._y - _root.tutorial.tutbaby._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.gotoAndStop(15);
}
}
}
Instance of Symbol 807 MovieClip in Symbol 813 MovieClip [tutorial] Frame 14
onClipEvent (load) {
stunned = 0;
moves = -5;
}
onClipEvent (enterFrame) {
stunned = stunned - 1;
xdist = this._x - _root.tutorial.bubblepop._x;
ydist = this._y - _root.tutorial.bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (_root.tutburst == true)) {
if ((ydist < 40) and (ydist > -40)) {
stunned = 60;
}
}
xdist = this._x - _root.tutorial.tutbaby._x;
ydist = this._y - _root.tutorial.tutbaby._y;
if (((xdist < 30) and (xdist > -30)) and (_root.difficulty != "easy")) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.tutbaby.following = false;
_root.tutorial.tutbaby._x = 62.5;
_root.tutorial.tutbaby._y = 312.2;
}
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.tutbaby.following = false;
_root.tutorial.tutbaby._x = 62.5;
_root.tutorial.tutbaby._y = 312.2;
_root.tutorial.tutchar._x = 30;
_root.tutorial.tutchar._y = 30;
}
}
if (stunned < 1) {
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutchar._x - this._x) + 20;
yDistance = (_root.tutorial.tutchar._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
if (moves == -5) {
this._y = this._y + moves;
if (this._y < 10) {
moves = 5;
}
}
if (moves == 5) {
this._y = this._y + moves;
if (this._y > 250) {
moves = -5;
}
}
}
}
Instance of Symbol 807 MovieClip in Symbol 813 MovieClip [tutorial] Frame 14
onClipEvent (load) {
stunned = 0;
moves = 5;
}
onClipEvent (enterFrame) {
stunned = stunned - 1;
xdist = this._x - _root.tutorial.bubblepop._x;
ydist = this._y - _root.tutorial.bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (_root.tutburst == true)) {
if ((ydist < 40) and (ydist > -40)) {
stunned = 60;
}
}
xdist = this._x - _root.tutorial.tutbaby._x;
ydist = this._y - _root.tutorial.tutbaby._y;
if (((xdist < 30) and (xdist > -30)) and (_root.difficulty != "easy")) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.tutbaby.following = false;
_root.tutorial.tutbaby._x = 62.5;
_root.tutorial.tutbaby._y = 312.2;
}
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.tutbaby.following = false;
_root.tutorial.tutbaby._x = 62.5;
_root.tutorial.tutbaby._y = 312.2;
_root.tutorial.tutchar._x = 30;
_root.tutorial.tutchar._y = 30;
}
}
if (stunned < 1) {
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutchar._x - this._x) + 20;
yDistance = (_root.tutorial.tutchar._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
if (moves == -5) {
this._y = this._y + moves;
if (this._y < 10) {
moves = 5;
}
}
if (moves == 5) {
this._y = this._y + moves;
if (this._y > 250) {
moves = -5;
}
}
}
}
Instance of Symbol 807 MovieClip in Symbol 813 MovieClip [tutorial] Frame 14
onClipEvent (load) {
stunned = 0;
moves = -5;
}
onClipEvent (enterFrame) {
stunned = stunned - 1;
xdist = this._x - _root.tutorial.bubblepop._x;
ydist = this._y - _root.tutorial.bubblepop._y;
if (((xdist < 40) and (xdist > -40)) and (_root.tutburst == true)) {
if ((ydist < 40) and (ydist > -40)) {
stunned = 108;
}
}
xdist = this._x - _root.tutorial.tutbaby._x;
ydist = this._y - _root.tutorial.tutbaby._y;
if (((xdist < 30) and (xdist > -30)) and (_root.difficulty != "easy")) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.tutbaby.following = false;
_root.tutorial.tutbaby._x = 62.5;
_root.tutorial.tutbaby._y = 312.2;
}
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if ((xdist < 30) and (xdist > -30)) {
if ((ydist < 30) and (ydist > -30)) {
_root.tutorial.tutbaby.following = false;
_root.tutorial.tutbaby._x = 62.5;
_root.tutorial.tutbaby._y = 312.2;
_root.tutorial.tutchar._x = 30;
_root.tutorial.tutchar._y = 30;
}
}
if (stunned < 1) {
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutchar._x - this._x) + 20;
yDistance = (_root.tutorial.tutchar._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
if (moves == -5) {
this._y = this._y + moves;
if (this._y < 10) {
moves = 5;
}
}
if (moves == 5) {
this._y = this._y + moves;
if (this._y > 250) {
moves = -5;
}
}
}
}
Instance of Symbol 793 MovieClip "tutbaby" in Symbol 813 MovieClip [tutorial] Frame 14
onClipEvent (load) {
following = false;
delay = 0;
}
onClipEvent (enterFrame) {
delay = delay - 1;
if (Key.isDown(_root.gamekeys.throwB)) {
following = false;
_root.followed = false;
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if (((xdist < 30) and (xdist > -30)) and (following == false)) {
if ((ydist < 30) and (ydist > -30)) {
following = true;
_root.followed = true;
delay = 5;
}
}
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutchar._x - this._x) + 20;
yDistance = (_root.tutorial.tutchar._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
if (following != true) {
this._rotation = charDirection;
}
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 70;
} else {
this._yscale = -70;
}
if ((following == true) and (delay < 1)) {
this._x = _root.tutlastmoves[4][0];
this._y = _root.tutlastmoves[4][1];
this._rotation = _root.tutlastmoves[4][2];
}
}
Symbol 813 MovieClip [tutorial] Frame 16
stop();
Instance of Symbol 796 MovieClip in Symbol 813 MovieClip [tutorial] Frame 16
onClipEvent (load) {
stunned = 0;
timesstunned = 0;
}
onClipEvent (enterFrame) {
stunned = stunned - 1;
xdist = this._x - _root._xmouse;
ydist = this._y - _root._ymouse;
if (((xdist < 40) and (xdist > -40)) and (_root.tutburst == true)) {
if ((ydist < 40) and (ydist > -40)) {
if (stunned < 1) {
timesstunned = timesstunned + 1;
}
if (timesstunned > 3) {
_root.tutorial.gotoAndStop(8);
}
stunned = 20;
}
}
xdist = this._x - _root.tutorial.tutchar._x;
ydist = this._y - _root.tutorial.tutchar._y;
if (((xdist < 30) and (xdist > -30)) and (_root.tutburst == true)) {
if ((ydist < 30) and (ydist > -30)) {
}
}
if (stunned < 1) {
this.mc.gotoAndStop(2);
xDistance = (_root.tutorial.tutchar._x - this._x) + 20;
yDistance = (_root.tutorial.tutchar._y - this._y) + 20;
normalise = Math.abs(xDistance) + Math.abs(yDistance);
if ((xDistance >= 0) & (yDistance >= 0)) {
charDirection = 90 * (yDistance / normalise);
} else if ((xDistance <= 0) && (yDistance >= 0)) {
charDirection = (-90 * (xDistance / normalise)) + 90;
} else if ((xDistance <= 0) && (yDistance <= 0)) {
charDirection = (-90 * (yDistance / normalise)) + 180;
} else {
charDirection = (90 * (xDistance / normalise)) + 270;
}
this._rotation = charDirection;
if ((this._rotation < 90) and (this._rotation > -90)) {
this._yscale = 100;
} else {
this._yscale = -100;
}
if ((xDistance > 10) or (xDistance < -10)) {
this._x = this._x + (3 * Math.cos(this._rotation * (Math.PI/180)));
}
if ((yDistance > 10) or (yDistance < -10)) {
this._y = this._y + (3 * Math.sin(this._rotation * (Math.PI/180)));
}
}
}
Instance of Symbol 821 MovieClip in Symbol 822 MovieClip [blowd_mc] Frame 1
onClipEvent (enterFrame) {
alphacheck = false;
if (_root.blowdy == true) {
this.blow._y = _root.blowd;
this.blow._x = 0;
this.blow._alpha = 100;
this.blow2._y = _root.blowd * -1;
this.blow2._x = 0;
this.blow2._alpha = 100;
alphacheck = true;
}
if (_root.blowdx == true) {
this.blow._y = 0;
this.blow._x = _root.blowd;
this.blow._alpha = 100;
this.blow2._y = 0;
this.blow2._x = _root.blowd * -1;
this.blow2._alpha = 100;
alphacheck = true;
}
if (alphacheck == false) {
this.blow._alpha = 0;
this.blow2._alpha = 0;
}
}
Symbol 827 Button
on (release) {
_root.gamepaused = false;
_root.pausescreen.removeMovieClip();
}
Symbol 829 Button
on (release) {
gotoAndStop (6);
}
Symbol 830 Button
on (release) {
gotoAndStop (3);
}
Symbol 832 Button
on (release) {
gotoAndStop (4);
}
Symbol 834 Button
on (release) {
gotoAndStop (5);
}
Symbol 835 Button
on (release) {
gotoAndStop (2);
}
Symbol 837 Button
on (release) {
_root.pausescreen.exit._y = 100;
}
Symbol 840 Button
on (release) {
_root.gotoAndStop(4);
_root.pausescreen.removeMovieClip();
}
Symbol 842 Button
on (release) {
_root.pausescreen.exit._y = -200;
}
Symbol 845 Button
on (release) {
gotoAndStop (1);
}
Symbol 848 Button
on (release) {
if (_root.keywaiting != 1) {
gotoAndStop (1);
} else {
presskey.play();
}
}
Symbol 850 MovieClip Frame 1
stop();
Instance of Symbol 850 MovieClip in Symbol 853 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.curlevel);
stopat = _root.world.tile - 1;
if ((_root.world.tile - 1) < 1) {
stopat = 1;
}
this.tiles.gotoAndStop(stopat);
}
Instance of Symbol 850 MovieClip in Symbol 853 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.curlevel);
this.tiles.gotoAndStop(_root.world.tile);
}
Instance of Symbol 850 MovieClip in Symbol 853 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.curlevel);
this.tiles.gotoAndStop(_root.world.tile + 1);
}
Instance of Symbol 850 MovieClip in Symbol 853 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.curlevel);
this.tiles.gotoAndStop(_root.world.tile + 2);
}
Instance of Symbol 850 MovieClip in Symbol 853 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndStop(_root.curlevel);
stopat = _root.world.tile - 2;
if ((_root.world.tile - 2) < 1) {
stopat = 1;
}
this.tiles.gotoAndStop(stopat);
}
Instance of Symbol 852 MovieClip in Symbol 853 MovieClip Frame 1
onClipEvent (load) {
this._x = (((_root.world.charx + _root.char_mc._x) + 2100) - (_root.world.tile * 600)) / 10;
this._y = (_root.world.chary + _root.char_mc._y) / 10;
}
Symbol 854 MovieClip [pausescreen] Frame 1
stop();
Mouse.show();
Instance of Symbol 148 MovieClip in Symbol 854 MovieClip [pausescreen] Frame 4
onClipEvent (keyUp) {
if (_root.keywaiting == 1) {
_root.mc.presskey3.play();
_root.mc.presskey2.gotoAndStop(1);
}
if (_root.theStateLeft == 1) {
_root.theStateLeft = 0;
_root.gamekeys.leftB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateRight == 1) {
_root.theStateRight = 0;
_root.gamekeys.rightB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateDown == 1) {
_root.theStateDown = 0;
_root.gamekeys.downB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateThrow == 1) {
_root.theStateThrow = 0;
_root.gamekeys.throwB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateSlash == 1) {
_root.theStateSlash = 0;
_root.gamekeys.slashB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateJump == 1) {
_root.theStateJump = 0;
_root.gamekeys.jumpB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateup == 1) {
_root.theStateup = 0;
_root.gamekeys.upB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStateSpew == 1) {
_root.theStateSpew = 0;
_root.gamekeys.spewB = Key.getCode();
_root.keywaiting = 0;
}
if (_root.theStatePause == 1) {
_root.theStatePause = 0;
_root.gamekeys.pauseB = Key.getCode();
_root.keywaiting = 0;
}
}
Instance of Symbol 206 MovieClip in Symbol 854 MovieClip [pausescreen] Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.leftB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.leftB);
}
Instance of Symbol 206 MovieClip in Symbol 854 MovieClip [pausescreen] Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.rightB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.rightB);
}
Instance of Symbol 206 MovieClip in Symbol 854 MovieClip [pausescreen] Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.upB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.upB);
}
Instance of Symbol 206 MovieClip in Symbol 854 MovieClip [pausescreen] Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.downB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.downB);
}
Instance of Symbol 206 MovieClip in Symbol 854 MovieClip [pausescreen] Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.throwB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.throwB);
}
Instance of Symbol 206 MovieClip in Symbol 854 MovieClip [pausescreen] Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.jumpB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.jumpB);
}
Instance of Symbol 206 MovieClip in Symbol 854 MovieClip [pausescreen] Frame 4
onClipEvent (enterFrame) {
this.gotoAndStop(_root.gamekeys.pauseB);
}
onClipEvent (load) {
this.gotoAndStop(_root.gamekeys.pauseB);
}
Symbol 855 MovieClip Frame 1
stop();
Instance of Symbol 399 MovieClip [points_mc] in Symbol 855 MovieClip Frame 2
/* no clip actions */
Symbol 858 MovieClip Frame 1
stop();
Symbol 858 MovieClip Frame 10
_root.explodedone = true;
Symbol 860 MovieClip Frame 1
stop();
Symbol 860 MovieClip Frame 6
_root.hitdone = true;
Symbol 862 MovieClip Frame 1
stop();
Symbol 862 MovieClip Frame 4
_root.twingdone = true;
Symbol 864 MovieClip Frame 1
stop();
Symbol 864 MovieClip Frame 9
_root.chirp1done = true;
Symbol 866 MovieClip Frame 1
stop();
Symbol 866 MovieClip Frame 5
_root.chirp2done = true;
Symbol 867 MovieClip Frame 1
stop();
Symbol 867 MovieClip Frame 42
_root.chirp3done = true;
Symbol 868 MovieClip Frame 1
stop();
Symbol 868 MovieClip Frame 7
_root.chirp4done = true;
Symbol 870 MovieClip Frame 1
stop();
Symbol 870 MovieClip Frame 22
_root.chirp5done = true;
Symbol 871 Button
on (release) {
_root.timebonused = 0;
if (_root.bonus1p > 0) {
_root.bonus1p = 0;
}
if (_root.bonus2p > 0) {
_root.bonus2p = 0;
}
if (_root.bonus3p > 0) {
_root.bonus3p = 0;
}
if (_root.invicpoint == false) {
_root.eaten = _root.eaten + (1000 * _root.multilast);
}
if (_root.timebpoint == false) {
_root.eaten = _root.eaten + (1000 * _root.multilast);
}
if (_root.centpoint == false) {
_root.eaten = _root.eaten + (500 * _root.multilast);
}
_root.totalscore = _root.eaten;
_root.fadinout = true;
}
Instance of Symbol 38 MovieClip in Symbol 873 MovieClip Frame 1
onClipEvent (load) {
_root.percentsaved = Math.round((_root.pengssavedlast / _root.pengstotallast) * 100);
timebonused = false;
centbonus = false;
invinc = false;
_root.bonus3 = " ";
_root.bonus3p = " ";
_root.bonus2 = " ";
_root.bonus2p = " ";
_root.bonus1 = " ";
_root.bonus1p = " ";
_root.invicpoint = true;
_root.timebpoint = true;
_root.centpoint = true;
if (((_root.percentsaved == 100) and (_root.pengssavedlast > 0)) and (_root.difficulty != "easy")) {
centbonus = 2;
_root.centpoint = false;
}
if ((_root.timeleftlast < 15) and (_root.pengssavedlast > 0)) {
timebonused = 2;
_root.timebpoint = false;
}
if ((_root.damagelast == 0) and (_root.pengssavedlast > 0)) {
invinc = 2;
_root.invicpoint = false;
}
}
onClipEvent (enterFrame) {
if (_root.fadinout != true) {
if (invinc != false) {
if (invinc == 2) {
invinc = 5;
_root.eaten = _root.eaten + (1000 * _root.multilast);
_root.invicpoint = true;
if ((centbonus == false) and (timebonused == false)) {
_root.bonus3 = "No Damage Bonus";
_root.bonus3p = 1000 * _root.multilast;
}
if (((centbonus == false) and (timebonused != false)) or ((centbonus != false) and (timebonused == false))) {
_root.bonus2 = "No Damage Bonus";
_root.bonus2p = 500 * _root.multilast;
}
if ((centbonus != false) and (timebonused != false)) {
_root.bonus1 = "No Damage Bonus";
_root.bonus1p = 500 * _root.multilast;
}
}
if (invinc == 5) {
if ((centbonus == false) and (timebonused == false)) {
_root.bonus3p = _root.bonus3p - 25;
_root.totalscore = _root.totalscore + 25;
if (_root.bonus3p < 1) {
invinc = false;
}
}
if (((centbonus == false) and (timebonused != false)) or ((centbonus != false) and (timebonused == false))) {
_root.bonus2p = _root.bonus2p - 25;
_root.totalscore = _root.totalscore + 25;
if (_root.bonus2p < 1) {
invinc = false;
}
}
if ((centbonus != false) and (timebonused != false)) {
_root.bonus1p = _root.bonus1p - 25;
_root.totalscore = _root.totalscore + 25;
if (_root.bonus1p < 1) {
invinc = false;
}
}
}
}
if ((timebonused != false) and (invinc == false)) {
if (timebonused == 2) {
timebonused = 5;
_root.eaten = _root.eaten + (1000 * _root.multilast);
_root.timebpoint = true;
if (centbonus == false) {
_root.bonus3 = "Close Call";
_root.bonus3p = 500 * _root.multilast;
} else {
_root.bonus2 = "Close Call";
_root.bonus2p = 500 * _root.multilast;
}
}
if (timebonused == 5) {
if (centbonus == false) {
_root.bonus3p = _root.bonus3p - 25;
_root.totalscore = _root.totalscore + 25;
if (_root.bonus3p < 1) {
timebonused = false;
}
} else {
_root.bonus2p = _root.bonus2p - 25;
_root.totalscore = _root.totalscore + 25;
if (_root.bonus2p < 1) {
timebonused = false;
}
}
}
}
if (((centbonus != false) and (timebonused == false)) and (invinc == false)) {
if (centbonus == 2) {
_root.bonus3 = "All Penguins Saved";
_root.bonus3p = 500 * _root.multilast;
_root.eaten = _root.eaten + (500 * _root.multilast);
_root.centpoint = true;
centbonus = 5;
}
if (centbonus == 5) {
_root.bonus3p = _root.bonus3p - 25;
_root.totalscore = _root.totalscore + 25;
if (_root.bonus3p < 1) {
centbonus = false;
}
}
}
if ((((_root.timebonused > 0) and (centbonus == false)) and (timebonused == false)) and (invinc == false)) {
if (_root.timebonused > 0) {
_root.timebonused = _root.timebonused + -1;
_root.totalscore = _root.totalscore + 1;
}
if (_root.timebonused > 20) {
_root.timebonused = _root.timebonused + -3;
_root.totalscore = _root.totalscore + 3;
}
if (_root.timebonused > 100) {
_root.timebonused = _root.timebonused + -15;
_root.totalscore = _root.totalscore + 15;
}
if (_root.timebonused > 200) {
_root.timebonused = _root.timebonused + -25;
_root.totalscore = _root.totalscore + 25;
}
if (_root.timebonused > 1000) {
_root.timebonused = _root.timebonused + -55;
_root.totalscore = _root.totalscore + 55;
}
if (_root.timebonused > 5000) {
_root.timebonused = _root.timebonused + -250;
_root.totalscore = _root.totalscore + 250;
}
if (_root.timebonused > 10000) {
_root.timebonused = _root.timebonused + -550;
_root.totalscore = _root.totalscore + 550;
}
}
}
}
Symbol 906 MovieClip Frame 1
stop();
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 48) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 28) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 22) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 5) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 28) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 49) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 49) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 29) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 20) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 42) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 41) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 7) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 42) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 57) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 58) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 54) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 44) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 57) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 59) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 13) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 59) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 39) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 12) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 40) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 35) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 36) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 44) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 54) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 11) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 47) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 43) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 51) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 60) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 6) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 57) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 56) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 55) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 57) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 26) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 18) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 10) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 26) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 9) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 46) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 46) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 23) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 45) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 52) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 52) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 27) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 14) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 15) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 37) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 37) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 51) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 30) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 50) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 51) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 21) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 33) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 31) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 4) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 32) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 32) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 25) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 34) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 19) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 34) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 24) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 24) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 17) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 38) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 53) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 53) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 1) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 0) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 903 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 3) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 3) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 33) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 16) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 8) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 906 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if ((_root.clearclears > 60) and (_root.difficulty != "easy")) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 346 MovieClip in Symbol 907 MovieClip Frame 1
onClipEvent (load) {
if (_root.clearclears > 60) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Symbol 909 MovieClip Frame 654
stop();