Frame 3
Mouse.show();
stop();
b._y = a._height + 41;
c._y = (a._height + b._height) + 46;
d._y = ((a._height + b._height) + c._height) + 51;
e._y = (((a._height + b._height) + c._height) + d._height) + 56;
f._y = ((((a._height + b._height) + c._height) + d._height) + e._height) + 61;
Frame 4
stop();
snd = new Sound();
snd.attachSound("music");
Frame 5
function changeLet() {
box._x = (Math.random() * 470) + 35;
box._y = (Math.random() * 270) + 70;
num = Math.round(Math.random() * (chars.length - 1));
box.let = chars[num];
}
function timer() {
timecount = timecount + 0.01;
}
stop();
snd.start(0, 9999);
chars = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"];
ison = false;
caption = "";
progress = 0;
timecount = 0;
score = 0;
barfull = false;
spacedown = false;
if (ison == false) {
changeLet();
ison = true;
}
_root.onKeyDown = function () {
getLet = String.fromCharCode(Key.getAscii());
if (!barfull) {
box._visible = true;
if (box.let == getLet.toUpperCase()) {
changeLet();
score = score + 10;
progress++;
}
}
};
Key.addListener(_root);
timerint = setInterval(timer, 10);
Instance of Symbol 202 MovieClip "time" in Frame 5
onClipEvent (enterFrame) {
bar._xscale = 1.666667 * _root.timecount;
if (_root.timecount >= 60) {
_root.timecount = 60;
clearInterval(_root.timerint);
}
if (bar._xscale >= 100) {
_root.caption = "Times's Up";
_root.box.swapDepths(9999);
_root.box.removeMovieClip();
_root.nextFrame();
_root.barfull = false;
}
}
Instance of Symbol 207 MovieClip "pro" in Frame 5
onClipEvent (enterFrame) {
bar._xscale = 4 * _root.progress;
if (bar._xscale >= 100) {
_root.barfull = true;
_root.caption = "Tap Space!!";
}
if (_root.barfull == true) {
_root.progress = _root.progress - 0.25;
_root.box._visible = false;
}
if (_root.progress <= 0) {
_root.barfull = false;
_root.caption = "";
_root.box._visible = true;
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 32) {
if (_root.barfull == true) {
_root.score = _root.score + 15;
}
}
}
Frame 6
stop();
snd.stop();
score_txt = ("Your score overall was... " + score) + ". Well done";
Frame 7
stop();
Frame 8
stop();
Mouse.hide();
_root.flycount = 0;
_root.score = 0;
_root.onEnterFrame = function () {
if (_root.flycount >= 15) {
_root.flycount = _root.flycount - 2;
}
};
Instance of Symbol 244 MovieClip "fly" in Frame 8
onClipEvent (load) {
dx = (Math.random() * 15) - 5;
dy = (Math.random() * 15) - 5;
}
onClipEvent (enterFrame) {
if (this._currentframe <= 1) {
this._x = this._x + dx;
this._y = this._y + dy;
}
if (Math.random() > 0.9) {
dx = (Math.random() * 15) - 5;
dy = (Math.random() * 15) - 5;
}
}
onClipEvent (enterFrame) {
if (this._x <= 0) {
this._x = this._x + 10;
} else if (this._x >= 500) {
this._x = this._x - 10;
} else if (this._y >= 350) {
this._y = this._y - 10;
} else if (this._y <= 20) {
this._y = this._y + 10;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.swatter.hit)) {
this.play();
}
}
onClipEvent (enterFrame) {
_root.fly._x = _root.fly._x - 2000;
}
onClipEvent (enterFrame) {
if (_root.flytimer._currentframe >= 900) {
_root.createEmptyMovieClip("deleter", this.getDepth());
}
}
Instance of Symbol 248 MovieClip in Frame 8
onClipEvent (enterFrame) {
if ((Math.random() < 0.05) && (_root.flycount <= 15)) {
_root.fly.duplicateMovieClip("flyC" + k, k);
_root["flyC" + k]._y = (Math.random() * 200) + 50;
_root["flyC" + k]._x = -53.3;
_root.flycount = _root.flycount + 1;
k++;
}
}
onClipEvent (load) {
k = 100000000000000;
}
Instance of Symbol 248 MovieClip in Frame 8
onClipEvent (enterFrame) {
if ((Math.random() < 0.05) && (_root.flycount <= 15)) {
_root.fly2.duplicateMovieClip("flyD" + k, k);
_root["flyD" + k]._y = (Math.random() * 200) + 50;
_root["flyD" + k]._x = 570;
_root.flycount = _root.flycount + 1;
k++;
}
}
onClipEvent (load) {
k = 100000000000000;
}
Instance of Symbol 244 MovieClip "fly2" in Frame 8
onClipEvent (load) {
dx = (Math.random() * 15) - 5;
dy = (Math.random() * 15) - 5;
}
onClipEvent (enterFrame) {
if (this._currentframe <= 1) {
this._x = this._x + dx;
this._y = this._y + dy;
}
if (Math.random() > 0.9) {
dx = (Math.random() * 15) - 5;
dy = (Math.random() * 15) - 5;
}
}
onClipEvent (enterFrame) {
if (this._x <= 0) {
this._x = this._x + 10;
} else if (this._x >= 500) {
this._x = this._x - 10;
} else if (this._y >= 350) {
this._y = this._y - 10;
} else if (this._y <= 20) {
this._y = this._y + 10;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.swatter.hit)) {
this.play();
}
}
onClipEvent (enterFrame) {
if (_root.flytimer._currentframe >= 900) {
_root.createEmptyMovieClip("deleter", this.getDepth());
}
}
onClipEvent (enterFrame) {
_root.fly._x = _root.fly._x + 2000;
}
Instance of Symbol 259 MovieClip "swatter" in Frame 8
onClipEvent (load) {
startDrag (this, true);
Mouse.hide();
}
onClipEvent (mouseDown) {
this.play();
}
Frame 10
Mouse.show();
_root.flygameon = 0;
Frame 14
stop();
Frame 15
_root.counter = 0;
_root.bbscore = 0;
_root.lives = 3;
Mouse.hide();
_root.onEnterFrame = function () {
if (_root.lives <= 0) {
gotoAndStop ("lose__");
}
};
Instance of Symbol 308 MovieClip "paddle" in Frame 15
onClipEvent (load) {
_x = 232.3;
_y = 359.8;
speed = 3;
}
onClipEvent (enterFrame) {
endX = _root._xmouse;
_x = (_x + ((endX - _x) / speed));
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 351 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.ball.play();
}
}
Instance of Symbol 355 MovieClip "ball" in Frame 15
onClipEvent (load) {
_root.spdup = 12;
_root.spddown = 0;
_root.lspd = 0;
_root.rspd = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + _root.rspd;
this._y = this._y - _root.spdup;
this._y = this._y + _root.spddown;
this._x = this._x - _root.lspd;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.paddle.pad)) {
_root.spdup = 12;
_root.spddown = 0;
} else if (this.hittest(_root.top)) {
_root.spdup = 0;
_root.spddown = 12;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.left)) {
_root.rspd = _root.lspd;
_root.lspd = _root.lspd - _root.lspd;
} else if (this.hittest(_root.right)) {
_root.lspd = _root.rspd;
_root.rspd = _root.rspd - _root.rspd;
}
}
onClipEvent (enterFrame) {
if (_root.rspd >= 15) {
_root.rspd = 15;
} else if (_root.lspd >= 15) {
_root.lspd = 15;
}
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = _root.paddle._x;
this._y = _root.paddle._y;
}
}
onClipEvent (mouseDown) {
if (this._currentframe == 1) {
this.play();
}
}
onClipEvent (enterFrame) {
if (_root.counter > 37) {
_root.gotoAndStop("bbwin1");
}
}
Frame 16
Mouse.show();
Frame 17
_root.counter = 0;
Mouse.hide();
_root.onEnterFrame = function () {
if (_root.lives <= 0) {
gotoAndStop ("lose__");
}
};
Mouse.hide();
Instance of Symbol 308 MovieClip "paddle" in Frame 17
onClipEvent (load) {
_x = 232.3;
_y = 359.8;
speed = 3;
}
onClipEvent (enterFrame) {
endX = _root._xmouse;
_x = (_x + ((endX - _x) / speed));
}
Instance of Symbol 351 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.ball.play();
}
}
Instance of Symbol 355 MovieClip "ball" in Frame 17
onClipEvent (load) {
_root.spdup = 12;
_root.spddown = 0;
_root.lspd = 0;
_root.rspd = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + _root.rspd;
this._y = this._y - _root.spdup;
this._y = this._y + _root.spddown;
this._x = this._x - _root.lspd;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.paddle.pad)) {
_root.spdup = 12;
_root.spddown = 0;
} else if (this.hittest(_root.top)) {
_root.spdup = 0;
_root.spddown = 12;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.left)) {
_root.rspd = _root.lspd;
_root.lspd = _root.lspd - _root.lspd;
} else if (this.hittest(_root.right)) {
_root.lspd = _root.rspd;
_root.rspd = _root.rspd - _root.rspd;
}
}
onClipEvent (enterFrame) {
if (_root.rspd >= 15) {
_root.rspd = 15;
} else if (_root.lspd >= 15) {
_root.lspd = 15;
}
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = _root.paddle._x;
this._y = _root.paddle._y;
}
}
onClipEvent (mouseDown) {
if (this._currentframe == 1) {
this.play();
}
}
onClipEvent (enterFrame) {
if (_root.counter > 51) {
_root.gotoAndStop("bbwin2");
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Frame 18
Mouse.show();
Frame 19
_root.counter = 0;
Mouse.hide();
_root.onEnterFrame = function () {
if (_root.lives <= 0) {
gotoAndStop ("lose__");
}
};
Mouse.hide();
Instance of Symbol 308 MovieClip "paddle" in Frame 19
onClipEvent (load) {
_x = 232.3;
_y = 359.8;
speed = 3;
}
onClipEvent (enterFrame) {
endX = _root._xmouse;
_x = (_x + ((endX - _x) / speed));
}
Instance of Symbol 351 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.ball.play();
}
}
Instance of Symbol 355 MovieClip "ball" in Frame 19
onClipEvent (load) {
_root.spdup = 12;
_root.spddown = 0;
_root.lspd = 0;
_root.rspd = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + _root.rspd;
this._y = this._y - _root.spdup;
this._y = this._y + _root.spddown;
this._x = this._x - _root.lspd;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.paddle.pad)) {
_root.spdup = 12;
_root.spddown = 0;
} else if (this.hittest(_root.top)) {
_root.spdup = 0;
_root.spddown = 12;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.left)) {
_root.rspd = _root.lspd;
_root.lspd = _root.lspd - _root.lspd;
} else if (this.hittest(_root.right)) {
_root.lspd = _root.rspd;
_root.rspd = _root.rspd - _root.rspd;
}
}
onClipEvent (enterFrame) {
if (_root.rspd >= 15) {
_root.rspd = 15;
} else if (_root.lspd >= 15) {
_root.lspd = 15;
}
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = _root.paddle._x;
this._y = _root.paddle._y;
}
}
onClipEvent (mouseDown) {
if (this._currentframe == 1) {
this.play();
}
}
onClipEvent (enterFrame) {
if (_root.counter > 48) {
_root.gotoAndStop("win__");
}
}
Instance of Symbol 344 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 383 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 344 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 334 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 407 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Instance of Symbol 417 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
this.play();
}
}
Frame 20
Mouse.show();
Frame 21
Mouse.show();
Frame 23
stop();
_root.onLoad = function () {
_root.counter = 0;
_root.deaths = 0;
};
Frame 25
_root.counter = 0;
play();
_root.deaths = 0;
Instance of Symbol 514 MovieClip "lvl1" in Frame 25
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this._x = this._x + 10;
} else if (Key.isDown(39)) {
this._x = this._x - 10;
}
}
onClipEvent (enterFrame) {
if (_root.counter >= 3) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.deaths >= 2) {
_root.gotoAndStop(3);
}
}
Instance of Symbol 521 MovieClip in Frame 25
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
this.gotoAndStop(2);
} else if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe >= 2)) {
this.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (this._currentframe <= 1) {
_root.climb = 0;
} else if (this._currentframe <= 2) {
_root.climb = 1;
}
}
Instance of Symbol 525 MovieClip in Frame 25
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
_root.lvl1.bldr.gotoAndStop(2);
}
}
Frame 85
_root.onLoad = function () {
var _local1 = _root;
_local1.counter = 0;
_local1.blocksleft = 30;
_local1.deaths = 0;
};
stop();
Instance of Symbol 514 MovieClip "lvl1" in Frame 85
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this._x = this._x + 10;
} else if (Key.isDown(39)) {
this._x = this._x - 10;
}
}
onClipEvent (enterFrame) {
if (_root.counter >= 3) {
_root.gotoAndStop("lemwin");
}
}
onClipEvent (enterFrame) {
if (_root.deaths >= 2) {
_root.gotoAndStop("lemlose");
}
}
Instance of Symbol 521 MovieClip in Frame 85
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
this.gotoAndStop(2);
} else if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe >= 2)) {
this.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (this._currentframe <= 1) {
_root.climb = 0;
} else if (this._currentframe <= 2) {
_root.climb = 1;
}
}
Instance of Symbol 525 MovieClip in Frame 85
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
_root.lvl1.bldr.gotoAndStop(2);
}
}
Frame 86
_root.counter = 0;
_root.blocksleft = 15;
_root.deaths = 0;
Frame 87
_root.counter = 0;
_root.blocksleft = 15;
_root.deaths = 0;
Instance of Symbol 577 MovieClip "lvl1" in Frame 87
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this._x = this._x + 10;
} else if (Key.isDown(39)) {
this._x = this._x - 10;
}
}
onClipEvent (enterFrame) {
if (_root.counter >= 3) {
_root.gotoAndStop("lemwin2");
}
}
onClipEvent (enterFrame) {
if (_root.deaths >= 1) {
_root.gotoAndStop("lemlose2");
}
}
onClipEvent (enterFrame) {
if (_root.player.hittest(this) && (Key.isDown(38))) {
}
}
Instance of Symbol 525 MovieClip in Frame 87
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
_root.lvl1.bldr.gotoAndStop(2);
}
}
Instance of Symbol 521 MovieClip in Frame 87
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
this.gotoAndStop(2);
} else if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe >= 2)) {
this.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (this._currentframe <= 1) {
_root.climb = 0;
} else if (this._currentframe <= 2) {
_root.climb = 1;
}
}
Instance of Symbol 587 MovieClip in Frame 87
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
this.gotoAndStop(2);
} else if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe >= 2)) {
this.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
_root.dig = 0;
} else if (this._currentframe == 2) {
_root.dig = 1;
}
}
Frame 128
_root.counter = 0;
_root.blocksleft = 15;
_root.deaths = 0;
stop();
Instance of Symbol 525 MovieClip in Frame 128
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
_root.lvl1.bldr.gotoAndStop(2);
}
}
Instance of Symbol 521 MovieClip in Frame 128
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
this.gotoAndStop(2);
} else if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe >= 2)) {
this.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (this._currentframe <= 1) {
_root.climb = 0;
} else if (this._currentframe <= 2) {
_root.climb = 1;
}
}
Instance of Symbol 587 MovieClip in Frame 128
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe <= 1)) {
this.gotoAndStop(2);
} else if (this.hitTest(_root._xmouse, _root._ymouse, true) && (this._currentframe >= 2)) {
this.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
_root.dig = 0;
} else if (this._currentframe == 2) {
_root.dig = 1;
}
}
Frame 132
stop();
Stage.showMenu = false;
fscommand ("showmenu", "false");
fscommand ("allowscale", "false");
fscommand ("trapallkeys", "true");
Frame 133
stop();
Frame 134
stop();
Instance of Symbol 638 MovieClip in Frame 134
onClipEvent (load) {
_root.score = 0;
_root.health = 1;
this.gotoAndStop(_root.health);
}
onClipEvent (enterFrame) {
this.gotoAndStop(_root.health);
if (_root.health >= 6) {
_root.gotoAndStop("ago");
}
}
Instance of Symbol 647 MovieClip in Frame 134
onClipEvent (load) {
i = 1;
_root.level = 1;
speed = 6;
yes = new Sound();
yes.attachSound("yes");
no = new Sound();
no.attachSound("no");
reset = function () {
var _local1 = this;
rspeed = (random(20) + 1) - 10;
_local1._y = (random(10) + 1) - 10;
_local1._x = random(550) + 1;
while ((_local1._x < 77.5) or (_local1._x > 457.6)) {
_local1._x = random(550) + 1;
}
connum = random(90) + 1;
while (connum < 65) {
connum = random(90) + 1;
}
_local1.display = chr(connum);
};
reset();
ok = false;
}
onClipEvent (keyDown) {
checker = chr(Key.getCode());
if ((this.display == checker) && (ok == true)) {
_root.score = _root.score + 15;
yes.start();
ok = false;
reset();
}
}
onClipEvent (enterFrame) {
this._rotation = this._rotation + rspeed;
this._y = this._y + speed;
if (_root.x.hitTest(_x, _y, true)) {
ok = true;
} else {
ok = false;
}
if (_root.lava.hitTest(_x, _y, true)) {
_root.health++;
reset();
no.start();
}
levellim = 200 * i;
if (_root.score > levellim) {
_root.level++;
i = i + 2;
}
}
Instance of Symbol 647 MovieClip in Frame 134
onClipEvent (load) {
speed = 5;
yes = new Sound();
yes.attachSound("yes");
no = new Sound();
no.attachSound("no");
reset = function () {
var _local1 = this;
rspeed = (random(20) + 1) - 10;
_local1._y = (random(10) + 1) - 10;
_local1._x = random(550) + 1;
while ((_local1._x < 77.5) or (_local1._x > 457.6)) {
_local1._x = random(550) + 1;
}
connum = random(90) + 1;
while (connum < 65) {
connum = random(90) + 1;
}
_local1.display = chr(connum);
};
reset();
ok = false;
}
onClipEvent (keyDown) {
if (_root.level > 1) {
checker = chr(Key.getCode());
if ((this.display == checker) && (ok == true)) {
_root.score = _root.score + 15;
yes.start();
ok = false;
reset();
}
}
}
onClipEvent (enterFrame) {
if (_root.level > 1) {
this._rotation = this._rotation + rspeed;
this._y = this._y + speed;
if (_root.x.hitTest(_x, _y, true)) {
ok = true;
} else {
ok = false;
}
if (_root.lava.hitTest(_x, _y, true)) {
_root.health++;
reset();
no.start();
}
} else {
this._y = -80;
}
}
Instance of Symbol 647 MovieClip in Frame 134
onClipEvent (load) {
speed = 6;
yes = new Sound();
yes.attachSound("yes");
no = new Sound();
no.attachSound("no");
reset = function () {
var _local1 = this;
rspeed = (random(20) + 1) - 10;
_local1._y = (random(10) + 1) - 10;
_local1._x = random(550) + 1;
while ((_local1._x < 77.5) or (_local1._x > 457.6)) {
_local1._x = random(550) + 1;
}
connum = random(90) + 1;
while (connum < 65) {
connum = random(90) + 1;
}
_local1.display = chr(connum);
};
reset();
ok = false;
}
onClipEvent (keyDown) {
if (_root.level > 2) {
checker = chr(Key.getCode());
if ((this.display == checker) && (ok == true)) {
_root.score = _root.score + 15;
yes.start();
ok = false;
reset();
}
}
}
onClipEvent (enterFrame) {
if (_root.level > 2) {
this._rotation = this._rotation + rspeed;
this._y = this._y + speed;
if (_root.x.hitTest(_x, _y, true)) {
ok = true;
} else {
ok = false;
}
if (_root.lava.hitTest(_x, _y, true)) {
_root.health++;
reset();
no.start();
}
} else {
this._y = -80;
}
}
Instance of Symbol 647 MovieClip in Frame 134
onClipEvent (load) {
speed = 7;
yes = new Sound();
yes.attachSound("yes");
no = new Sound();
no.attachSound("no");
reset = function () {
var _local1 = this;
rspeed = (random(20) + 1) - 10;
_local1._y = (random(10) + 1) - 10;
_local1._x = random(550) + 1;
while ((_local1._x < 77.5) or (_local1._x > 457.6)) {
_local1._x = random(550) + 1;
}
connum = random(90) + 1;
while (connum < 65) {
connum = random(90) + 1;
}
_local1.display = chr(connum);
};
reset();
ok = false;
}
onClipEvent (keyDown) {
if (_root.level > 3) {
checker = chr(Key.getCode());
if ((this.display == checker) && (ok == true)) {
_root.score = _root.score + 15;
yes.start();
ok = false;
reset();
}
}
}
onClipEvent (enterFrame) {
if (_root.level > 3) {
this._rotation = this._rotation + rspeed;
this._y = this._y + speed;
if (_root.x.hitTest(_x, _y, true)) {
ok = true;
} else {
ok = false;
}
if (_root.lava.hitTest(_x, _y, true)) {
_root.health++;
reset();
no.start();
}
} else {
this._y = -80;
}
}
Instance of Symbol 647 MovieClip in Frame 134
onClipEvent (load) {
speed = 8;
yes = new Sound();
yes.attachSound("yes");
no = new Sound();
no.attachSound("no");
reset = function () {
var _local1 = this;
rspeed = (random(20) + 1) - 10;
_local1._y = (random(10) + 1) - 10;
_local1._x = random(550) + 1;
while ((_local1._x < 77.5) or (_local1._x > 457.6)) {
_local1._x = random(550) + 1;
}
connum = random(90) + 1;
while (connum < 65) {
connum = random(90) + 1;
}
_local1.display = chr(connum);
};
reset();
ok = false;
}
onClipEvent (keyDown) {
if (_root.level > 4) {
checker = chr(Key.getCode());
if ((this.display == checker) && (ok == true)) {
_root.score = _root.score + 15;
yes.start();
ok = false;
reset();
}
}
}
onClipEvent (enterFrame) {
if (_root.level > 4) {
this._rotation = this._rotation + rspeed;
this._y = this._y + speed;
if (_root.x.hitTest(_x, _y, true)) {
ok = true;
} else {
ok = false;
}
if (_root.lava.hitTest(_x, _y, true)) {
_root.health++;
reset();
no.start();
}
} else {
this._y = -80;
}
}
Instance of Symbol 647 MovieClip in Frame 134
onClipEvent (load) {
speed = 9;
yes = new Sound();
yes.attachSound("yes");
no = new Sound();
no.attachSound("no");
reset = function () {
var _local1 = this;
rspeed = (random(20) + 1) - 10;
_local1._y = (random(10) + 1) - 10;
_local1._x = random(550) + 1;
while ((_local1._x < 77.5) or (_local1._x > 457.6)) {
_local1._x = random(550) + 1;
}
connum = random(90) + 1;
while (connum < 65) {
connum = random(90) + 1;
}
_local1.display = chr(connum);
};
reset();
ok = false;
}
onClipEvent (keyDown) {
if (_root.level > 5) {
checker = chr(Key.getCode());
if ((this.display == checker) && (ok == true)) {
_root.score = _root.score + 15;
yes.start();
ok = false;
reset();
}
}
}
onClipEvent (enterFrame) {
if (_root.level > 5) {
this._rotation = this._rotation + rspeed;
this._y = this._y + speed;
if (_root.x.hitTest(_x, _y, true)) {
ok = true;
} else {
ok = false;
}
if (_root.lava.hitTest(_x, _y, true)) {
_root.health++;
reset();
no.start();
}
} else {
this._y = -80;
}
}
Instance of Symbol 647 MovieClip in Frame 134
onClipEvent (load) {
speed = 10;
yes = new Sound();
yes.attachSound("yes");
no = new Sound();
no.attachSound("no");
reset = function () {
var _local1 = this;
rspeed = (random(20) + 1) - 10;
_local1._y = (random(10) + 1) - 10;
_local1._x = random(550) + 1;
while ((_local1._x < 77.5) or (_local1._x > 457.6)) {
_local1._x = random(550) + 1;
}
connum = random(90) + 1;
while (connum < 65) {
connum = random(90) + 1;
}
_local1.display = chr(connum);
};
reset();
ok = false;
}
onClipEvent (keyDown) {
if (_root.level > 6) {
checker = chr(Key.getCode());
if ((this.display == checker) && (ok == true)) {
_root.score = _root.score + 15;
yes.start();
ok = false;
reset();
}
}
}
onClipEvent (enterFrame) {
if (_root.level > 6) {
this._rotation = this._rotation + rspeed;
this._y = this._y + speed;
if (_root.x.hitTest(_x, _y, true)) {
ok = true;
} else {
ok = false;
}
if (_root.lava.hitTest(_x, _y, true)) {
_root.health++;
reset();
no.start();
}
} else {
this._y = -80;
}
}
Frame 135
stop();
Frame 137
stop();
Stage.showMenu = false;
fscommand ("showmenu", "false");
fscommand ("allowscale", "false");
fscommand ("trapallkeys", "true");
Frame 138
stop();
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 711 MovieClip in Frame 138
onClipEvent (load) {
death = false;
getx = this._x - _root.bg._x;
gety = this._y - _root.bg._y;
}
onClipEvent (enterFrame) {
if (this._visible == 1) {
if ((((_root.player.ins.b.hitTest(_x, _y, true) or _root.player.ins.b.hitTest(_x + (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x - (_width / 2), _y, true)) or _root.player.ins.b.hitTest(_x, _y + (_height / 2), true)) or _root.player.ins.b.hitTest(_x, _y - (_height / 2), true)) {
death = true;
}
}
if (_root.emove == true) {
this._x = this._x - _root.xvel;
}
if (_root.ed == true) {
this._y = this._y + 8;
}
if (_root.eu == true) {
this._y = this._y - 8;
}
}
Instance of Symbol 735 MovieClip "player" in Frame 138
onClipEvent (load) {
_root.bp = 0;
friction = 4;
airresist = 1;
gravity = 2;
jumpamount = 18;
speed = 20;
_root.onfloor = true;
_root.walk = false;
_root.jumpd = true;
_root.shoot = false;
gook = true;
_root.emove = false;
}
onClipEvent (keyUp) {
if (!Key.isDown(32)) {
gook = true;
}
}
onClipEvent (enterFrame) {
if (_root.bp == 21) {
_root.gotoAndStop("bwin");
}
if (((Key.isDown(32) and _root.onfloor) and (_root.shoot == false)) && (gook == true)) {
gook = false;
this.gotoAndStop("jump");
_root.jump = true;
_root.onfloor = false;
yvel = -jumpamount;
}
if (Key.isDown(37)) {
_root.xvel = -speed;
facing = "left";
this._xscale = -76.21;
} else if (Key.isDown(39)) {
_root.xvel = speed;
facing = "right";
this._xscale = 76.21;
} else {
_root.xvel = 0;
}
if (_root.shoot == false) {
if (Key.isDown(37) or Key.isDown(39)) {
_root.walk = true;
} else {
_root.walk = false;
}
} else {
_root.walk = false;
}
_root.player._y = _root.player._y + yvel;
_root.emove = false;
if (_root.shoot == false) {
if (facing == "right") {
if (!_root.bg.hitTest(_x + 20, _y - 40, true)) {
_root.emove = true;
_root.bg._x = _root.bg._x - _root.xvel;
}
} else if (!_root.bg.hitTest(_x - 20, _y - 40, true)) {
_root.emove = true;
_root.bg._x = _root.bg._x - _root.xvel;
}
}
if (!_root.bg.hitTest(_x, _y + 1, true)) {
yvel = yvel + gravity;
} else {
while (_root.bg.hitTest(_x, _y + 1, true)) {
_root.player._y = _root.player._y - 1;
}
yvel = 0;
}
if (_root.jump and (yvel > -1)) {
this.gotoAndPlay("jumpd");
}
if (_root.bg.hitTest(_x, _y + 2, true)) {
_root.onfloor = true;
_root.jump = false;
} else {
_root.onfloor = false;
}
if (this._y < 100) {
this._y = this._y + 8;
_root.ed = true;
_root.bg._y = _root.bg._y + 8;
} else {
_root.ed = false;
}
if (this._y > 200) {
this._y = this._y - 8;
_root.bg._y = _root.bg._y - 8;
_root.eu = true;
} else {
_root.eu = false;
}
if (_root.onfloor) {
if (this.ins._currentframe > 1) {
_root.shoot = true;
} else {
_root.shoot = false;
}
}
while (_root.bg.hitTest(_x, _y - 60, true)) {
this._y = this._y + 1;
}
}
Instance of Symbol 739 MovieClip in Frame 138
onClipEvent (load) {
_root.min = 1;
_root.s = 1;
_root.timeup = false;
this._visible = 0;
}
onClipEvent (enterFrame) {
_root.min = int((s++) / 10);
_root.timeleft = 100 - _root.min;
if (_root.timeleft == 0) {
_root.timeup = true;
_root.gotoAndPlay("bloose");
}
}
Frame 139
stop();
Frame 140
stop();
Frame 141
stop();
Stage.showMenu = false;
fscommand ("showmenu", "false");
fscommand ("allowscale", "false");
fscommand ("trapallkeys", "true");
Frame 142
stop();
Frame 143
stop();
Instance of Symbol 772 MovieClip "hero" in Frame 143
onClipEvent (load) {
speed = 10;
_root.death = false;
_root.win = false;
}
onClipEvent (enterFrame) {
if ((_root.death == false) && (_root.win == false)) {
if (Key.isDown(37)) {
this._x = this._x - speed;
}
if (Key.isDown(39)) {
this._x = this._x + speed;
}
if (Key.isDown(38)) {
this._y = this._y - speed;
}
if (Key.isDown(40)) {
this._y = this._y + speed;
}
while (_root.bg.h.hitTest(_x, _y - (_height / 2), true)) {
this._y = this._y + 1;
}
while (_root.bg.h.hitTest(_x, _y + (_height / 2), true)) {
this._y = this._y - 1;
}
while (_root.bg.h.hitTest(_x - (_width / 2), _y, true)) {
this._x = this._x + 1;
}
while (_root.bg.h.hitTest(_x + (_width / 2), _y, true)) {
this._x = this._x - 1;
}
}
if (_root.win == true) {
this._x = -50;
this._visible = 0;
}
}
Instance of Symbol 805 MovieClip in Frame 143
onClipEvent (load) {
this._visible = 0;
this._alpha = 0;
caught = false;
c = new Sound();
c.attachSound("caught");
}
onClipEvent (enterFrame) {
if (_root.death == true) {
this._visible = 1;
if (this._alpha < 100) {
this._alpha = this._alpha + 5;
}
}
if ((_root.death == true) && (caught == false)) {
caught = true;
c.start();
}
}
Instance of Symbol 807 MovieClip in Frame 143
onClipEvent (load) {
this._visible = 0;
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (_root.win == true) {
this._visible = 1;
if (this._alpha < 100) {
this._alpha = this._alpha + 5;
}
}
}
Frame 145
stop();
Stage.showMenu = false;
fscommand ("showmenu", "false");
fscommand ("allowscale", "false");
fscommand ("trapallkeys", "true");
Frame 146
stop();
_root.score = 0;
_root.taxi = "";
Instance of Symbol 822 MovieClip "ba" in Frame 146
onClipEvent (load) {
ta = new Sound();
ta.attachSound("targethit");
}
onClipEvent (enterFrame) {
if ((_root.bna._currentframe == 19) && (_root.hit == true)) {
if (_root.ba.hitTest(_root.bna._x, _root.bna._y, true)) {
_root.taxi = "Blue +5";
_root.score = _root.score + 5;
ta.start();
} else if (_root.ya.hitTest(_root.bna._x, _root.bna._y, true)) {
_root.taxi = "Yellow +20";
_root.score = _root.score + 20;
ta.start();
} else if (_root.ra.hitTest(_root.bna._x, _root.bna._y, true)) {
_root.taxi = "Bull's Eye!!! +50";
_root.score = _root.score + 50;
ta.start();
} else {
_root.taxi = "Miss";
_root.bna._y = 500;
}
_root.hit = false;
}
}
Instance of Symbol 849 MovieClip "bna" in Frame 146
onClipEvent (load) {
_root.hit = false;
this._visible = 0;
}
onClipEvent (enterFrame) {
if ((this._currentframe > 5) && (this._currentframe < 8)) {
this._y = this._y + _root.v;
this._x = this._x + _root.h;
}
}
Instance of Symbol 853 MovieClip "vbar" in Frame 146
onClipEvent (load) {
this._visible = 0;
speed = 25;
_root.vertical = false;
}
onClipEvent (enterFrame) {
if ((_root.vertical == true) && (this._visible == 1)) {
if (this.pointer._y > 111.9) {
down = false;
}
if (this.pointer._y < -111.9) {
down = true;
}
if (down == true) {
this.pointer._y = this.pointer._y + speed;
}
if (down == false) {
this.pointer._y = this.pointer._y - speed;
}
}
if (_root.vertical == false) {
_root.v = this.pointer._y;
}
}
onClipEvent (keyDown) {
if ((Key.isDown(32) && (_root.vertical == true)) && (this._visible == 1)) {
this._visible = 0;
_root.vertical = false;
_root.hbar.pointer._y = (random(222) + 1) - 111;
if (i == 1) {
_root.hbar.down = true;
} else {
_root.hbar.down = false;
}
_root.hbar._visible = 1;
_root.horizontal = true;
}
}
Instance of Symbol 853 MovieClip "hbar" in Frame 146
onClipEvent (load) {
this._visible = 0;
speed = 25;
_root.horizontal = false;
}
onClipEvent (enterFrame) {
if ((_root.horizontal == true) && (this._visible == 1)) {
if (this.pointer._y > 111.9) {
down = false;
}
if (this.pointer._y < -111.9) {
down = true;
}
if (down == true) {
this.pointer._y = this.pointer._y + speed;
}
if (down == false) {
this.pointer._y = this.pointer._y - speed;
}
}
if (_root.horizontal == false) {
_root.h = this.pointer._y;
}
}
onClipEvent (keyDown) {
if ((Key.isDown(32) && (_root.horizontal == true)) && (this._visible == 1)) {
this._visible = 0;
_root.horizontal = false;
if (_root.bna._currentframe == 1) {
_root.bna.play();
}
}
}
Instance of Symbol 856 MovieClip "con" in Frame 146
onClipEvent (enterFrame) {
if (_root.bna._currentframe == 19) {
this._x = 298.1;
this._visible = 1;
}
}
Instance of Symbol 866 MovieClip "left" in Frame 146
onClipEvent (load) {
this.gotoAndStop(1);
}
Frame 147
stop();
Frame 148
stop();
Frame 149
stop();
Instance of Symbol 955 MovieClip "circle" in Frame 149
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if (_root.bkg.Walls.hitTest(getBounds(_root).xMax, _y, true)) {
} else {
_root.bkg._x = _root.bkg._x - moveSpeed;
_root.circle.gotoAndStop(1);
}
}
if (Key.isDown(38)) {
if (_root.bkg.Walls.hitTest(_x, getBounds(_root).yMin, true)) {
} else {
_root.bkg._y = _root.bkg._y + moveSpeed;
}
}
if (Key.isDown(40)) {
if (_root.bkg.Walls.hitTest(_x, getBounds(_root).yMax, true)) {
} else {
_root.bkg._y = _root.bkg._y - moveSpeed;
}
}
if (Key.isDown(37)) {
if (_root.bkg.Walls.hitTest(getBounds(_root).xMin, _y, true)) {
} else {
_root.bkg._x = _root.bkg._x + moveSpeed;
_root.circle.gotoAndStop(2);
}
}
}
Frame 150
stop();
Frame 172
stop();
Frame 173
stop();
Frame 176
stop();
Frame 177
stop();
Frame 178
marque = 0;
temps = 0;
function noRepeatRandom(myBegin, myEnd) {
var _local1 = myBegin;
myNumber = random((myEnd - _local1) + 1) + _local1;
if (!this) {
return(myNumber);
}
if (this != myNumber) {
return(myNumber);
}
return(noRepeatRandom(_local1, myEnd));
}
stop();
time = 0;
maxTime = 17;
hammer.startDrag(true);
onEnterFrame = function () {
Mouse.hide();
};
onEnterFrame = function () {
if (time == maxTime) {
rand = noRepeatRandom(1, 9);
_root["p" + rand].play();
time = 0;
} else {
time++;
}
};
Instance of Symbol 1029 MovieClip "hammer" in Frame 178
onClipEvent (mouseDown) {
this.gotoAndPlay("hit");
}
Instance of Symbol 1042 MovieClip in Frame 178
onClipEvent (enterFrame) {
if (_root.marque == 500) {
_root.gotoAndStop("perdu");
}
}
Frame 183
stop();
Instance of Symbol 1049 MovieClip "biensur" in Frame 183
onClipEvent (enterFrame) {
if (_root.temps >= 40) {
this.gotoAndStop("1");
} else if (_root.temps == 40) {
this.gotoAndStop("2");
} else if (_root.temps <= 40) {
this.gotoAndStop("3");
}
}
Frame 184
var score = 0;
var rounds = 0;
Instance of Symbol 1084 MovieClip in Frame 184
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 185
stop();
Frame 186
stop();
Frame 187
stop();
Frame 188
stopAllSounds();
_root.duckcounter.gotoAndStop(1);
var rounds = 0;
Instance of Symbol 1151 MovieClip in Frame 188
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseDown) {
_root.shot.start();
}
Frame 189
_root.rounds = _root.rounds + 1;
Frame 295
stop();
Instance of Symbol 1145 MovieClip in Frame 295
onClipEvent (mouseDown) {
_root.ammo.nextFrame();
}
Instance of Symbol 1151 MovieClip in Frame 295
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Instance of Symbol 1151 MovieClip in Frame 296
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 300
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(2);
Frame 319
stop();
Instance of Symbol 1151 MovieClip in Frame 320
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 324
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(3);
Frame 337
_root.duckcounter.gotoAndStop(3);
Frame 338
_root.duckcounter.gotoAndStop(3);
Frame 339
_root.duckcounter.gotoAndStop(3);
Frame 340
_root.duckcounter.gotoAndStop(3);
Frame 341
_root.duckcounter.gotoAndStop(3);
Frame 342
_root.duckcounter.gotoAndStop(3);
Frame 343
_root.duckcounter.gotoAndStop(3);
Frame 344
stop();
_root.duckcounter.gotoAndStop(3);
Instance of Symbol 1151 MovieClip in Frame 344
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 345
_root.duckcounter.gotoAndStop(3);
Frame 346
_root.duckcounter.gotoAndStop(3);
Frame 347
_root.duckcounter.gotoAndStop(3);
Frame 348
_root.duckcounter.gotoAndStop(3);
Frame 349
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(4);
Frame 362
_root.duckcounter.gotoAndStop(4);
Frame 363
_root.duckcounter.gotoAndStop(4);
Frame 364
_root.duckcounter.gotoAndStop(4);
Frame 365
_root.duckcounter.gotoAndStop(4);
Frame 366
_root.duckcounter.gotoAndStop(4);
Frame 367
_root.duckcounter.gotoAndStop(4);
Frame 368
stop();
_root.duckcounter.gotoAndStop(4);
Instance of Symbol 1151 MovieClip in Frame 368
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 369
_root.duckcounter.gotoAndStop(4);
Frame 370
_root.duckcounter.gotoAndStop(4);
Frame 371
_root.duckcounter.gotoAndStop(4);
Frame 372
_root.duckcounter.gotoAndStop(4);
Frame 373
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(5);
Frame 386
_root.duckcounter.gotoAndStop(5);
Frame 387
_root.duckcounter.gotoAndStop(5);
Frame 388
_root.duckcounter.gotoAndStop(5);
Frame 389
_root.duckcounter.gotoAndStop(5);
Frame 390
_root.duckcounter.gotoAndStop(5);
Frame 391
_root.duckcounter.gotoAndStop(5);
Frame 392
stop();
_root.duckcounter.gotoAndStop(5);
Instance of Symbol 1151 MovieClip in Frame 392
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 393
_root.duckcounter.gotoAndStop(5);
Frame 394
_root.duckcounter.gotoAndStop(5);
Frame 395
_root.duckcounter.gotoAndStop(5);
Frame 396
_root.duckcounter.gotoAndStop(5);
Frame 397
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(6);
Frame 410
_root.duckcounter.gotoAndStop(6);
Frame 411
_root.duckcounter.gotoAndStop(6);
Frame 412
_root.duckcounter.gotoAndStop(6);
Frame 413
_root.duckcounter.gotoAndStop(6);
Frame 414
_root.duckcounter.gotoAndStop(6);
Frame 415
_root.duckcounter.gotoAndStop(6);
Frame 416
_root.duckcounter.gotoAndStop(6);
stop();
Frame 417
_root.duckcounter.gotoAndStop(6);
Instance of Symbol 1151 MovieClip in Frame 417
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 418
_root.duckcounter.gotoAndStop(6);
Frame 419
_root.duckcounter.gotoAndStop(6);
Frame 420
_root.duckcounter.gotoAndStop(6);
Frame 421
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(7);
Frame 434
_root.duckcounter.gotoAndStop(7);
Frame 435
_root.duckcounter.gotoAndStop(7);
Frame 436
_root.duckcounter.gotoAndStop(7);
Frame 437
_root.duckcounter.gotoAndStop(7);
Frame 438
_root.duckcounter.gotoAndStop(7);
Frame 439
_root.duckcounter.gotoAndStop(7);
Frame 440
stop();
_root.duckcounter.gotoAndStop(7);
Frame 441
_root.duckcounter.gotoAndStop(7);
Instance of Symbol 1151 MovieClip in Frame 441
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 442
_root.duckcounter.gotoAndStop(7);
Frame 443
_root.duckcounter.gotoAndStop(7);
Frame 444
_root.duckcounter.gotoAndStop(7);
Frame 445
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(8);
Frame 458
_root.duckcounter.gotoAndStop(8);
Frame 459
_root.duckcounter.gotoAndStop(8);
Frame 460
_root.duckcounter.gotoAndStop(8);
Frame 461
_root.duckcounter.gotoAndStop(8);
Frame 462
_root.duckcounter.gotoAndStop(8);
Frame 463
_root.duckcounter.gotoAndStop(8);
Frame 464
stop();
_root.duckcounter.gotoAndStop(8);
Frame 465
_root.duckcounter.gotoAndStop(8);
Instance of Symbol 1151 MovieClip in Frame 465
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 466
_root.duckcounter.gotoAndStop(8);
Frame 467
_root.duckcounter.gotoAndStop(8);
Frame 468
_root.duckcounter.gotoAndStop(8);
Frame 469
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(9);
Frame 482
_root.duckcounter.gotoAndStop(9);
Frame 483
_root.duckcounter.gotoAndStop(9);
Frame 484
_root.duckcounter.gotoAndStop(9);
Frame 485
_root.duckcounter.gotoAndStop(9);
Frame 486
_root.duckcounter.gotoAndStop(9);
Frame 487
stop();
_root.duckcounter.gotoAndStop(9);
Frame 488
_root.duckcounter.gotoAndStop(9);
Instance of Symbol 1151 MovieClip in Frame 488
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 489
_root.duckcounter.gotoAndStop(9);
Frame 490
_root.duckcounter.gotoAndStop(9);
Frame 491
_root.duckcounter.gotoAndStop(9);
Frame 492
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(10);
Frame 505
_root.duckcounter.gotoAndStop(10);
Frame 506
_root.duckcounter.gotoAndStop(10);
Frame 507
_root.duckcounter.gotoAndStop(10);
Frame 508
_root.duckcounter.gotoAndStop(10);
Frame 509
_root.duckcounter.gotoAndStop(10);
Frame 510
_root.duckcounter.gotoAndStop(10);
Frame 511
stop();
_root.duckcounter.gotoAndStop(10);
Frame 512
_root.duckcounter.gotoAndStop(10);
Instance of Symbol 1151 MovieClip in Frame 512
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
Frame 513
_root.duckcounter.gotoAndStop(10);
Frame 514
_root.duckcounter.gotoAndStop(10);
Frame 515
_root.duckcounter.gotoAndStop(10);
Frame 516
_root.score = _root.score + 150;
_root.duckcounter.gotoAndStop(11);
Frame 529
_root.duckcounter.gotoAndStop(11);
Frame 530
_root.duckcounter.gotoAndStop(11);
Frame 531
_root.duckcounter.gotoAndStop(11);
Frame 532
_root.duckcounter.gotoAndStop(11);
Frame 533
_root.duckcounter.gotoAndStop(11);
Frame 534
_root.duckcounter.gotoAndStop(11);
gotoAndPlay ("roundstart");
Frame 535
stopAllSounds();
_root.claycounter.gotoAndStop(1);
var rounds = 0;
Instance of Symbol 1151 MovieClip in Frame 535
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseDown) {
_root.shot.start();
}
Instance of Symbol 1151 MovieClip in Frame 535
onClipEvent (load) {
startDrag ("", true);
}
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseDown) {
_root.shot.start();
}
Frame 536
_root.rounds = _root.rounds + 1;
Frame 642
stop();
_root.claycounter.gotoAndStop(1);
_root.ammo.gotoAndStop(1);
Instance of Symbol 1405 MovieClip in Frame 642
onClipEvent (mouseDown) {
_root.ammo.nextFrame();
}
Frame 643
stop();
_root.claycounter.gotoAndStop(2);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 644
stop();
_root.claycounter.gotoAndStop(3);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 645
stop();
_root.claycounter.gotoAndStop(4);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 646
stop();
_root.claycounter.gotoAndStop(5);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 647
stop();
_root.claycounter.gotoAndStop(6);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 648
stop();
_root.claycounter.gotoAndStop(7);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 649
stop();
_root.claycounter.gotoAndStop(8);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 650
stop();
_root.claycounter.gotoAndStop(9);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 651
stop();
_root.claycounter.gotoAndStop(10);
_root.score = _root.score + 100;
_root.ammo.gotoAndStop(1);
Frame 652
_root.claycounter.gotoAndStop(11);
gotoAndPlay ("game2roundstart");
Frame 654
stop();
time = 15;
Frame 674
var points = 0;
Frame 679
Frame 680
stop();
Instance of Symbol 1598 MovieClip in Frame 680
onClipEvent (enterFrame) {
if (_root.points >= 10) {
_root.gotoAndPlay("level2_");
}
}
onClipEvent (enterFrame) {
if (_root.time <= 0) {
_root.gotoAndPlay("level1gameover");
}
}
Frame 681
stop();
Frame 682
stop();
_root.time = _root.time + 10;
Frame 683
stop();
Instance of Symbol 1697 MovieClip in Frame 683
onClipEvent (enterFrame) {
if (_root.time <= 0) {
_root.gotoAndPlay("level2gameover");
}
}
onClipEvent (enterFrame) {
if (_root.points >= 20) {
_root.gotoAndPlay("level3");
}
}
Frame 684
stop();
Frame 685
stop();
_root.time = _root.time + 10;
Frame 686
nextFrame();
Frame 687
stop();
Instance of Symbol 1717 MovieClip in Frame 687
onClipEvent (enterFrame) {
if (_root.time <= 0) {
_root.gotoAndPlay("level3gameover");
}
}
onClipEvent (enterFrame) {
if (_root.points >= 35) {
_root.gotoAndPlay("level4");
}
}
Frame 688
stop();
Frame 689
stop();
_root.time = _root.time + 20;
Frame 690
nextFrame();
Frame 691
stop();
Instance of Symbol 1740 MovieClip in Frame 691
onClipEvent (enterFrame) {
if (_root.time <= 0) {
_root.gotoAndPlay("level4gameover");
}
}
onClipEvent (enterFrame) {
if (_root.points >= 57) {
_root.gotoAndPlay("level5");
}
}
Frame 692
stop();
Frame 693
stop();
_root.time = _root.time + 5;
Frame 694
nextFrame();
Frame 695
stop();
Instance of Symbol 1764 MovieClip in Frame 695
onClipEvent (enterFrame) {
if (_root.time <= 0) {
_root.gotoAndPlay("level5gameover");
}
}
onClipEvent (enterFrame) {
if (_root.points >= 69) {
_root.gotoAndPlay("level6");
}
}
Frame 696
stop();
Frame 697
stop();
_root.time = _root.time + 5;
Frame 698
nextFrame();
Frame 699
stop();
Instance of Symbol 1785 MovieClip in Frame 699
onClipEvent (enterFrame) {
if (_root.time <= 0) {
_root.gotoAndPlay("ratings");
}
}
Frame 700
stop();
Frame 701
stop();
Instance of Symbol 1811 MovieClip "circle" in Frame 701
onClipEvent (load) {
if (this._name != "circle") {
this._x = random(400);
this._y = random(300);
deedee = random(100);
this._xscale = deedee;
this._yscale = deedee;
}
}
Instance of Symbol 1815 MovieClip "actions" in Frame 701
onClipEvent (enterFrame) {
_root.line._x = random(400);
i = 0;
while (i <= 2) {
_root.circle.duplicateMovieClip("circle" + i, i + 1);
i++;
}
if ((i = 2)) {
i = 0;
}
}
Frame 725
stop();
Frame 726
stop();
Frame 728
stop();
Instance of Symbol 1870 MovieClip in Frame 729
onClipEvent (load) {
_root.score1 = 0;
_root.score2 = 0;
_root.wurdescore1 = false;
_root.wurdescore2 = false;
_root.ballraus = false;
}
onClipEvent (enterFrame) {
if (Key.isDown(38) and (_root.balken2._y > 0)) {
_root.balken2._y = _root.balken2._y - 10;
}
if (Key.isDown(40) and (_root.balken2._y < 380)) {
_root.balken2._y = _root.balken2._y + 10;
}
if (Key.isDown(81) and (_root.balken1._y > 0)) {
_root.balken1._y = _root.balken1._y - 10;
}
if (Key.isDown(65) and (_root.balken1._y < 380)) {
_root.balken1._y = _root.balken1._y + 10;
}
if (_root.ballraus == true) {
_root.ball._x = 310;
_root.ball._y = 10;
_root.ballraus = false;
_root.wurdescore1 = false;
_root.wurdescore2 = false;
}
if (_root.ball.hitTest(_root.randoben) or _root.ball.hitTest(_root.randunten)) {
_root.yspeed = -_root.yspeed;
_root.sou.gotoAndPlay("throw");
}
if (_root.ball.hitTest(_root.balken1)) {
_root.xspeed = -_root.xspeed;
_root.balken1.gotoAndPlay(2);
_root.sou.gotoAndPlay("racket");
}
if (_root.ball.hitTest(_root.balken2)) {
_root.xspeed = -_root.xspeed;
_root.balken2.gotoAndPlay(2);
_root.sou.gotoAndPlay("racket");
}
if (_root.ball.hitTest(_root.randrechts) and (_root.wurdescore1 == false)) {
_root.score1 = _root.score1 + 1;
_root.wurdescore1 = true;
_root.ballraus = true;
_root.sou.gotoAndPlay("crash");
}
if (_root.ball.hitTest(_root.randlinks) and (_root.wurdescore2 == false)) {
_root.score2 = _root.score2 + 1;
_root.wurdescore2 = true;
_root.ballraus = true;
_root.sou.gotoAndPlay("crash");
}
_root.ball._x = _root.ball._x + _root.xspeed;
_root.ball._y = _root.ball._y + _root.yspeed;
if (_root.score1 == 10) {
_root.gotoAndPlay("player1");
}
if (_root.score2 == 10) {
_root.gotoAndPlay("player2");
}
}
Frame 730
stop();
Frame 731
stop();
Symbol 44 MovieClip Frame 5
stop();
Symbol 49 Button
on (release) {
_root.gotoAndPlay("menu");
}
Symbol 50 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 50 MovieClip Frame 2
gotoAndPlay (1);
Symbol 125 Button
on (press) {
_root.gotoAndStop("menu");
}
Symbol 129 MovieClip Frame 10
stop();
Symbol 130 MovieClip Frame 771
stop();
Symbol 134 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 144 Button
on (release) {
_root.gotoAndStop("thechase1");
}
Symbol 145 Button
on (release) {
_root.gotoAndStop("wordy");
}
Symbol 150 MovieClip Frame 1
stop();
Symbol 151 Button
on (release) {
_root.gotoAndStop("lemmenu");
}
Symbol 152 Button
on (release) {
_root.gotoAndStop("swatmenu");
}
Symbol 153 Button
on (release) {
_root.gotoAndStop("bubble burst");
}
Symbol 156 MovieClip Frame 1
stop();
Symbol 157 Button
on (release) {
_root.gotoAndStop("mmenu");
}
Symbol 158 Button
on (release) {
_root.gotoAndStop("bmenu");
}
Symbol 159 Button
on (release) {
_root.gotoAndStop("smenu");
}
Symbol 160 Button
on (release) {
_root.gotoAndStop("amenu");
}
Symbol 164 MovieClip Frame 1
stop();
Symbol 165 Button
on (release) {
_root.gotoAndStop("wack");
}
Symbol 166 Button
on (release) {
_root.gotoAndStop("caca");
}
Symbol 167 Button
on (release) {
_root.gotoAndStop("jiji");
}
Symbol 170 MovieClip Frame 1
stop();
Symbol 171 Button
on (release) {
_root.gotoAndStop("duckygoflyfly");
}
Symbol 172 Button
on (release) {
_root.gotoAndStop("startgame");
}
Symbol 175 MovieClip Frame 1
stop();
Symbol 186 Button
on (release) {
_root.gotoAndStop("credits11");
}
Symbol 188 MovieClip Frame 1
stopAllSounds();
Symbol 195 Button
on (release) {
nextFrame();
}
Symbol 198 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 220 Button
on (release) {
gotoAndStop (4);
}
Symbol 226 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 230 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 232 Button
on (release) {
gotoAndStop ("flystart");
}
Symbol 244 MovieClip Frame 1
stop();
Symbol 244 MovieClip Frame 9
_root.flycount = _root.flycount - 1;
_root.score = _root.score + 10;
Symbol 244 MovieClip Frame 44
stop();
Symbol 254 MovieClip Frame 901
stop();
_root.gotoAndStop("flyend");
Symbol 259 MovieClip Frame 1
stop();
Symbol 263 Button
on (release) {
gotoAndStop ("flystart");
}
Symbol 264 Button
on (release) {
gotoAndStop ("menu");
}
Symbol 267 Button
on (release) {
nextFrame();
}
Symbol 268 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 271 Button
on (release) {
if (noballs < 6) {
noballs++;
}
}
Symbol 275 Button
on (release) {
if (noballs > 1) {
noballs--;
}
}
Symbol 292 Button
on (release) {
gotoAndStop (1);
}
Symbol 293 MovieClip Frame 1
stop();
noballs = 3;
Symbol 293 MovieClip Frame 2
stop();
time = 0;
dead = false;
i = 0;
while (i < (noballs - 1)) {
ball.duplicateMovieClip("ball" + i, i);
i++;
}
Instance of Symbol 278 MovieClip "man" in Symbol 293 MovieClip Frame 2
onClipEvent (load) {
xspeed = 0;
yspeed = 0;
limit = 10;
}
onClipEvent (enterFrame) {
_parent.time++;
this._x = this._x + xspeed;
this._y = this._y + yspeed;
if (Key.isDown(39) && (xspeed <= limit)) {
xspeed++;
} else if (Key.isDown(37) && (xspeed >= (-limit))) {
xspeed--;
}
if (Key.isDown(38) && (yspeed >= (-limit))) {
yspeed--;
} else if (Key.isDown(40) && (yspeed <= limit)) {
yspeed++;
}
if ((!Key.isDown(39)) && (xspeed > 0)) {
xspeed--;
} else if ((!Key.isDown(37)) && (xspeed < 0)) {
xspeed++;
}
if ((!Key.isDown(40)) && (yspeed > 0)) {
yspeed--;
} else if ((!Key.isDown(38)) && (yspeed < 0)) {
yspeed++;
}
if (this._x < (-275 + (_width / 2))) {
this._x = -275 + (_width / 2);
} else if (this._x > (275 - (_width / 2))) {
this._x = 275 - (_width / 2);
}
if (this._y < (-200 + (_height / 2))) {
this._y = -200 + (_height / 2);
} else if (this._y > (200 - (_height / 2))) {
this._y = 200 - (_height / 2);
}
}
Instance of Symbol 3 MovieClip [enemy] "ball" in Symbol 293 MovieClip Frame 2
onClipEvent (load) {
vx = (Math.random() * 30) - 15;
vy = (Math.random() * 30) - 15;
left = -275;
top = -200;
right = 275;
bottom = 200;
}
onClipEvent (enterFrame) {
_x = (_x + vx);
_y = (_y + vy);
if ((_x + (_width / 2)) > right) {
_x = (right - (_width / 2));
vx = (Math.random() * 30) - 15;
vy = (Math.random() * 30) - 15;
vx = -vx;
}
if ((_x - (_width / 2)) < left) {
_x = (left + (_width / 2));
vx = (Math.random() * 30) - 15;
vy = (Math.random() * 30) - 15;
vx = -vx;
}
if ((_y + (_height / 2)) > bottom) {
_y = (bottom - (_height / 2));
vx = (Math.random() * 30) - 15;
vy = (Math.random() * 30) - 15;
vy = -vy;
}
if ((_y - (_height / 2)) < top) {
_y = (top + (_height / 2));
vx = (Math.random() * 30) - 15;
vy = (Math.random() * 30) - 15;
vy = -vy;
}
if (_parent.dead == true) {
removeMovieClip(this);
}
if (this.hitTest(_parent.man)) {
_parent.dead = true;
_parent.gotoAndStop(3);
}
}
Symbol 293 MovieClip Frame 3
stop();
overscore = noballs * time;
Symbol 297 Button
on (release) {
gotoAndStop ("bblvl1");
}
Instance of Symbol 301 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 3;
}
}
Instance of Symbol 303 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 3;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 2.5;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 2;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 1.5;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 1;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 0.9;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 0.17;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 0.5;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 0.3;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 0.1;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 0;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 0.1;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 0.3;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 0.5;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 0.7;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 0.9;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 1;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 1.5;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 2;
}
}
Instance of Symbol 305 MovieClip in Symbol 308 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 2.5;
}
}
Symbol 334 MovieClip Frame 1
stop();
Instance of Symbol 319 MovieClip "tr" in Symbol 334 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Instance of Symbol 321 MovieClip "br" in Symbol 334 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 323 MovieClip "bl" in Symbol 334 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 325 MovieClip "tl" in Symbol 334 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Symbol 334 MovieClip Frame 8
_root.counter = _root.counter + 1;
Symbol 334 MovieClip Frame 9
_root.bbscore = _root.bbscore + 125;
Symbol 334 MovieClip Frame 10
stop();
Symbol 344 MovieClip Frame 1
stop();
Instance of Symbol 319 MovieClip "tr" in Symbol 344 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Instance of Symbol 321 MovieClip "br" in Symbol 344 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 323 MovieClip "bl" in Symbol 344 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 325 MovieClip "tl" in Symbol 344 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Symbol 344 MovieClip Frame 9
_root.counter = _root.counter + 1;
_root.bbscore = _root.bbscore + 125;
Symbol 344 MovieClip Frame 10
stop();
Symbol 355 MovieClip Frame 1
stop();
Symbol 355 MovieClip Frame 2
stop();
Symbol 355 MovieClip Frame 9
_root.lives = _root.lives - 1;
_root.spdup = 12;
_root.spddown = 0;
Symbol 355 MovieClip Frame 10
gotoAndStop (1);
Symbol 360 MovieClip Frame 16
stop();
Symbol 365 Button
on (release) {
gotoAndStop ("bblvl2");
}
Symbol 383 MovieClip Frame 1
stop();
Instance of Symbol 319 MovieClip "tr" in Symbol 383 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Instance of Symbol 321 MovieClip "br" in Symbol 383 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 323 MovieClip "bl" in Symbol 383 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 325 MovieClip "tl" in Symbol 383 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Symbol 383 MovieClip Frame 9
_root.counter = _root.counter + 1;
_root.bbscore = _root.bbscore + 125;
Symbol 383 MovieClip Frame 10
stop();
Symbol 386 MovieClip Frame 16
stop();
Symbol 389 Button
on (release) {
gotoAndStop ("bblvl3");
}
Symbol 407 MovieClip Frame 1
stop();
Instance of Symbol 319 MovieClip "tr" in Symbol 407 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Instance of Symbol 321 MovieClip "br" in Symbol 407 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 323 MovieClip "bl" in Symbol 407 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 325 MovieClip "tl" in Symbol 407 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Symbol 407 MovieClip Frame 9
_root.counter = _root.counter + 1;
_root.bbscore = _root.bbscore + 125;
Symbol 407 MovieClip Frame 10
stop();
Symbol 417 MovieClip Frame 1
stop();
Instance of Symbol 319 MovieClip "tr" in Symbol 417 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Instance of Symbol 321 MovieClip "br" in Symbol 417 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.rspd = _root.rspd + 5;
_root.lspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 323 MovieClip "bl" in Symbol 417 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 0;
_root.spddown = 12;
}
}
Instance of Symbol 325 MovieClip "tl" in Symbol 417 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.ball)) {
_root.lspd = _root.lspd + 5;
_root.rspd = 0;
_root.spdup = 12;
_root.spddown = 0;
}
}
Symbol 417 MovieClip Frame 9
_root.counter = _root.counter + 1;
_root.bbscore = _root.bbscore + 125;
Symbol 417 MovieClip Frame 10
stop();
Symbol 420 Button
on (release) {
gotoAndStop ("bblvl1");
}
Symbol 453 Button
on (release) {
gotoAndPlay ("lemlvl1");
}
Symbol 456 Button
on (release) {
gotoAndStop ("howtoplay");
}
Symbol 458 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 461 Button
on (release) {
gotoAndStop ("lemmenu");
}
Symbol 464 Button
on (press) {
gotoAndStop (2);
}
Symbol 466 Button
on (press) {
gotoAndStop (3);
}
Symbol 473 MovieClip Frame 7
stop();
Symbol 474 MovieClip Frame 6
stop();
Symbol 475 MovieClip Frame 1
down = 0;
stop();
Symbol 475 MovieClip Frame 2
down = 1;
Symbol 475 MovieClip Frame 3
down = 0;
Symbol 484 MovieClip Frame 1
stop();
_root.onEnterFrame = function () {
if (_root.climb >= 1) {
gotoAndStop (2);
}
};
Symbol 484 MovieClip Frame 2
_root.onEnterFrame = function () {
if (_root.climb <= 0) {
gotoAndStop (1);
}
};
Symbol 485 MovieClip Frame 19
gotoAndPlay (1);
Symbol 487 MovieClip Frame 7
stop();
_root.counter = _root.counter + 1;
Symbol 497 MovieClip Frame 10
_root.deaths = _root.deaths + 1;
stop();
Symbol 498 MovieClip Frame 1
stop();
Symbol 506 MovieClip Frame 19
gotoAndPlay (1);
Symbol 507 MovieClip Frame 30
_root.blocksleft = _root.blocksleft - 1;
Symbol 508 MovieClip Frame 5
_root.counter = _root.counter + 1;
stop();
Symbol 509 MovieClip Frame 1
stop();
Symbol 509 MovieClip Frame 2
_root.onEnterFrame = function () {
if (_root.blocksleft <= -1) {
_root.build = 0;
gotoAndStop (1);
}
};
Instance of Symbol 427 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 3;
}
}
Instance of Symbol 427 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 3;
}
}
Instance of Symbol 427 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 427 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 482 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 3;
}
}
Instance of Symbol 484 MovieClip "inwall" in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.climb <= 0) {
this.gotoAndStop(1);
} else if (_root.climb >= 1) {
this.gotoAndStop(2);
}
}
Instance of Symbol 498 MovieClip "lem1" in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._x = this._x - 2;
} else if (this._xscale <= -100) {
this._x = this._x + 2;
}
}
onClipEvent (load) {
this._xscale = -100;
guyclimb = 0;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.wall1)) {
this._xscale = -100;
} else if (this.hittest(_root.lvl1.inwall)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall3)) {
this._xscale = 100;
} else if (blank) {
guyclimb = 1;
this._x = _root.lvl1.wall2._x;
this._y = this._y - 1;
this.gotoAndStop(2);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.door)) {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bg)) {
this._y = this._y + 3;
} else if (this.hittest(_root.lvl1.grd)) {
this._y = this._y - 3;
}
}
onClipEvent (enterFrame) {
if (this._y >= 90) {
this._y = this._y - 3;
}
}
onClipEvent (enterFrame) {
if (this._y <= 85) {
} else if (this._y >= 86) {
}
}
Instance of Symbol 427 MovieClip "block" in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 509 MovieClip "bldr" in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this._xscale >= 100) && (_root.build <= 0)) {
this._x = this._x - 2;
} else if ((this._xscale <= -100) && (_root.build <= 0)) {
this._x = this._x + 2;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.door)) {
this.gotoAndStop(3);
}
}
onClipEvent (load) {
this._xscale = -100;
guyclimb = 0;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.wall1)) {
this._xscale = -100;
} else if (this.hittest(_root.lvl1.inwall)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall3)) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this.bilder._currentframe >= 39) {
this.gotoAndStop(1);
_root.build = 0;
}
}
onClipEvent (enterFrame) {
if (this.bilder._currentframe >= 1) {
_root.build = 1;
}
}
onClipEvent (enterFrame) {
if (_root.lvl1.bldr.bilder._currentframe >= 38) {
duplicateMovieClip (_root.lvl1.block, "block" + _root.i, _root.i);
_root.lvl1["block" + _root.i]._x = _root.lvl1.bldr._x;
_root.lvl1["block" + _root.i]._y = _root.lvl1.bldr._y;
_root.i++;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bg)) {
this._y = this._y + 3;
} else if (this.hittest(_root.lvl1.grd)) {
this._y = this._y - 3;
}
}
onClipEvent (enterFrame) {
if (this._y >= 90) {
this._y = this._y - 3;
}
}
Instance of Symbol 498 MovieClip "lem2" in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._x = this._x - 2;
} else if (this._xscale <= -100) {
this._x = this._x + 2;
}
}
onClipEvent (load) {
this._xscale = -100;
guyclimb = 0;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.wall1)) {
this._xscale = -100;
} else if (this.hittest(_root.lvl1.inwall)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall3)) {
this._xscale = 100;
} else if (blank) {
guyclimb = 1;
this._x = _root.lvl1.wall2._x;
this._y = this._y - 1;
this.gotoAndStop(2);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.door)) {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bg)) {
this._y = this._y + 3;
} else if (this.hittest(_root.lvl1.grd)) {
this._y = this._y - 3;
}
}
onClipEvent (enterFrame) {
if (this._y >= 90) {
this._y = this._y - 3;
}
}
onClipEvent (enterFrame) {
if (this._y <= 85) {
} else if (this._y >= 86) {
}
}
Instance of Symbol 427 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 498 MovieClip "lem3" in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._x = this._x - 2;
} else if (this._xscale <= -100) {
this._x = this._x + 2;
}
}
onClipEvent (load) {
this._xscale = -100;
guyclimb = 0;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.wall1)) {
this._xscale = -100;
} else if (this.hittest(_root.lvl1.inwall)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall3)) {
this._xscale = 100;
} else if (blank) {
guyclimb = 1;
this._x = _root.lvl1.wall2._x;
this._y = this._y - 1;
this.gotoAndStop(2);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.door)) {
this.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bg)) {
this._y = this._y + 3;
} else if (this.hittest(_root.lvl1.grd)) {
this._y = this._y - 3;
}
}
onClipEvent (enterFrame) {
if (this._y >= 90) {
this._y = this._y - 3;
}
}
onClipEvent (enterFrame) {
if (this._y <= 85) {
} else if (this._y >= 86) {
}
}
Instance of Symbol 427 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 3;
}
}
Instance of Symbol 513 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y + 6;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y + 6;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y + 6;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y + 6;
}
}
Instance of Symbol 513 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1.gotoAndStop(4);
}
}
Symbol 516 Button
on (press) {
_root.lvl1._x = _root.lvl1._x + 15;
}
Symbol 517 Button
on (press) {
_root.lvl1._x = _root.lvl1._x - 15;
}
Symbol 521 MovieClip Frame 1
_root.onEnterFrame = function () {
_root.climb = 0;
};
stop();
Symbol 521 MovieClip Frame 2
_root.onEnterFrame = function () {
_root.climb = 1;
};
Symbol 525 MovieClip Frame 1
stop();
Symbol 538 Button
on (release) {
gotoAndPlay ("lemlvl2");
}
Symbol 548 MovieClip Frame 1
stop();
Symbol 548 MovieClip Frame 4
stop();
Symbol 550 MovieClip Frame 1
stop();
Symbol 556 MovieClip Frame 1
stop();
Symbol 556 MovieClip Frame 5
prevFrame();
Symbol 558 MovieClip Frame 1
stop();
Symbol 563 MovieClip Frame 19
gotoAndPlay (1);
Symbol 567 MovieClip Frame 1
stop();
Symbol 574 MovieClip Frame 19
gotoAndPlay (1);
Symbol 575 MovieClip Frame 7
stop();
_root.counter = _root.counter + 1;
Symbol 576 MovieClip Frame 1
stop();
Instance of Symbol 541 MovieClip "bg" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y + 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y + 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y + 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y + 4;
}
}
Instance of Symbol 482 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 3;
}
}
Instance of Symbol 427 MovieClip "block" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 427 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 3;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 3;
}
}
Instance of Symbol 513 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3.gotoAndStop(4);
_root.digin = 0;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1.gotoAndStop(4);
}
}
Instance of Symbol 548 MovieClip "rk1" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3) && (_root.dig == 0)) {
_root.lvl1.lem3._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.lvl1.lem3.dig._currentframe == 15) {
this.nextFrame();
} else if (_root.lvl1.lem3.dig._currentframe == 50) {
this.nextFrame();
} else if (_root.lvl1.lem3.dig._currentframe == 80) {
this.nextFrame();
}
}
Instance of Symbol 552 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 556 MovieClip "button" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.wall2.gotoAndStop(2);
_root.lvl1.brkwall.gotoAndStop(2);
_root.lvl1.inwall._y = 500;
this.play();
}
}
Instance of Symbol 484 MovieClip "inwall" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.climb <= 0) {
this.gotoAndStop(1);
} else if (_root.climb >= 1) {
this.gotoAndStop(2);
}
}
Instance of Symbol 560 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 427 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 427 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 427 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 509 MovieClip "bldr" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this._xscale >= 100) && (_root.build <= 0)) {
this._x = this._x - 2;
} else if ((this._xscale <= -100) && (_root.build <= 0)) {
this._x = this._x + 2;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.door)) {
this._y = this._y + 2000;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
this._xscale = -100;
guyclimb = 0;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.wall1)) {
this._xscale = -100;
} else if (this.hittest(_root.lvl1.inwall)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall3)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall2)) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if ((this.bilder._currentframe >= 39) && (!this.hittest(_root.lvl1.door))) {
this.gotoAndStop(1);
_root.build = 0;
}
}
onClipEvent (enterFrame) {
if (this.bilder._currentframe >= 1) {
_root.build = 1;
}
}
onClipEvent (enterFrame) {
if (_root.lvl1.bldr.bilder._currentframe >= 38) {
duplicateMovieClip (_root.lvl1.block, "block" + _root.i, _root.i);
_root.lvl1["block" + _root.i]._x = _root.lvl1.bldr._x;
_root.lvl1["block" + _root.i]._y = _root.lvl1.bldr._y;
_root.i++;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bg)) {
this._y = this._y + 4;
}
}
onClipEvent (enterFrame) {
if (_root.lvl1.fl.hittest(this)) {
this._y = this._y - 4;
}
}
Instance of Symbol 498 MovieClip "lem2" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._x = this._x - 2;
} else if (this._xscale <= -100) {
this._x = this._x + 2;
}
}
onClipEvent (enterFrame) {
if (_root.lvl1.fl.hittest(this)) {
this._y = this._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bg)) {
this._y = this._y + 4;
}
}
onClipEvent (load) {
this._xscale = -100;
guyclimb = 0;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.wall1)) {
this._xscale = -100;
} else if (this.hittest(_root.lvl1.inwall)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall3)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall2)) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.door)) {
this.gotoAndStop(3);
}
}
Instance of Symbol 567 MovieClip "lem3" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this._xscale >= 100) && (_root.digin == 0)) {
this._x = this._x - 2;
} else if ((this._xscale <= -100) && (_root.digin == 0)) {
this._x = this._x + 2;
}
}
onClipEvent (enterFrame) {
if (_root.lvl1.fl.hittest(this)) {
this._y = this._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bg)) {
this._y = this._y + 4;
}
}
onClipEvent (load) {
this._xscale = -100;
guyclimb = 0;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.wall1)) {
this._xscale = -100;
} else if (this.hittest(_root.lvl1.inwall)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall3)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall2)) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.door)) {
this.gotoAndStop(3);
this._y = this._y + 2000;
_root.counter = _root.counter + 1;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.rk1) && (_root.dig == 1)) {
_root.digin = 1;
this.gotoAndStop(2);
} else if (!this.hittest(_root.lvl1.door)) {
this.gotoAndStop(1);
_root.digin = 0;
}
}
Instance of Symbol 576 MovieClip "lem1" in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._xscale >= 100) {
this._x = this._x - 2;
} else if (this._xscale <= -100) {
this._x = this._x + 2;
}
}
onClipEvent (enterFrame) {
if (_root.lvl1.fl.hittest(this)) {
this._y = this._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bg)) {
this._y = this._y + 4;
}
}
onClipEvent (load) {
this._xscale = -100;
guyclimb = 0;
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.wall1)) {
this._xscale = -100;
} else if (this.hittest(_root.lvl1.inwall)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall3)) {
this._xscale = 100;
} else if (this.hittest(_root.lvl1.wall2)) {
guyclimb = 1;
this._x = _root.lvl1.wall2._x;
this._y = this._y - 4.5;
this.gotoAndStop(2);
} else if ((!this.hittest(_root.lvl1.wall2)) && (!this.hittest(_root.lvl1.door))) {
this.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.door)) {
this.gotoAndStop(3);
this._y = this._y + 500;
}
}
Instance of Symbol 427 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 427 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr._y = _root.lvl1.bldr._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2._y = _root.lvl1.lem2._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3._y = _root.lvl1.lem3._y - 4;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1._y = _root.lvl1.lem1._y - 4;
}
}
Instance of Symbol 513 MovieClip in Symbol 577 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.bldr)) {
_root.lvl1.bldr.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem2)) {
_root.lvl1.lem2.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem3)) {
_root.lvl1.lem3.gotoAndStop(4);
_root.digin = 0;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.lvl1.lem1)) {
_root.lvl1.lem1.gotoAndStop(4);
}
}
Symbol 587 MovieClip Frame 1
stop();
Symbol 601 Button
on (release) {
gotoAndPlay ("lemlvl1");
}
Symbol 602 Button
on (release) {
gotoAndPlay ("lemlvl2");
}
Symbol 608 Button
on (release) {
_root.gotoAndPlay("agame");
}
Symbol 610 Button
on (release) {
_root.gotoAndStop("ainfo");
}
Symbol 613 Button
on (release) {
_root.gotoAndPlay("menu");
}
Symbol 617 Button
on (release) {
_root.gotoAndStop("amenu");
}
Symbol 671 Button
on (release) {
_root.gotoAndStop("bgame");
}
Symbol 705 MovieClip Frame 1
stop();
Instance of Symbol 678 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 680 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 682 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 684 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 686 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 688 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 690 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 692 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 694 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 696 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 698 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 700 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 702 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Instance of Symbol 704 MovieClip in Symbol 705 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!this.hitTest(_root.bgimg)) {
this._visible = 0;
} else {
this._visible = 1;
}
}
Symbol 711 MovieClip Frame 1
stop();
Instance of Symbol 707 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.death == true) {
_root.bp++;
_parent.gotoAndPlay(2);
}
if (!_parent.hitTest(_root.bgimg)) {
_parent._visible = 0;
} else {
_parent._visible = 1;
}
}
Symbol 711 MovieClip Frame 4
stop();
Instance of Symbol 707 MovieClip in Symbol 715 MovieClip Frame 1
onClipEvent (load) {
_parent._visible = 0;
}
Symbol 725 MovieClip Frame 1
stop();
Instance of Symbol 707 MovieClip in Symbol 725 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((Key.isDown(17) && (Key.isDown(37) or Key.isDown(39))) && (Key.isDown(38))) {
_parent.gotoAndPlay("dup");
} else if (Key.isDown(38) && (Key.isDown(17))) {
_parent.gotoAndPlay("up");
} else if (Key.isDown(17)) {
_parent.gotoAndPlay(2);
}
}
Symbol 725 MovieClip Frame 4
stop();
Instance of Symbol 707 MovieClip in Symbol 725 MovieClip Frame 4
onClipEvent (enterFrame) {
if ((Key.isDown(17) && (Key.isDown(37) or Key.isDown(39))) && (Key.isDown(38))) {
_parent.gotoAndPlay("dup");
} else if (Key.isDown(38) && (Key.isDown(17))) {
_parent.gotoAndPlay("up");
} else if (Key.isDown(17)) {
_parent.gotoAndPlay(2);
} else {
_parent.gotoAndStop(1);
}
}
Symbol 725 MovieClip Frame 7
stop();
Instance of Symbol 707 MovieClip in Symbol 725 MovieClip Frame 7
onClipEvent (enterFrame) {
if ((Key.isDown(17) && (Key.isDown(37) or Key.isDown(39))) && (Key.isDown(38))) {
_parent.gotoAndPlay("dup");
} else if (Key.isDown(38) && (Key.isDown(17))) {
_parent.gotoAndPlay("up");
} else if (Key.isDown(17)) {
_parent.gotoAndPlay(2);
} else {
_parent.gotoAndStop(1);
}
}
Symbol 725 MovieClip Frame 10
stop();
Instance of Symbol 707 MovieClip in Symbol 725 MovieClip Frame 10
onClipEvent (enterFrame) {
if ((Key.isDown(17) && (Key.isDown(37) or Key.isDown(39))) && (Key.isDown(38))) {
_parent.gotoAndPlay("dup");
} else if (Key.isDown(38) && (Key.isDown(17))) {
_parent.gotoAndPlay("up");
} else if (Key.isDown(17)) {
_parent.gotoAndPlay(2);
} else {
_parent.gotoAndStop(1);
}
}
Symbol 735 MovieClip Frame 1
stop();
Instance of Symbol 725 MovieClip "ins" in Symbol 735 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.walk == true) {
_parent.gotoAndPlay(2);
}
}
Instance of Symbol 707 MovieClip in Symbol 735 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.walk == false) {
this._parent.gotoAndStop(1);
}
}
Symbol 735 MovieClip Frame 10
stop();
Instance of Symbol 707 MovieClip in Symbol 735 MovieClip Frame 10
onClipEvent (load) {
if (_root.walk == false) {
this._parent.gotoAndStop(1);
}
if (_root.walk == true) {
this._parent.gotoAndPlay(2);
}
}
Instance of Symbol 707 MovieClip in Symbol 735 MovieClip Frame 11
onClipEvent (enterFrame) {
if (_root.onfloor) {
_parent.gotoAndPlay(1);
}
}
Symbol 743 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 760 Button
on (release, keyPress "<Enter>") {
_root.gotoAndStop("mgame");
}
Symbol 762 Button
on (release) {
_root.gotoAndStop("minfo");
}
Symbol 764 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 769 Button
on (release, keyPress "<Enter>") {
_root.gotoAndStop("mmenu");
}
Instance of Symbol 774 MovieClip in Symbol 775 MovieClip Frame 1
onClipEvent (load) {
_parent._visible = 0;
}
Symbol 800 MovieClip Frame 1
stop();
Symbol 800 MovieClip Frame 15
stop();
Symbol 801 MovieClip Frame 1
stop();
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 370;
_parent.gotoAndStop(2);
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (enterFrame) {
this._rotation = this._rotation - 2;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (enterFrame) {
this._rotation = this._rotation - 2;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Symbol 801 MovieClip Frame 2
stop();
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 30;
_parent.gotoAndStop(1);
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 2
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 2
onClipEvent (enterFrame) {
this._rotation = this._rotation - 3;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._x = 520;
_parent.gotoAndStop(3);
}
}
Symbol 801 MovieClip Frame 3
stop();
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._x = 30;
_parent.gotoAndStop(2);
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 30;
_parent.gotoAndStop(4);
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 3
onClipEvent (enterFrame) {
this._rotation = this._rotation - 3;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 3
onClipEvent (enterFrame) {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 3
onClipEvent (enterFrame) {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 3
onClipEvent (enterFrame) {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 3
onClipEvent (enterFrame) {
this._rotation = this._rotation - 3;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 370;
_parent.gotoAndStop(3);
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 30;
_parent.gotoAndStop(5);
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 370;
_parent.gotoAndStop(4);
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 5
onClipEvent (enterFrame) {
this._rotation = this._rotation - 3;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 5
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._x = 30;
_parent.gotoAndStop(6);
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._x = 520;
_parent.gotoAndStop(5);
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 30;
_parent.gotoAndStop(7);
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 6
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 6
onClipEvent (enterFrame) {
this._rotation = this._rotation - 2;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 370;
_parent.gotoAndStop(6);
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 30;
_parent.gotoAndStop(8);
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 7
onClipEvent (enterFrame) {
this._rotation = this._rotation - 2;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 7
onClipEvent (enterFrame) {
this._rotation = this._rotation + 2;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 7
onClipEvent (enterFrame) {
this._rotation = this._rotation + 1;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 7
onClipEvent (enterFrame) {
this._rotation = this._rotation + 3;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Instance of Symbol 775 MovieClip in Symbol 801 MovieClip Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.hero._y = 370;
_parent.gotoAndStop(7);
}
}
Instance of Symbol 800 MovieClip in Symbol 801 MovieClip Frame 8
onClipEvent (load) {
_root.win = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero._x, _root.hero._y, true) && (_root.win == false)) {
_root.win = true;
this.play();
}
}
Instance of Symbol 779 MovieClip in Symbol 801 MovieClip Frame 8
onClipEvent (enterFrame) {
this._rotation = this._rotation + 6;
if (this.hitTest(_root.hero._x, _root.hero._y, true)) {
_root.death = true;
}
}
Symbol 804 Button
on (release, keyPress "<Enter>") {
if (_parent._visible == 1) {
_root.gotoAndStop("mmenu");
}
}
Symbol 812 Button
on (release, keyPress "<Space>") {
_root.gotoAndStop("sgame");
}
Symbol 818 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 849 MovieClip Frame 1
stop();
Symbol 849 MovieClip Frame 19
stop();
Symbol 854 Button
on (release, keyPress "<Space>") {
if (_root.con._visible == 1) {
if (_root.left._currentframe == 7) {
_root.gotoAndStop("sgo");
}
if (_root.con._x > 200) {
_root.con._visible = 0;
_root.left.nextFrame();
_root.taxi = "";
_root.hit = true;
_root.bna._x = 279.6;
_root.bna._y = 200.9;
_root.bna._visible = 1;
_root.bna.gotoAndStop(1);
_root.vertical = true;
_root.vbar._visible = 1;
_root.con._x = -80;
_root.vbar.pointer._y = (random(222) + 1) - 111;
i = random(2) + 1;
if (i == 1) {
_root.vbar.down = true;
} else {
_root.vbar.down = false;
}
}
}
}
Symbol 870 Button
on (release, keyPress "<Space>") {
_root.gotoAndStop("smenu");
}
Symbol 875 MovieClip Frame 1
stopAllSounds();
Symbol 875 MovieClip Frame 2
stop();
Symbol 904 Button
on (release) {
_root.gotoAndStop("game1");
}
Symbol 905 MovieClip Frame 5
stop();
Symbol 910 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 911 MovieClip Frame 5
stop();
Instance of Symbol 922 MovieClip in Symbol 923 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 934 MovieClip in Symbol 936 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 946 MovieClip "gonext" in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("win");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 916 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Instance of Symbol 917 MovieClip in Symbol 950 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.circle)) {
_root.gotoAndPlay("lose");
}
}
Symbol 955 MovieClip Frame 1
stop();
Symbol 955 MovieClip Frame 2
stop();
Symbol 961 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 963 Button
on (release) {
_root.gotoAndStop("caca");
}
Symbol 972 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 977 Button
on (release) {
_root.gotoAndStop("game55");
}
Symbol 980 Button
on (release) {
_root.gotoAndStop("inst");
}
Symbol 985 MovieClip Frame 1
stopAllSounds();
Symbol 985 MovieClip Frame 2
stop();
Symbol 990 Button
on (release) {
_root.gotoAndStop("wack");
}
Symbol 1007 MovieClip Frame 1
stop();
Symbol 1007 MovieClip Frame 22
gotoAndStop (1);
stop();
Symbol 1007 MovieClip Frame 24
_root.marque = _root.marque + 10;
Symbol 1015 MovieClip Frame 1
stop();
Symbol 1015 MovieClip Frame 22
gotoAndStop (1);
stop();
Symbol 1015 MovieClip Frame 24
_root.marque = _root.marque + 10;
Symbol 1017 MovieClip Frame 1
stop();
Symbol 1017 MovieClip Frame 22
gotoAndStop (1);
stop();
Symbol 1017 MovieClip Frame 24
_root.marque = _root.marque + 10;
Symbol 1022 MovieClip Frame 1
stop();
Symbol 1022 MovieClip Frame 22
gotoAndStop (1);
stop();
Symbol 1022 MovieClip Frame 24
_root.marque = _root.marque + 10;
Symbol 1024 MovieClip Frame 1
stop();
Symbol 1024 MovieClip Frame 22
gotoAndStop (1);
stop();
Symbol 1024 MovieClip Frame 24
_root.marque = _root.marque + 10;
Symbol 1029 MovieClip Frame 1
stop();
Symbol 1029 MovieClip Frame 4
if (_root.hammer.hihi.hitTest(_root["p" + _root.rand].guy)) {
_root["p" + _root.rand].gotoAndPlay("die");
}
Instance of Symbol 1027 MovieClip "hihi" in Symbol 1029 MovieClip Frame 4
onClipEvent (enterFrame) {
trace(this);
}
Symbol 1040 MovieClip Frame 21
_root.temps = _root.temps + 1;
Symbol 1049 MovieClip Frame 1
stop();
Symbol 1049 MovieClip Frame 2
stop();
Symbol 1049 MovieClip Frame 3
stop();
Symbol 1063 Button
on (release) {
gotoAndPlay ("game1_");
}
Symbol 1073 Button
on (release) {
gotoAndPlay ("game2");
}
Symbol 1082 Button
on (release) {
var score = 0;
}
Symbol 1090 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 1112 Button
on (release) {
_root.gotoAndStop("duc_menu");
}
Symbol 1113 MovieClip Frame 15
stop();
Symbol 1118 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1120 MovieClip Frame 1
stop();
Symbol 1126 MovieClip Frame 1
stop();
Symbol 1126 MovieClip Frame 2
stop();
Symbol 1126 MovieClip Frame 3
stop();
Symbol 1126 MovieClip Frame 4
stop();
Symbol 1126 MovieClip Frame 5
_root.gotoAndPlay("outofammo");
Symbol 1138 MovieClip Frame 1
stop();
Symbol 1138 MovieClip Frame 2
stop();
Symbol 1138 MovieClip Frame 3
stop();
Symbol 1138 MovieClip Frame 4
stop();
Symbol 1138 MovieClip Frame 5
stop();
Symbol 1138 MovieClip Frame 6
stop();
Symbol 1138 MovieClip Frame 7
stop();
Symbol 1138 MovieClip Frame 8
stop();
Symbol 1138 MovieClip Frame 9
stop();
Symbol 1138 MovieClip Frame 10
stop();
Symbol 1138 MovieClip Frame 11
stop();
Symbol 1140 Button
on (release) {
gotoAndPlay ("duc_menu");
}
Symbol 1144 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1145 MovieClip Frame 1
stop();
Symbol 1147 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1148 MovieClip Frame 1
stop();
Symbol 1163 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1166 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1170 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1174 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1174 MovieClip Frame 60
stop();
_root.gotoAndPlay("lvl1complete");
Symbol 1175 MovieClip Frame 1
stop();
Symbol 1179 Button
on (release) {
_root.ammo.gotoAndStop(1);
_root.gotoAndStop("duc_menu");
}
Symbol 1183 MovieClip Frame 320
stop();
_root.ammo.gotoAndStop(1);
Symbol 1200 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1203 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1206 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1208 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1208 MovieClip Frame 60
stop();
_root.gotoAndPlay("lvl2complete");
Symbol 1209 MovieClip Frame 220
stop();
Symbol 1225 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1228 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1230 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1232 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1232 MovieClip Frame 59
_root.gotoAndPlay("lvl3complete");
Symbol 1233 MovieClip Frame 212
stop();
Symbol 1248 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1251 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1254 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1257 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1257 MovieClip Frame 53
stop();
_root.gotoAndPlay("lvl4complete");
Symbol 1258 MovieClip Frame 165
stop();
Symbol 1273 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1276 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1277 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1279 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1279 MovieClip Frame 53
stop();
_root.gotoAndPlay("lvl5complete");
Symbol 1280 MovieClip Frame 185
stop();
Symbol 1295 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1298 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1299 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1301 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1301 MovieClip Frame 52
stop();
_root.gotoAndPlay("lvl6complete");
Symbol 1302 MovieClip Frame 151
stop();
Symbol 1317 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1320 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1321 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1324 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1324 MovieClip Frame 53
stop();
_root.gotoAndPlay("lvl7complete");
Symbol 1325 MovieClip Frame 216
stop();
Symbol 1340 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1343 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1344 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1346 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1346 MovieClip Frame 52
stop();
_root.gotoAndPlay("lvl8complete");
Symbol 1347 MovieClip Frame 151
stop();
Symbol 1361 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1364 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1365 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1367 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1367 MovieClip Frame 52
stop();
_root.gotoAndPlay("lvl9complete");
Symbol 1368 MovieClip Frame 176
stop();
Symbol 1383 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1386 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1387 Button
on (press) {
gotoAndPlay (6);
}
Symbol 1389 MovieClip Frame 5
gotoAndPlay (1);
Symbol 1389 MovieClip Frame 52
stop();
_root.gotoAndPlay("lvl10complete");
Symbol 1390 MovieClip Frame 150
stop();
Symbol 1404 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1405 MovieClip Frame 1
stop();
Symbol 1418 MovieClip Frame 1
stop();
Symbol 1418 MovieClip Frame 2
stop();
Symbol 1418 MovieClip Frame 3
stop();
Symbol 1418 MovieClip Frame 4
stop();
Symbol 1418 MovieClip Frame 5
stop();
Symbol 1418 MovieClip Frame 6
stop();
Symbol 1418 MovieClip Frame 7
stop();
Symbol 1418 MovieClip Frame 8
stop();
Symbol 1418 MovieClip Frame 9
stop();
Symbol 1418 MovieClip Frame 10
stop();
Symbol 1418 MovieClip Frame 11
stop();
Symbol 1424 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1429 MovieClip Frame 1
stop();
Symbol 1429 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl2");
Symbol 1431 MovieClip Frame 70
stop();
Symbol 1433 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1438 MovieClip Frame 1
stop();
Symbol 1438 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl3");
Symbol 1439 MovieClip Frame 60
stop();
Symbol 1441 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1446 MovieClip Frame 1
stop();
Symbol 1446 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl4");
Symbol 1447 MovieClip Frame 45
stop();
Symbol 1449 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1454 MovieClip Frame 1
stop();
Symbol 1454 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl5");
Symbol 1455 MovieClip Frame 40
stop();
Symbol 1457 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1462 MovieClip Frame 1
stop();
Symbol 1462 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl6");
Symbol 1463 MovieClip Frame 36
stop();
Symbol 1465 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1469 MovieClip Frame 1
stop();
Symbol 1469 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl7");
Symbol 1470 MovieClip Frame 40
stop();
Symbol 1472 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1477 MovieClip Frame 1
stop();
Symbol 1477 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl8");
Symbol 1478 MovieClip Frame 40
stop();
Symbol 1480 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1485 MovieClip Frame 1
stop();
Symbol 1485 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl9");
Symbol 1486 MovieClip Frame 41
stop();
Symbol 1488 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1493 MovieClip Frame 1
stop();
Symbol 1493 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2lvl10");
Symbol 1494 MovieClip Frame 45
stop();
Symbol 1496 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1501 MovieClip Frame 1
stop();
Symbol 1501 MovieClip Frame 6
stop();
_root.gotoAndPlay("game2finish");
Symbol 1502 MovieClip Frame 40
stop();
Symbol 1511 Button
on (release) {
gotoAndPlay ("level1");
}
Symbol 1544 Button
on (keyPress "a") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1548 MovieClip Frame 1
stop();
Symbol 1548 MovieClip Frame 5
stop();
Symbol 1550 Button
on (keyPress "g") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1553 MovieClip Frame 1
stop();
Symbol 1553 MovieClip Frame 5
stop();
Symbol 1555 Button
on (keyPress "5") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
on (keyPress "s") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1558 MovieClip Frame 1
stop();
Symbol 1558 MovieClip Frame 5
stop();
Symbol 1560 Button
on (keyPress "i") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
on (keyPress "1") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1563 MovieClip Frame 1
stop();
Symbol 1563 MovieClip Frame 5
stop();
Symbol 1565 Button
on (keyPress "o") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
on (keyPress "0") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1568 MovieClip Frame 1
stop();
Symbol 1568 MovieClip Frame 5
stop();
Symbol 1570 Button
on (keyPress "k") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1573 MovieClip Frame 1
stop();
Symbol 1573 MovieClip Frame 5
stop();
Symbol 1575 Button
on (keyPress "f") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1578 MovieClip Frame 1
stop();
Symbol 1578 MovieClip Frame 5
stop();
Symbol 1580 Button
on (keyPress "7") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1583 MovieClip Frame 1
stop();
Symbol 1583 MovieClip Frame 5
stop();
Symbol 1585 Button
on (keyPress "2") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1588 MovieClip Frame 1
stop();
Symbol 1588 MovieClip Frame 5
stop();
Symbol 1590 Button
on (keyPress "4") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
on (keyPress "y") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1593 MovieClip Frame 1
stop();
Symbol 1593 MovieClip Frame 5
stop();
Symbol 1600 MovieClip Frame 30
_root.time = _root.time - 1;
Symbol 1602 Button
on (keyPress "b") {
gotoAndPlay ("gameover");
}
on (keyPress "d") {
gotoAndPlay ("gameover");
}
on (keyPress "c") {
gotoAndPlay ("gameover");
}
on (keyPress "h") {
gotoAndPlay ("gameover");
}
on (keyPress "j") {
gotoAndPlay ("gameover");
}
on (keyPress "l") {
gotoAndPlay ("gameover");
}
on (keyPress "m") {
gotoAndPlay ("gameover");
}
on (keyPress "n") {
gotoAndPlay ("gameover");
}
on (keyPress "p") {
gotoAndPlay ("gameover");
}
on (keyPress "q") {
gotoAndPlay ("gameover");
}
on (keyPress "r") {
gotoAndPlay ("gameover");
}
on (keyPress "t") {
gotoAndPlay ("gameover");
}
on (keyPress "u") {
gotoAndPlay ("gameover");
}
on (keyPress "v") {
gotoAndPlay ("gameover");
}
on (keyPress "w") {
gotoAndPlay ("gameover");
}
on (keyPress "x") {
gotoAndPlay ("gameover");
}
on (keyPress "3") {
gotoAndPlay ("gameover");
}
on (keyPress "6") {
gotoAndPlay ("gameover");
}
on (keyPress "8") {
gotoAndPlay ("gameover");
}
on (keyPress "9") {
gotoAndPlay ("gameover");
}
Symbol 1615 Button
on (release) {
tellTarget ("_parent") {
gotoAndStop ("startgame");
};
}
Symbol 1621 Button
on (release) {
tellTarget ("_parent") {
gotoAndPlay ("quit");
};
}
Symbol 1624 Button
on (release) {
tellTarget ("_parent") {
gotoAndPlay ("quit");
};
}
Symbol 1625 MovieClip Frame 1
stop();
Symbol 1632 Button
on (keyPress "x") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1635 MovieClip Frame 1
stop();
Symbol 1635 MovieClip Frame 5
stop();
Symbol 1637 Button
on (keyPress "y") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
on (keyPress "4") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1640 MovieClip Frame 1
stop();
Symbol 1640 MovieClip Frame 5
stop();
Symbol 1642 Button
on (keyPress "z") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1645 MovieClip Frame 1
stop();
Symbol 1645 MovieClip Frame 5
stop();
Symbol 1647 Button
on (keyPress "p") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1650 MovieClip Frame 1
stop();
Symbol 1650 MovieClip Frame 5
stop();
Symbol 1652 Button
on (keyPress "l") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1655 MovieClip Frame 1
stop();
Symbol 1655 MovieClip Frame 5
stop();
Symbol 1657 Button
on (keyPress "d") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1660 MovieClip Frame 1
stop();
Symbol 1660 MovieClip Frame 5
stop();
Symbol 1662 Button
on (keyPress "8") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
on (keyPress "b") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1665 MovieClip Frame 1
stop();
Symbol 1665 MovieClip Frame 5
stop();
Symbol 1667 Button
on (keyPress "h") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1670 MovieClip Frame 1
stop();
Symbol 1670 MovieClip Frame 5
stop();
Symbol 1672 Button
on (keyPress "j") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1675 MovieClip Frame 1
stop();
Symbol 1675 MovieClip Frame 5
stop();
Symbol 1677 Button
on (keyPress "r") {
gotoAndPlay (2);
_root.points = _root.points + 1;
}
Symbol 1680 MovieClip Frame 1
stop();
Symbol 1680 MovieClip Frame 5
stop();
Symbol 1683 Button
on (release) {
tellTarget ("_parent") {
gotoAndStop ("quit");
};
}
Symbol 1689 Button
on (release) {
tellTarget ("_parent") {
nextFrame();
};
}
Symbol 1699 Button
on (keyPress "a") {
gotoAndPlay ("gameover");
}
on (keyPress "c") {
gotoAndPlay ("gameover");
}
on (keyPress "e") {
gotoAndPlay ("gameover");
}
on (keyPress "f") {
gotoAndPlay ("gameover");
}
on (keyPress "g") {
gotoAndPlay ("gameover");
}
on (keyPress "i") {
gotoAndPlay ("gameover");
}
on (keyPress "k") {
gotoAndPlay ("gameover");
}
on (keyPress "l") {
gotoAndPlay ("gameover");
}
on (keyPress "m") {
gotoAndPlay ("gameover");
}
on (keyPress "n") {
gotoAndPlay ("gameover");
}
on (keyPress "o") {
gotoAndPlay ("gameover");
}
on (keyPress "p") {
gotoAndPlay ("gameover");
}
on (keyPress "q") {
gotoAndPlay ("gameover");
}
on (keyPress "s") {
gotoAndPlay ("gameover");
}
on (keyPress "t") {
gotoAndPlay ("gameover");
}
on (keyPress "u") {
gotoAndPlay ("gameover");
}
on (keyPress "v") {
gotoAndPlay ("gameover");
}
on (keyPress "w") {
gotoAndPlay ("gameover");
}
on (keyPress "y") {
gotoAndPlay ("gameover");
}
on (keyPress "1") {
gotoAndPlay ("gameover");
}
on (keyPress "3") {
gotoAndPlay ("gameover");
}
on (keyPress "4") {
gotoAndPlay ("gameover");
}
on (keyPress "5") {
gotoAndPlay ("gameover");
}
on (keyPress "6") {
gotoAndPlay ("gameover");
}
on (keyPress "7") {
gotoAndPlay ("gameover");
}
on (keyPress "9") {
gotoAndPlay ("gameover");
}
Symbol 1719 Button
on (keyPress "a") {
gotoAndPlay ("gameover");
}
on (keyPress "c") {
gotoAndPlay ("gameover");
}
on (keyPress "e") {
gotoAndPlay ("gameover");
}
on (keyPress "h") {
gotoAndPlay ("gameover");
}
on (keyPress "f") {
gotoAndPlay ("gameover");
}
on (keyPress "k") {
gotoAndPlay ("gameover");
}
on (keyPress "l") {
gotoAndPlay ("gameover");
}
on (keyPress "m") {
gotoAndPlay ("gameover");
}
on (keyPress "n") {
gotoAndPlay ("gameover");
}
on (keyPress "o") {
gotoAndPlay ("gameover");
}
on (keyPress "q") {
gotoAndPlay ("gameover");
}
on (keyPress "t") {
gotoAndPlay ("gameover");
}
on (keyPress "u") {
gotoAndPlay ("gameover");
}
on (keyPress "v") {
gotoAndPlay ("gameover");
}
on (keyPress "w") {
gotoAndPlay ("gameover");
}
on (keyPress "y") {
gotoAndPlay ("gameover");
}
on (keyPress "3") {
gotoAndPlay ("gameover");
}
on (keyPress "6") {
gotoAndPlay ("gameover");
}
on (keyPress "9") {
gotoAndPlay ("gameover");
}
Symbol 1729 Button
on (release) {
tellTarget ("_parent") {
gotoAndStop ("quit");
};
}
Symbol 1742 Button
on (keyPress "a") {
gotoAndPlay ("gameover");
}
on (keyPress "b") {
gotoAndPlay ("gameover");
}
on (keyPress "c") {
gotoAndPlay ("gameover");
}
on (keyPress "e") {
gotoAndPlay ("gameover");
}
on (keyPress "f") {
gotoAndPlay ("gameover");
}
on (keyPress "h") {
gotoAndPlay ("gameover");
}
on (keyPress "j") {
gotoAndPlay ("gameover");
}
on (keyPress "l") {
gotoAndPlay ("gameover");
}
on (keyPress "m") {
gotoAndPlay ("gameover");
}
on (keyPress "n") {
gotoAndPlay ("gameover");
}
on (keyPress "p") {
gotoAndPlay ("gameover");
}
on (keyPress "q") {
gotoAndPlay ("gameover");
}
on (keyPress "r") {
gotoAndPlay ("gameover");
}
on (keyPress "s") {
gotoAndPlay ("gameover");
}
on (keyPress "t") {
gotoAndPlay ("gameover");
}
on (keyPress "u") {
gotoAndPlay ("gameover");
}
on (keyPress "v") {
gotoAndPlay ("gameover");
}
on (keyPress "w") {
gotoAndPlay ("gameover");
}
on (keyPress "x") {
gotoAndPlay ("gameover");
}
on (keyPress "z") {
gotoAndPlay ("gameover");
}
on (keyPress "2") {
gotoAndPlay ("gameover");
}
on (keyPress "3") {
gotoAndPlay ("gameover");
}
on (keyPress "5") {
gotoAndPlay ("gameover");
}
on (keyPress "6") {
gotoAndPlay ("gameover");
}
on (keyPress "8") {
gotoAndPlay ("gameover");
}
on (keyPress "9") {
gotoAndPlay ("gameover");
}
Symbol 1753 Button
on (release) {
tellTarget ("_parent") {
gotoAndStop ("quit");
};
}
Symbol 1766 Button
on (keyPress "a") {
gotoAndPlay ("gameover");
}
on (keyPress "g") {
gotoAndPlay ("gameover");
}
on (keyPress "c") {
gotoAndPlay ("gameover");
}
on (keyPress "e") {
gotoAndPlay ("gameover");
}
on (keyPress "h") {
gotoAndPlay ("gameover");
}
on (keyPress "k") {
gotoAndPlay ("gameover");
}
on (keyPress "l") {
gotoAndPlay ("gameover");
}
on (keyPress "m") {
gotoAndPlay ("gameover");
}
on (keyPress "n") {
gotoAndPlay ("gameover");
}
on (keyPress "o") {
gotoAndPlay ("gameover");
}
on (keyPress "q") {
gotoAndPlay ("gameover");
}
on (keyPress "t") {
gotoAndPlay ("gameover");
}
on (keyPress "u") {
gotoAndPlay ("gameover");
}
on (keyPress "v") {
gotoAndPlay ("gameover");
}
on (keyPress "w") {
gotoAndPlay ("gameover");
}
on (keyPress "z") {
gotoAndPlay ("gameover");
}
on (keyPress "y") {
gotoAndPlay ("gameover");
}
on (keyPress "0") {
gotoAndPlay ("gameover");
}
on (keyPress "3") {
gotoAndPlay ("gameover");
}
on (keyPress "4") {
gotoAndPlay ("gameover");
}
on (keyPress "6") {
gotoAndPlay ("gameover");
}
on (keyPress "9") {
gotoAndPlay ("gameover");
}
Symbol 1787 MovieClip Frame 1
_root.points = _root.points + 1;
Symbol 1787 MovieClip Frame 2
Symbol 1793 Button
on (release) {
tellTarget ("_parent") {
gotoAndStop ("quit");
};
}
Symbol 1794 Button
on (release) {
tellTarget ("_parent") {
gotoAndStop ("quit");
};
}
Symbol 1804 Button
on (release) {
gotoAndPlay ("startgame");
}
Symbol 1808 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 1824 MovieClip Frame 10
stop();
Symbol 1826 Button
on (release) {
gotoAndPlay ("menu");
}
Symbol 1829 MovieClip Frame 5
stop();
Symbol 1834 Button
on (release) {
tellTarget ("_parent") {
gotoAndStop ("startgame");
};
}
Symbol 1835 Button
on (release) {
tellTarget ("_parent") {
gotoAndPlay ("quit");
};
}
Symbol 1836 Button
on (release) {
tellTarget ("_parent") {
gotoAndPlay ("quit");
};
}
Symbol 1852 Button
on (release) {
_root.gotoAndStop("joujou");
}
Symbol 1853 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 1860 Button
on (release) {
nextFrame();
}
Symbol 1862 Button
on (release) {
prevFrame();
}
Symbol 1864 MovieClip Frame 1
stop();
_root.xspeed = 10;
_root.yspeed = 10;
Symbol 1864 MovieClip Frame 2
stop();
_root.xspeed = 15;
_root.yspeed = 15;
Symbol 1864 MovieClip Frame 3
stop();
_root.xspeed = 20;
_root.yspeed = 20;
Symbol 1871 MovieClip Frame 1
stop();
Symbol 1871 MovieClip Frame 23
gotoAndStop (1);
Symbol 1871 MovieClip Frame 30
gotoAndStop (1);
Symbol 1871 MovieClip Frame 46
gotoAndStop (1);
Symbol 1882 Button
on (release) {
_root.gotoAndStop("jiji");
}