Frame 1
function doSomething() {
}
function doSomething2() {
getURL ("http://www.albinoblacksheep.com", _blank);
}
stop();
onEnterFrame = function () {
loadbar._xscale = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (_root.getBytesLoaded() == _root.getBytesTotal()) {
play();
delete onEnterFrame;
}
};
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Virus", doSomething);
Functioned2 = new ContextMenuItem(" ---Visit ABS---", doSomething2);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
_root.menu = MENU;
Frame 2
stopAllSounds();
sSound = new Sound();
sSound.attachSound("intro");
sSound.start(0, 99);
play();
Frame 19
stop();
Frame 36
stop();
Frame 51
stop();
Frame 52
stop();
score = 0;
stopAllSounds();
fourthSound = new Sound();
fourthSound.attachSound("game");
fourthSound.start(0, 100000000000000);
Instance of Symbol 51 MovieClip in Frame 52
onClipEvent (enterFrame) {
score = "0";
}
Frame 53
delete onEnterFrame;
stop();
Frame 54
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
fulldiff = 1;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 1000) {
gotoAndPlay ("level1complete");
}
}
};
Instance of Symbol 18 MovieClip "sprite" in Frame 54
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 29 MovieClip in Frame 54
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 54
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 54
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 54
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 55
score = 0;
delete onEnterFrame;
stop();
Frame 56
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 1500) {
gotoAndPlay ("level2complete");
}
}
};
Instance of Symbol 18 MovieClip "sprite" in Frame 56
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 29 MovieClip in Frame 56
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 56
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 56
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 56
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 57
score = 0;
delete onEnterFrame;
stop();
Frame 58
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 2000) {
gotoAndPlay ("level3complete");
}
}
};
Instance of Symbol 74 MovieClip in Frame 58
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 58
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 29 MovieClip in Frame 58
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 58
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 59
score = 0;
delete onEnterFrame;
stop();
Frame 60
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 3000) {
gotoAndPlay ("level4complete");
}
}
};
Instance of Symbol 74 MovieClip in Frame 60
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 81 MovieClip in Frame 60
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 84 MovieClip in Frame 60
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 60
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 29 MovieClip in Frame 60
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 60
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 61
score = 0;
delete onEnterFrame;
stop();
Frame 62
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 3500) {
gotoAndPlay ("level5complete");
}
}
};
Instance of Symbol 84 MovieClip in Frame 62
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 62
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 29 MovieClip in Frame 62
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 29 MovieClip in Frame 62
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 62
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 62
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 62
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 62
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 63
score = 0;
delete onEnterFrame;
stop();
Frame 64
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 4000) {
gotoAndPlay ("level6complete");
}
}
};
Instance of Symbol 81 MovieClip in Frame 64
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 64
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 29 MovieClip in Frame 64
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 64
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 64
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 64
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 64
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 65
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 66
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 4000) {
gotoAndPlay ("level7complete");
}
}
};
Instance of Symbol 81 MovieClip in Frame 66
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 102 MovieClip in Frame 66
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 66
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 29 MovieClip in Frame 66
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 66
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 67
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 68
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 4000) {
gotoAndPlay ("level8complete");
}
}
};
Instance of Symbol 81 MovieClip in Frame 68
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 102 MovieClip in Frame 68
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 102 MovieClip in Frame 68
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 106 MovieClip in Frame 68
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 68
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 92 MovieClip in Frame 68
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 68
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 69
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 70
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 2000) {
gotoAndPlay ("level9complete");
}
}
};
Instance of Symbol 102 MovieClip in Frame 70
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 102 MovieClip in Frame 70
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 70
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Frame 71
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 72
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 3000) {
gotoAndPlay ("level10complete");
}
}
};
Instance of Symbol 102 MovieClip in Frame 72
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 81 MovieClip in Frame 72
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 81 MovieClip in Frame 72
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 81 MovieClip in Frame 72
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 72
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 72
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 72
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 72
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Frame 73
stop();
score = 0;
delete onEnterFrame;
stop();
Frame 74
stop();
thing = "on";
function getdistance(x, y, x1, y1) {
var _local2;
var _local3;
_local2 = x1 - x;
_local3 = y1 - y;
return(_root.hyp(_local2, _local3));
}
function hyp(a, b) {
return(Math.sqrt((a * a) + (b * b)));
}
MovieClip.prototype.reset = function () {
width = 550;
height = 400;
var _local4;
var _local3;
this.x = this._x;
this.y = this._y;
this.speed = (Math.random() * 4) + 2;
this.targx = Math.random() * width;
this.targy = Math.random() * height;
_local4 = _root.getdistance(this.x, this.y, this.targx, this.targy);
_local3 = this.speed / _local4;
this.diffx = (this.targx - this.x) * _local3;
this.diffy = (this.targy - this.y) * _local3;
};
MovieClip.prototype.move = function () {
if (_root.getdistance(this.x, this.y, this.targx, this.targy) > this.speed) {
this.x = this.x + this.diffx;
this.y = this.y + this.diffy;
} else {
this.x = this.targx;
this.y = this.targy;
if (!this.t) {
this.t = getTimer();
}
if ((getTimer() - this.t) > 1000) {
this.reset();
this.t = 0;
}
}
this._x = this.x;
this._y = this.y;
};
sprite._x = 275;
sprite._y = 200;
score = 0;
onEnterFrame = function () {
if (thing == "on") {
if (sprite._x > 275) {
xdiff = sprite._x;
}
if (sprite._x < 275) {
xdiff = 550 - sprite._x;
}
if (sprite._y > 200) {
ydiff = sprite._y;
}
if (sprite._y < 200) {
ydiff = 400 - sprite._y;
}
fulldiff = (xdiff - 275) + (ydiff - 200);
if (fulldiff >= 300) {
score = score - 2;
}
if ((fulldiff < 300) && (fulldiff >= 250)) {
score = score - 1;
}
if ((fulldiff < 250) && (fulldiff >= 200)) {
score = score - 0;
}
if ((fulldiff < 200) && (fulldiff >= 150)) {
score = score + 1;
}
if ((fulldiff < 150) && (fulldiff >= 100)) {
score = score + 2;
}
if ((fulldiff < 100) && (fulldiff >= 50)) {
score = score + 3;
}
if (fulldiff < 50) {
score = score + 5;
}
if (score >= 1000) {
gotoAndPlay ("level11complete");
}
}
};
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 18 MovieClip "sprite" in Frame 74
onClipEvent (load) {
_x = 275;
_y = 200;
speed = 7;
}
onClipEvent (mouseDown) {
endX = _root._xmouse;
endY = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = (_x + ((endX - _x) / speed));
_y = (_y + ((endY - _y) / speed));
}
onClipEvent (load) {
var frame = 0;
var secScore = 0;
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Instance of Symbol 92 MovieClip in Frame 74
onClipEvent (enterFrame) {
move();
}
onClipEvent (enterFrame) {
if (_parent.sprite.hitTest(this)) {
_root.gotoAndPlay("die");
}
}
Frame 75
stop();
score = 0;
delete onEnterFrame;
stop();
Symbol 14 Button
on (release) {
gotoAndPlay ("pass");
}
Symbol 18 MovieClip Frame 24
gotoAndPlay (1);
Symbol 20 MovieClip Frame 79
stop();
Symbol 27 Button
on (release) {
play();
}
Symbol 31 MovieClip Frame 75
stop();
Symbol 38 Button
on (release) {
play();
}
Symbol 46 Button
on (release) {
if (password == "madcow") {
gotoAndStop ("level2");
}
if (password == "epidemic") {
gotoAndStop ("level3");
}
if (password == "cancer") {
gotoAndStop ("level4");
}
if (password == "disease") {
gotoAndStop ("level5");
}
if (password == "vaccine") {
gotoAndStop ("level6");
}
if (password == "eczema") {
gotoAndStop ("level7");
}
if (password == "redbloodcell") {
gotoAndStop ("level8");
}
if (password == "bluefinger") {
gotoAndStop ("level9");
}
if (password == "freezeburn") {
gotoAndStop ("level10");
}
if (password == "blindingpain") {
gotoAndStop ("level11");
}
if (password == "blackandblue") {
gotoAndStop ("level12");
}
}
Symbol 47 Button
on (release) {
gotoAndPlay ("level1");
}
Symbol 55 Button
on (release) {
gotoAndPlay ("pass");
}
Symbol 62 Button
on (release) {
gotoAndPlay ("level2");
}
Symbol 68 Button
on (release) {
gotoAndPlay ("level3");
}
Symbol 76 Button
on (release) {
gotoAndPlay ("level4");
}
Symbol 87 Button
on (release) {
gotoAndPlay ("level5");
}
Symbol 93 Button
on (release) {
gotoAndPlay ("level6");
}
Symbol 97 Button
on (release) {
gotoAndPlay ("level7");
}
Symbol 103 Button
on (release) {
gotoAndPlay ("level8");
}
Symbol 107 Button
on (release) {
gotoAndPlay ("level9");
}
Symbol 110 Button
on (release) {
gotoAndPlay ("level10");
}
Symbol 113 Button
on (release) {
gotoAndPlay ("level11");
}
Symbol 118 Button
on (release) {
gotoAndPlay (52);
}