Frame 1 (96 B)
fscommand ("fullscreen", "false");
fscommand ("allowscale", "false");
Stage.showMenu = false;
Frame 459 (1.79 KiB) ●
this.createEmptyMovieClip("musicDummySoundClip", this.getNextHighestDepth());
music = new Sound(musicDummySoundClip);
music.attachSound("role_model");
this.createEmptyMovieClip("intro_outroDummySoundClip", this.getNextHighestDepth());
intro_outro = new Sound(intro_outroDummySoundClip);
intro_outro.attachSound("intro_outro");
intro_outro.start(0, 999);
function __com_mochibot__(swfid, mc, lv) {
var x;
var g;
var s;
var fv;
var sb;
var u;
var res;
var mb;
var mbc;
mb = "__mochibot__";
mbc = "mochibot.com";
g = (_global ? (_global) : (_level0._root));
if (g[mb + swfid]) {
return(g[mb + swfid]);
}
s = System.security;
x = mc._root.getSWFVersion;
fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5)));
if (!s) {
s = {};
}
sb = s.sandboxType;
if (sb == "localWithFile") {
return(null);
}
x = s.allowDomain;
if (x) {
s.allowDomain(mbc);
}
x = s.allowInsecureDomain;
if (x) {
s.allowInsecureDomain(mbc);
}
u = ((((((((((("http://" + mbc) + "/my/core.swf?mv=5&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "");
lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv))));
g[mb + "level"] = lv;
if (fv == 5) {
res = "_level" + lv;
if (!eval (res)) {
loadMovieNum (u, lv);
}
} else {
res = mc.createEmptyMovieClip(mb + swfid, lv);
res.loadMovie(u);
}
g[n] = res;
return(res);
}
stop();
__com_mochibot__("0b3ac632", this, 10301);
jump = new Sound();
coin_take = new Sound();
death_sound = new Sound();
end_loop = new Sound();
jump.attachSound("hero_jump");
coin_take.attachSound("coin_pickup");
death_sound.attachSound("hero_die");
end_loop.attachSound("end");
Frame 460 (45 B)
life = "3";
gotoAndStop ("level1_1_intro");
Frame 461 (8 B)
stop();
Frame 462 (40 B)
life = life - "1";
music.setVolume(0);
Frame 515 (1.43 KiB) ●
if (level == "1") {
gotoAndStop ("level1_1_intro");
}
if (level == "2") {
gotoAndStop ("level1_2_intro");
}
if (level == "3") {
gotoAndStop ("level1_3_intro");
}
if (level == "4") {
gotoAndStop ("level1_4_intro");
}
if (level == "5") {
gotoAndStop ("level1_5_intro");
}
if (level == "6") {
gotoAndStop ("level1_6_intro");
}
if (level == "7") {
gotoAndStop ("level1_7_intro");
}
if (level == "8") {
gotoAndStop ("level1_8_intro");
}
if (level == "9") {
gotoAndStop ("level1_9_intro");
}
if (level == "10") {
gotoAndStop ("level1_10_intro");
}
if (level == "11") {
gotoAndStop ("level2_1_intro");
}
if (level == "12") {
gotoAndStop ("level2_2_intro");
}
if (level == "13") {
gotoAndStop ("level2_3_intro");
}
if (level == "14") {
gotoAndStop ("level2_4_intro");
}
if (level == "15") {
gotoAndStop ("level2_5_intro");
}
if (level == "16") {
gotoAndStop ("level2_6_intro");
}
if (level == "17") {
gotoAndStop ("level2_7_intro");
}
if (level == "18") {
gotoAndStop ("level2_8_intro");
}
if (level == "19") {
gotoAndStop ("level2_9_intro");
}
if (level == "20") {
gotoAndStop ("level2_10_intro");
}
if (level == "21") {
gotoAndStop ("level3_1_intro");
}
if (level == "22") {
gotoAndStop ("level3_2_intro");
}
if (level == "23") {
gotoAndStop ("level3_3_intro");
}
if (level == "24") {
gotoAndStop ("level3_4_intro");
}
if (level == "25") {
gotoAndStop ("level3_5_intro");
}
Frame 516 (131 B)
music.start(0, 999);
music.setVolume(100);
intro_outro.stop();
jackdies = "true";
katedies = "false";
level = "1";
stop();
Instance of Symbol 170 MovieClip "jake_run" in Frame 516 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 517 (1.4 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC1.limitMC1.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC1.limitMC1.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC1.limitMC1.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC1.limitMC1.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC1.limitMC1.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
fscommand ("showmenu", "false");
this.stageMC1.limitMC1._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 517 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 0);
}
}
Instance of Symbol 189 MovieClip in Frame 517 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 517 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 517 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 517 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 517 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip "coinMC" in Frame 517 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 517 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 517 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "8") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_2_intro");
}
}
Frame 526 (37 B)
music.setVolume(100);
level = "2";
Instance of Symbol 170 MovieClip "jake_run" in Frame 526 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 527 (1.37 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC2.limitMC2.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC2.limitMC2.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC2.limitMC2.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC2.limitMC2.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC2.limitMC2.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
this.stageMC2.limitMC21._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 527 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 527 (222 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "13") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_3_intro");
}
}
Frame 536 (37 B)
music.setVolume(100);
level = "3";
Instance of Symbol 170 MovieClip "jake_run" in Frame 536 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 537 (1.37 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC3.limitMC3.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC3.limitMC3.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC3.limitMC3.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC3.limitMC3.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC3.limitMC3.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
this.stageMC3.limitMC3._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 537 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 537 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 537 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 537 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 537 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 537 (319 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "5") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_4_intro");
}
if (this._parent.jakeMC.hitTest(this._parent.death_level1_3)) {
_root.gotoAndPlay("death");
}
}
Frame 546 (37 B)
music.setVolume(100);
level = "4";
Instance of Symbol 170 MovieClip "jake_run" in Frame 546 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 547 (1.37 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC4.limitMC4.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC4.limitMC4.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC4.limitMC4.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC4.limitMC4.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC4.limitMC4.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
this.stageMC4.limitMC4._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 547 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 547 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 547 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 547 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 547 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 547 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 547 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 547 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 547 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "8") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_5_intro");
}
}
Frame 556 (37 B)
music.setVolume(100);
level = "5";
Instance of Symbol 170 MovieClip "jake_run" in Frame 556 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 557 (1.37 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC5.limitMC5.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC5.limitMC5.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC5.limitMC5.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC5.limitMC5.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC5.limitMC5.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
this.stageMC5.limitMC5._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 557 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 557 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 557 (220 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "2") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_6_pass");
}
}
Instance of Symbol 195 MovieClip in Frame 557 (458 B)
onClipEvent (enterFrame) {
if (_root.death_level1_5_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_5_2.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_5_3.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_5_4.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_5_5.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 566 (67 B)
intro_outro.stop();
music.setVolume(100);
level = "6";
stop();
Instance of Symbol 170 MovieClip "jake_run" in Frame 566 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 567 (1.32 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC6.limitMC6.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC6.limitMC6.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC6.limitMC6.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC6.limitMC6.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC6.limitMC6.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 567 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 567 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 567 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 567 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 567 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 567 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 567 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "6") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_7_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 567 (286 B)
onClipEvent (enterFrame) {
if (_root.death_level1_6_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_6_2.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_6_3.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 576 (37 B)
music.setVolume(100);
level = "7";
Instance of Symbol 170 MovieClip "jake_run" in Frame 576 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 577 (1.32 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC7.limitMC7.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC7.limitMC7.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC7.limitMC7.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC7.limitMC7.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC7.limitMC7.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 577 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 577 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 577 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 577 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 577 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 577 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 577 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 577 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 577 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "8") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_8_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 577 (114 B)
onClipEvent (enterFrame) {
if (_root.death_level1_7_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 586 (37 B)
music.setVolume(100);
level = "8";
Instance of Symbol 170 MovieClip "jake_run" in Frame 586 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 587 (1.32 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC8.limitMC8.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC8.limitMC8.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC8.limitMC8.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC8.limitMC8.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC8.limitMC8.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 587 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 587 (222 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "11") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_9_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 587 (630 B)
onClipEvent (enterFrame) {
if (_root.death_level1_8_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_2.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_3.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_4.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_5.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_6.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_7.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 596 (37 B)
music.setVolume(100);
level = "9";
Instance of Symbol 170 MovieClip "jake_run" in Frame 596 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 597 (1.32 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC9.limitMC9.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC9.limitMC9.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC9.limitMC9.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC9.limitMC9.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC9.limitMC9.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 597 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 597 (223 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "14") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level1_10_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 597 (889 B)
onClipEvent (enterFrame) {
if (_root.death_level1_8_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_2.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_3.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_4.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_5.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_6.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_7.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_8.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_9.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level1_8_10.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 606 (38 B)
music.setVolume(100);
level = "10";
Instance of Symbol 170 MovieClip "jake_run" in Frame 606 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 607 (1.33 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC10.limitMC10.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC10.limitMC10.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC10.limitMC10.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC10.limitMC10.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC10.limitMC10.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 195 MovieClip in Frame 607 (133 B)
onClipEvent (enterFrame) {
if (this._parent.jakeMC.hitTest(this._parent.heroine_captured)) {
_root.gotoAndStop("sequence_1");
}
}
Instance of Symbol 195 MovieClip in Frame 607 (122 B)
onClipEvent (enterFrame) {
if (_root.lava_level1_10.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("level1_10_intro");
}
}
Frame 616 (31 B)
music.setVolume(30);
stop();
Frame 617 (8 B)
stop();
Frame 618 (8 B)
stop();
Frame 619 (8 B)
stop();
Frame 620 (8 B)
stop();
Frame 621 (8 B)
stop();
Frame 622 (8 B)
stop();
Frame 623 (8 B)
stop();
Frame 624 (8 B)
stop();
Frame 625 (8 B)
stop();
Frame 626 (8 B)
stop();
Frame 627 (8 B)
stop();
Frame 628 (8 B)
stop();
Frame 629 (8 B)
stop();
Frame 630 (8 B)
stop();
Frame 631 (8 B)
stop();
Frame 632 (8 B)
stop();
Frame 633 (82 B)
music.setVolume(100);
intro_outro.stop();
level = "11";
life = "3";
stop();
Instance of Symbol 170 MovieClip "jake_run" in Frame 633 (52 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
}
Instance of Symbol 271 MovieClip "kate_run" in Frame 633 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 634 (1.33 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC11.limitMC11.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC11.limitMC11.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC11.limitMC11.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC11.limitMC11.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC11.limitMC11.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 634 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 634 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 634 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 634 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 634 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 277 MovieClip in Frame 634 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 90) {
moveleft = false;
moveright = true;
}
if (_x > 117) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 195 MovieClip in Frame 634 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "5") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_2_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 634 (114 B)
onClipEvent (enterFrame) {
if (_root.death_level2_1_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 641 (38 B)
music.setVolume(100);
level = "12";
Instance of Symbol 170 MovieClip "jake_run" in Frame 641 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 642 (1.33 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC12.limitMC12.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC12.limitMC12.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC12.limitMC12.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC12.limitMC12.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC12.limitMC12.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 642 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 642 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 642 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 642 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 642 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 642 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 642 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 642 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 283 MovieClip in Frame 642 (403 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 90) {
moveleft = false;
moveright = true;
}
if (_x > 121) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 283 MovieClip in Frame 642 (404 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 229) {
moveleft = false;
moveright = true;
}
if (_x > 261) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 195 MovieClip in Frame 642 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "8") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_3_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 642 (286 B)
onClipEvent (enterFrame) {
if (_root.death_level2_2_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level2_2_2.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level2_2_3.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 651 (38 B)
music.setVolume(100);
level = "13";
Instance of Symbol 170 MovieClip "jake_run" in Frame 651 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 652 (1.33 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC13.limitMC13.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC13.limitMC13.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC13.limitMC13.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC13.limitMC13.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC13.limitMC13.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 652 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 652 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 652 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 277 MovieClip in Frame 652 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 135) {
moveleft = false;
moveright = true;
}
if (_x > 162) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 652 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 255) {
moveleft = false;
moveright = true;
}
if (_x > 282) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 652 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 75) {
moveleft = false;
moveright = true;
}
if (_x > 103) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 652 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 195) {
moveleft = false;
moveright = true;
}
if (_x > 222) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 652 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 135) {
moveleft = false;
moveright = true;
}
if (_x > 162) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 652 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 255) {
moveleft = false;
moveright = true;
}
if (_x > 282) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 195 MovieClip in Frame 652 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "3") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_4_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 652 (114 B)
onClipEvent (enterFrame) {
if (_root.death_level2_3_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 661 (38 B)
music.setVolume(100);
level = "14";
Instance of Symbol 170 MovieClip "jake_run" in Frame 661 (52 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
}
Instance of Symbol 277 MovieClip in Frame 661 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 4;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 662 (1.33 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC14.limitMC14.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC14.limitMC14.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC14.limitMC14.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC14.limitMC14.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC14.limitMC14.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 662 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 662 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 662 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 662 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 662 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 662 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 662 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 277 MovieClip in Frame 662 (327 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 70) {
moveleft = false;
moveright = true;
}
if (_x > 81) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 662 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 260) {
moveleft = false;
moveright = true;
}
if (_x > 271) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 662 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 84) {
moveleft = false;
moveright = true;
}
if (_x > 120) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 662 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 221) {
moveleft = false;
moveright = true;
}
if (_x > 257) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 292 MovieClip in Frame 662 (404 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 153) {
moveleft = false;
moveright = true;
}
if (_x > 189) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 195 MovieClip in Frame 662 (220 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "7") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_5_pass");
}
}
Instance of Symbol 195 MovieClip in Frame 662 (114 B)
onClipEvent (enterFrame) {
if (_root.death_level2_4_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 671 (20 B)
intro_outro.stop();
Frame 672 (32 B)
music.setVolume(100);
stop();
Instance of Symbol 170 MovieClip "jake_run" in Frame 672 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 673 (1.35 KiB) ●
level = "15";
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.stageMC15.limitMC15.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.stageMC15.limitMC15.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.stageMC15.limitMC15.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.stageMC15.limitMC15.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.stageMC15.limitMC15.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 673 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 673 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 673 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 673 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 673 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 232 MovieClip in Frame 673 (316 B)
onClipEvent (load) {
moveup = true;
speed = 7;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 35) {
moveup = false;
movedown = true;
}
if (_y > 125) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 673 (316 B)
onClipEvent (load) {
moveup = true;
speed = 7;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 40) {
moveup = false;
movedown = true;
}
if (_y > 125) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 673 (316 B)
onClipEvent (load) {
moveup = true;
speed = 6;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 53) {
moveup = false;
movedown = true;
}
if (_y > 125) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 673 (316 B)
onClipEvent (load) {
moveup = true;
speed = 5;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 64) {
moveup = false;
movedown = true;
}
if (_y > 125) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 673 (316 B)
onClipEvent (load) {
moveup = true;
speed = 3;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 74) {
moveup = false;
movedown = true;
}
if (_y > 125) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (329 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (329 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 673 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 283 MovieClip in Frame 673 (403 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 283 MovieClip in Frame 673 (403 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 283 MovieClip in Frame 673 (404 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 195 MovieClip in Frame 673 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "5") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_6_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 673 (114 B)
onClipEvent (enterFrame) {
if (_root.death_level2_4_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 682 (38 B)
music.setVolume(100);
level = "16";
Instance of Symbol 170 MovieClip "jake_run" in Frame 682 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 683 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC16.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC16.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC16.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC16.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC16.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 683 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 683 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 683 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 232 MovieClip in Frame 683 (316 B)
onClipEvent (load) {
moveup = true;
speed = 7;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 20) {
moveup = false;
movedown = true;
}
if (_y > 175) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 683 (316 B)
onClipEvent (load) {
moveup = true;
speed = 7;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 20) {
moveup = false;
movedown = true;
}
if (_y > 175) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 683 (316 B)
onClipEvent (load) {
moveup = true;
speed = 7;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 20) {
moveup = false;
movedown = true;
}
if (_y > 175) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 683 (318 B)
onClipEvent (load) {
movedown = true;
speed = 7;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 20) {
moveup = false;
movedown = true;
}
if (_y > 175) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 683 (316 B)
onClipEvent (load) {
moveup = true;
speed = 7;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 20) {
moveup = false;
movedown = true;
}
if (_y > 175) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 683 (318 B)
onClipEvent (load) {
movedown = true;
speed = 7;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 20) {
moveup = false;
movedown = true;
}
if (_y > 175) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 195 MovieClip in Frame 683 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "3") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_7_intro");
}
}
Frame 693 (38 B)
music.setVolume(100);
level = "17";
Instance of Symbol 170 MovieClip "jake_run" in Frame 693 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 694 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC17.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC17.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC17.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC17.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC17.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 694 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 694 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 694 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 694 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 694 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 694 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 277 MovieClip in Frame 694 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 694 (329 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 694 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 694 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 694 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 694 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 694 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 694 (329 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 694 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 694 (329 B)
onClipEvent (load) {
moveright = true;
speed = 3;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 330) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 694 (330 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 115) {
moveleft = false;
moveright = true;
}
if (_x > 185) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 694 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 224) {
moveleft = false;
moveright = true;
}
if (_x > 282) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 694 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 175) {
moveleft = false;
moveright = true;
}
if (_x > 234) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 694 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 65) {
moveleft = false;
moveright = true;
}
if (_x > 133) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 283 MovieClip in Frame 694 (404 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 283 MovieClip in Frame 694 (403 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 283 MovieClip in Frame 694 (404 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 195 MovieClip in Frame 694 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "6") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_8_intro");
}
}
Frame 703 (38 B)
music.setVolume(100);
level = "18";
Instance of Symbol 170 MovieClip "jake_run" in Frame 703 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 704 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC18.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC18.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC18.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC18.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC18.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 704 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 704 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 704 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 232 MovieClip in Frame 704 (330 B)
onClipEvent (load) {
moveright = true;
speed = 4;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 187) {
moveleft = false;
moveright = true;
}
if (_x > 325) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 704 (329 B)
onClipEvent (load) {
moveleft = true;
speed = 6;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 187) {
moveleft = false;
moveright = true;
}
if (_x > 325) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 704 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 4;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 18) {
moveleft = false;
moveright = true;
}
if (_x > 155) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 704 (329 B)
onClipEvent (load) {
moveright = true;
speed = 6;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 18) {
moveleft = false;
moveright = true;
}
if (_x > 155) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 195 MovieClip in Frame 704 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "3") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_9_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 704 (114 B)
onClipEvent (enterFrame) {
if (_root.death_level2_8_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 713 (38 B)
music.setVolume(100);
level = "19";
Instance of Symbol 170 MovieClip "jake_run" in Frame 713 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 714 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC19.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC19.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC19.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC19.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC19.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 714 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 277 MovieClip in Frame 714 (329 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 97) {
moveleft = false;
moveright = true;
}
if (_x > 105) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 714 (330 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 197) {
moveleft = false;
moveright = true;
}
if (_x > 205) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 714 (330 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 247) {
moveleft = false;
moveright = true;
}
if (_x > 255) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 714 (330 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 119) {
moveleft = false;
moveright = true;
}
if (_x > 126) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 714 (328 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 47) {
moveleft = false;
moveright = true;
}
if (_x > 55) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 714 (330 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 308) {
moveleft = false;
moveright = true;
}
if (_x > 317) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 714 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 6;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 17) {
moveleft = false;
moveright = true;
}
if (_x > 330) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 714 (329 B)
onClipEvent (load) {
moveright = true;
speed = 6;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 17) {
moveleft = false;
moveright = true;
}
if (_x > 330) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 714 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 6;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 17) {
moveleft = false;
moveright = true;
}
if (_x > 330) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 195 MovieClip in Frame 714 (223 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "23") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_10_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 714 (372 B)
onClipEvent (enterFrame) {
if (_root.death_level2_9_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level2_9_2.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level2_9_3.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level2_9_4.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 723 (38 B)
music.setVolume(100);
level = "20";
Instance of Symbol 170 MovieClip "jake_run" in Frame 723 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 724 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC20.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC20.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC20.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC20.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC20.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 195 MovieClip in Frame 724 (222 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "23") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level2_9_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 724 (205 B)
onClipEvent (enterFrame) {
if (_root.lava_level2_10.hitTest(_root.jakeMC)) {
_root.gotoAndStop("level2_10_intro");
}
if (_root.rune1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("level2_10_end");
}
}
Frame 733 (44 B)
music.setVolume(30);
stop();
life = "3";
Frame 734 (8 B)
stop();
Frame 735 (110 B)
music.setVolume(100);
intro_outro.stop();
katedies = "true";
jackdies = "false";
level = "21";
stop();
Instance of Symbol 271 MovieClip "jake_run" in Frame 735 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 736 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC21.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC21.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC21.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC21.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC21.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 736 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 736 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 736 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 736 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 195 MovieClip in Frame 736 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "4") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level3_2_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 736 (286 B)
onClipEvent (enterFrame) {
if (_root.death_level3_1_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level3_1_2.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level3_1_3.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 746 (38 B)
music.setVolume(100);
level = "22";
Instance of Symbol 271 MovieClip "jake_run" in Frame 746 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 747 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC22.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC22.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC22.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC22.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC22.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 747 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 747 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 747 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 747 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 747 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 277 MovieClip in Frame 747 (329 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 747 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 747 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 747 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 277 MovieClip in Frame 747 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 747 (329 B)
onClipEvent (load) {
moveright = true;
speed = 3;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 92) {
moveleft = false;
moveright = true;
}
if (_x > 120) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 747 (330 B)
onClipEvent (load) {
moveright = true;
speed = 3;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 225) {
moveleft = false;
moveright = true;
}
if (_x > 255) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 232 MovieClip in Frame 747 (317 B)
onClipEvent (load) {
movedown = true;
speed = 5;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 20) {
moveup = false;
movedown = true;
}
if (_y > 70) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 232 MovieClip in Frame 747 (315 B)
onClipEvent (load) {
moveup = true;
speed = 5;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 20) {
moveup = false;
movedown = true;
}
if (_y > 70) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
}
Instance of Symbol 283 MovieClip in Frame 747 (404 B)
onClipEvent (load) {
moveright = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 283 MovieClip in Frame 747 (403 B)
onClipEvent (load) {
moveleft = true;
speed = 1;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 15) {
moveleft = false;
moveright = true;
}
if (_x > 333) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 195 MovieClip in Frame 747 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "5") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level3_3_intro");
}
}
Frame 757 (38 B)
music.setVolume(100);
level = "23";
Instance of Symbol 271 MovieClip "jake_run" in Frame 757 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 758 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC23.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC23.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC23.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC23.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC23.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 758 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 758 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 758 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 758 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 758 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 328 MovieClip in Frame 758 (392 B)
onClipEvent (load) {
movedown = true;
speed = 3;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 16) {
moveup = false;
movedown = true;
}
if (_y > 90) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 328 MovieClip in Frame 758 (390 B)
onClipEvent (load) {
moveup = true;
speed = 3;
}
onClipEvent (enterFrame) {
if (moveup) {
_y = (_y - speed);
_yscale = 100;
}
if (_y < 16) {
moveup = false;
movedown = true;
}
if (_y > 90) {
movedown = false;
moveup = true;
}
if (movedown) {
_y = (_y + speed);
_yscale = 100;
}
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 333 MovieClip in Frame 758 (103 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 333 MovieClip in Frame 758 (103 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 333 MovieClip in Frame 758 (103 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 195 MovieClip in Frame 758 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "5") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level3_4_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 758 (114 B)
onClipEvent (enterFrame) {
if (_root.death_level3_3_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 767 (38 B)
music.setVolume(100);
level = "24";
Instance of Symbol 271 MovieClip "jake_run" in Frame 767 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 768 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC24.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC24.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC24.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC24.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC24.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 189 MovieClip in Frame 768 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 768 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 768 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 768 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 768 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 768 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 768 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 189 MovieClip in Frame 768 (159 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
unloadMovie (this);
_root.score = _root.score + 1;
_root.coin_take.start(0, 1);
}
}
Instance of Symbol 232 MovieClip in Frame 768 (328 B)
onClipEvent (load) {
moveleft = true;
speed = 6;
}
onClipEvent (enterFrame) {
if (moveleft) {
_x = (_x - speed);
_xscale = 100;
}
if (_x < 17) {
moveleft = false;
moveright = true;
}
if (_x > 325) {
moveright = false;
moveleft = true;
}
if (moveright) {
_x = (_x + speed);
_xscale = -100;
}
}
Instance of Symbol 333 MovieClip in Frame 768 (103 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 333 MovieClip in Frame 768 (103 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 333 MovieClip in Frame 768 (103 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 333 MovieClip in Frame 768 (103 B)
onClipEvent (enterFrame) {
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Instance of Symbol 195 MovieClip in Frame 768 (221 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (_root.score == "8") {
_root.goalMC.play();
}
if (this._parent.jakeMC.hitTest(this._parent.goalMC)) {
_root.gotoAndStop("level3_5_intro");
}
}
Instance of Symbol 195 MovieClip in Frame 768 (200 B)
onClipEvent (enterFrame) {
if (_root.death_level3_4_1.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
if (_root.death_level3_4_2.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("death");
}
}
Frame 777 (38 B)
music.setVolume(100);
level = "25";
Instance of Symbol 271 MovieClip "jake_run" in Frame 777 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 778 (1.29 KiB) ●
function move_wait() {
if (Key.isDown(Kleft)) {
this.jakeMC._xscale = -100;
this.jakeMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.jakeMC._xscale = 100;
this.jakeMC.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.jakeMC.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!this.limitMC25.hitTest(this.jakeMC._x, this.jakeMC._y, true)) {
this.jakeMC.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if (!this.limitMC25.hitTest((this.jakeMC._x - valueX) - 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x - valueX;
}
}
function move_right(valueX) {
if (!this.limitMC25.hitTest((this.jakeMC._x + valueX) + 8, this.jakeMC._y - 4, true)) {
this.jakeMC._x = this.jakeMC._x + valueX;
}
}
function jump_down(valueY) {
if (!this.limitMC25.hitTest(this.jakeMC._x, this.jakeMC._y - 2, true)) {
this.jakeMC._y = this.jakeMC._y + valueY;
} else {
i = 1;
while (i <= 5) {
if (!this.limitMC25.hitTest(this.jakeMC._x, this.jakeMC._y - i, true)) {
this.jakeMC._y = this.jakeMC._y - (i - 3);
break;
}
i++;
}
this.jakeMC.gotoAndStop("stand");
}
}
stop();
Kleft = 37;
Kright = 39;
Kjump = 38;
walkSpeed = 2;
jumpHeight = 6;
jumpSpeed = 0.5;
fallSpeed = 3;
Instance of Symbol 195 MovieClip in Frame 778 (165 B)
onClipEvent (load) {
_root.score = 0;
}
onClipEvent (enterFrame) {
if (this._parent.jakeMC.hitTest(this._parent.rune2)) {
_root.gotoAndStop("level3_5_end");
}
}
Instance of Symbol 195 MovieClip in Frame 778 (116 B)
onClipEvent (enterFrame) {
if (_root.lava_level3_5.hitTest(_root.jakeMC)) {
_root.gotoAndPlay("kate_death");
}
}
Frame 787 (21 B)
music.setVolume(30);
Frame 788 (14 B)
music.stop();
Frame 868 (31 B)
music.setVolume(30);
stop();
Frame 869 (8 B)
stop();
Frame 870 (8 B)
stop();
Frame 871 (8 B)
stop();
Frame 896 (20 B)
music.setVolume(0);
Frame 943 (24 B)
end_loop.start(0, 999);
Instance of Symbol 242 MovieClip "jake_run" in Frame 1037 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1037 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 242 MovieClip "jake_run" in Frame 1062 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1062 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 242 MovieClip "jake_run" in Frame 1072 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1072 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 242 MovieClip "jake_run" in Frame 1077 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1077 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 242 MovieClip "jake_run" in Frame 1080 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1080 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 242 MovieClip "jake_run" in Frame 1082 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1082 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 242 MovieClip "jake_run" in Frame 1084 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1084 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 242 MovieClip "jake_run" in Frame 1086 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1086 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 242 MovieClip "jake_run" in Frame 1088 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Instance of Symbol 178 MovieClip "jake_run" in Frame 1088 (96 B)
onClipEvent (enterFrame) {
this._x = this._x + 3;
if (_x > 355) {
_root.nextFrame();
}
}
Frame 1157 (45 B)
end_loop.stop();
intro_outro.start(0, 999);
Frame 1272 (8 B)
stop();
Frame 1273 (8 B)
stop();
Frame 1274 (8 B)
stop();
Frame 1275 (8 B)
stop();
Frame 1276 (8 B)
stop();
Frame 1342 (20 B)
gotoAndPlay (2081);
Frame 1343 (14 B)
music.stop();
Frame 1344 (19 B)
gotoAndStop (459);
Instance of Symbol 194 MovieClip "portal" in Frame 1680 (37 B)
onClipEvent (enterFrame) {
play();
}
Frame 2080 (32 B)
gotoAndStop ("level1_1_intro");
Frame 2301 (20 B)
intro_outro.stop();
Frame 2361 (27 B)
intro_outro.start(0, 999);
Frame 2406 (8 B)
stop();
Symbol 10 MovieClip Frame 1 (202 B)
_root.stop();
PercentLoaded = Math.round((_root.getBytesLoaded() / _root.getBytesTotal()) * 100);
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
_root.play();
}
Symbol 10 MovieClip Frame 2 (17 B)
gotoAndPlay (1);
Symbol 17 Button (66 B)
on (release) {
getURL ("http://www.flashportal.com", "_blank");
}
Symbol 111 Button (59 B)
on (release) {
getURL ("http://www.c404.net", "_blank");
}
Symbol 116 Button (47 B)
on (keyPress "<Enter>") {
nextFrame();
}
Symbol 117 Button (47 B)
on (release) {
gotoAndStop ("password_win");
}
Symbol 119 Button (37 B)
on (release) {
gotoAndPlay (1352);
}
Symbol 120 Button (66 B)
on (release) {
getURL ("http://www.flashportal.com", "_blank");
}
Symbol 127 Button (36 B)
on (release) {
gotoAndStop (459);
}
Symbol 128 Button (382 B)
on (release) {
if (passbox == "h58k9") {
_root.gotoAndStop("level2_1_intro");
life = "3";
} else if (passbox == "fkgl8") {
_root.gotoAndStop("level3_1_intro");
life = "3";
} else if (passbox == "eihj7") {
_root.gotoAndStop("level2_5_intro");
life = "3";
} else if (passbox == "js765") {
_root.gotoAndStop("level1_6_intro");
life = "3";
}
music.start(0, 999);
}
Symbol 157 MovieClip Frame 1 (136 B)
if (_root.jackdies == "true") {
gotoAndPlay ("hero_dies");
} else if (_root.katedies == "true") {
gotoAndPlay ("heroine_dies");
}
Symbol 157 MovieClip Frame 27 (8 B)
stop();
Symbol 157 MovieClip Frame 54 (8 B)
stop();
Symbol 170 MovieClip Frame 7 (17 B)
gotoAndPlay (1);
Symbol 179 MovieClip Frame 1 (8 B)
stop();
Symbol 182 MovieClip Frame 10 (17 B)
gotoAndPlay (1);
Symbol 185 MovieClip Frame 10 (17 B)
gotoAndPlay (1);
Symbol 186 MovieClip Frame 1 (30 B)
this.gotoAndStop("jumpDown");
Instance of Symbol 179 MovieClip in Symbol 186 MovieClip Frame 2 (68 B)
onClipEvent (enterFrame) {
_root.move_wait();
_root.jump_wait();
}
Instance of Symbol 179 MovieClip in Symbol 186 MovieClip Frame 3 (328 B)
onClipEvent (enterFrame) {
if (_parent._xscale == 100) {
_root.move_right(_root.walkSpeed);
if (!Key.isDown(_root.Kright)) {
_parent.gotoAndStop("stand");
}
} else {
_root.move_left(_root.walkSpeed);
if (!Key.isDown(_root.Kleft)) {
_parent.gotoAndStop("stand");
}
}
_root.jump_wait();
_root.fall_wait();
}
Symbol 186 MovieClip Frame 4 (24 B)
_root.jump.start(0, 0);
Instance of Symbol 179 MovieClip in Symbol 186 MovieClip Frame 4 (406 B)
onClipEvent (load) {
jumpH = -_root.jumpHeight;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + jumpH;
jumpH = jumpH + _root.jumpSpeed;
if (jumpH >= 0) {
_parent.gotoAndStop("jumpDown");
}
if (Key.isDown(_root.Kright)) {
_parent._xscale = 100;
_root.move_right(_root.walkSpeed);
} else if (Key.isDown(_root.Kleft)) {
_parent._xscale = -100;
_root.move_left(_root.walkSpeed);
}
}
Instance of Symbol 179 MovieClip in Symbol 186 MovieClip Frame 5 (360 B)
onClipEvent (load) {
jumpH = 0;
}
onClipEvent (enterFrame) {
if (jumpH < _root.fallSpeed) {
jumpH = jumpH + _root.jumpSpeed;
}
_root.jump_down(jumpH);
if (Key.isDown(_root.Kright)) {
_parent._xscale = 100;
_root.move_right(_root.walkSpeed);
} else if (Key.isDown(_root.Kleft)) {
_parent._xscale = -100;
_root.move_left(_root.walkSpeed);
}
}
Symbol 194 MovieClip Frame 1 (8 B)
stop();
Symbol 194 MovieClip Frame 17 (17 B)
gotoAndPlay (1);
Symbol 212 Button (47 B)
on (keyPress "<Enter>") {
nextFrame();
}
Symbol 232 MovieClip Frame 1 (74 B)
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
Symbol 233 MovieClip Frame 320 (8 B)
stop();
Symbol 271 MovieClip Frame 7 (17 B)
gotoAndPlay (1);
Symbol 277 MovieClip Frame 1 (74 B)
if (this.hitTest(this._parent.jakeMC)) {
_root.gotoAndPlay("death");
}
Symbol 317 MovieClip Frame 10 (17 B)
gotoAndPlay (1);
Symbol 320 MovieClip Frame 10 (17 B)
gotoAndPlay (1);
Symbol 321 MovieClip Frame 1 (30 B)
this.gotoAndStop("jumpDown");
Instance of Symbol 179 MovieClip in Symbol 321 MovieClip Frame 2 (68 B)
onClipEvent (enterFrame) {
_root.move_wait();
_root.jump_wait();
}
Instance of Symbol 179 MovieClip in Symbol 321 MovieClip Frame 3 (328 B)
onClipEvent (enterFrame) {
if (_parent._xscale == 100) {
_root.move_right(_root.walkSpeed);
if (!Key.isDown(_root.Kright)) {
_parent.gotoAndStop("stand");
}
} else {
_root.move_left(_root.walkSpeed);
if (!Key.isDown(_root.Kleft)) {
_parent.gotoAndStop("stand");
}
}
_root.jump_wait();
_root.fall_wait();
}
Instance of Symbol 179 MovieClip in Symbol 321 MovieClip Frame 4 (406 B)
onClipEvent (load) {
jumpH = -_root.jumpHeight;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + jumpH;
jumpH = jumpH + _root.jumpSpeed;
if (jumpH >= 0) {
_parent.gotoAndStop("jumpDown");
}
if (Key.isDown(_root.Kright)) {
_parent._xscale = 100;
_root.move_right(_root.walkSpeed);
} else if (Key.isDown(_root.Kleft)) {
_parent._xscale = -100;
_root.move_left(_root.walkSpeed);
}
}
Instance of Symbol 179 MovieClip in Symbol 321 MovieClip Frame 5 (360 B)
onClipEvent (load) {
jumpH = 0;
}
onClipEvent (enterFrame) {
if (jumpH < _root.fallSpeed) {
jumpH = jumpH + _root.jumpSpeed;
}
_root.jump_down(jumpH);
if (Key.isDown(_root.Kright)) {
_parent._xscale = 100;
_root.move_right(_root.walkSpeed);
} else if (Key.isDown(_root.Kleft)) {
_parent._xscale = -100;
_root.move_left(_root.walkSpeed);
}
}
Symbol 339 Button (42 B)
on (keyPress "<Enter>") {
play();
}
Symbol 363 Button (61 B)
on (keyPress "<Enter>") {
gotoAndStop ("main_menu");
}
Symbol 369 Button (49 B)
on (release) {
gotoAndStop ("level1_1_intro");
}