Frame 1
function doSomething() {
getURL ("http://www.eggysgames.com", _blank);
}
function doSomething2() {
getURL ("http://www.eggysgames.com", _blank);
}
function doSomething3() {
getURL ("http://www.mofunzone.com", _blank);
}
_root.level1done = false;
_root.level2done = false;
_root.level3done = false;
_root.level4done = false;
_root.level5done = false;
_root.level6done = false;
_root.level7done = false;
_root.level8done = false;
_root.level9done = false;
_root.level10done = false;
_root.level11done = false;
_root.level12done = false;
_root.level13done = false;
_root.level14done = false;
_root.level15done = false;
_root.music = true;
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Made by Eggy", doSomething);
Functioned2 = new ContextMenuItem("Made by Midget", doSomething2);
Functioned3 = new ContextMenuItem("MoFunZone.com - Play More Games", doSomething3);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
MENU.customItems.push(Functioned3);
_root.menu = MENU;
Frame 4
function __com_mochibot__(swfid, mc, lv, trk) {
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=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : "");
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);
}
return(res);
}
stop();
if (_root.music == true) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
__com_mochibot__("174e6ec5", this, 10301, true);
Frame 5
stop();
Frame 6
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 495 MovieClip "char" in Frame 6
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
if (_root.flamer.hitter.hitTest(this)) {
_root.dying = true;
this.gotoAndStop(6);
}
}
Instance of Symbol 504 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.char.hitTest(this)) {
_root.level1done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 539 MovieClip in Frame 6
onClipEvent (enterFrame) {
this._x = _root.cam._x - 120;
this._y = _root.cam._y - 120;
}
Instance of Symbol 542 MovieClip "cam" in Frame 6
onClipEvent (load) {
sigh = false;
sigh2 = false;
sigh3 = false;
bob = 0;
bob2 = 0;
bob3 = 0;
}
onClipEvent (enterFrame) {
if (_root.char._x < (this._x - 150)) {
sigh = true;
if (bob >= 10) {
bob = 0;
}
}
if (_root.char._x > (this._x + 150)) {
sigh2 = true;
if (bob2 >= 10) {
bob2 = 0;
}
}
if (_root.char._y > (this._y + 150)) {
sigh3 = true;
if (bob3 >= 10) {
bob3 = 0;
}
}
if ((sigh == true) and (bob < 10)) {
this._x = this._x - 29.7;
bob = bob + 1;
}
if (bob >= 10) {
sigh = false;
}
if ((sigh2 == true) and (bob2 < 10)) {
this._x = this._x + 29.7;
bob2 = bob2 + 1;
}
if (bob2 >= 10) {
sigh2 = false;
}
if ((sigh3 == true) and (bob3 < 10)) {
this._y = this._y + 27.2;
bob3 = bob3 + 1;
}
if (bob3 >= 10) {
sigh3 = false;
}
}
Frame 7
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 650 MovieClip "char" in Frame 7
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
}
Instance of Symbol 504 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (_root.char.hitTest(this)) {
_root.level2done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 539 MovieClip in Frame 7
onClipEvent (enterFrame) {
this._x = _root.cam._x - 110;
this._y = _root.cam._y - 120;
}
Instance of Symbol 542 MovieClip "cam" in Frame 7
onClipEvent (load) {
sigh = false;
sigh2 = false;
sigh3 = false;
bob = 0;
bob2 = 0;
bob3 = 0;
}
onClipEvent (enterFrame) {
if (_root.char._x < (this._x - 150)) {
sigh = true;
if (bob >= 10) {
bob = 0;
}
}
if (_root.char._x > (this._x + 150)) {
sigh2 = true;
if (bob2 >= 10) {
bob2 = 0;
}
}
if (_root.char._y > (this._y + 150)) {
sigh3 = true;
if (bob3 >= 10) {
bob3 = 0;
}
}
if ((sigh == true) and (bob < 10)) {
this._x = this._x - 29.7;
bob = bob + 1;
}
if (bob >= 10) {
sigh = false;
}
if ((sigh2 == true) and (bob2 < 10)) {
this._x = this._x + 29.7;
bob2 = bob2 + 1;
}
if (bob2 >= 10) {
sigh2 = false;
}
if ((sigh3 == true) and (bob3 < 10)) {
this._y = this._y + 29.7;
bob3 = bob3 + 1;
}
if (bob3 >= 10) {
sigh3 = false;
}
}
Frame 8
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 650 MovieClip "char" in Frame 8
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
if (_x <= 90) {
_root.cam._x = _root.cam._x + 1188;
_x = 1282;
}
if (_x >= 1283) {
_root.cam._x = _root.cam._x - 1188;
_x = 91;
}
if (_y >= 1050) {
_root.cam._y = _root.cam._y - 1188;
_y = -138;
}
}
Instance of Symbol 504 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (_root.char.hitTest(this)) {
_root.level3done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 504 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (_root.char.hitTest(_x, _y, true)) {
_root.level2done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 504 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (_root.char.hitTest(_x, _y, true)) {
_root.level2done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 539 MovieClip in Frame 8
onClipEvent (enterFrame) {
this._x = _root.cam._x - 120;
this._y = _root.cam._y - 120;
}
Frame 9
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 738 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_root.char.hitTest(_x, _y, true)) {
_root.level4done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 738 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_root.char.hitTest(_x, _y, true)) {
_root.level4done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 738 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_root.char.hitTest(this)) {
_root.level4done = true;
_root.gotoAndStop(5);
}
}
Frame 10
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 650 MovieClip "char" in Frame 10
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
}
Instance of Symbol 763 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (_root.char.hitTest(this)) {
stopAllSounds();
_root.level5done = true;
_root.gotoAndStop(23);
}
}
Instance of Symbol 542 MovieClip "cam" in Frame 10
onClipEvent (load) {
sigh = false;
sigh2 = false;
sigh3 = false;
sigh4 = false;
bob = 0;
bob2 = 0;
bob3 = 0;
bob4 = 0;
}
onClipEvent (enterFrame) {
if (_root.char._x < (this._x - 150)) {
sigh = true;
if (bob >= 10) {
bob = 0;
}
}
if (_root.char._x > (this._x + 150)) {
sigh2 = true;
if (bob2 >= 10) {
bob2 = 0;
}
}
if (_root.char._y > (this._y + 150)) {
sigh3 = true;
if (bob3 >= 10) {
bob3 = 0;
}
}
if (_root.char._y < (this._y - 150)) {
sigh4 = true;
if (bob4 >= 10) {
bob4 = 0;
}
}
if ((sigh == true) and (bob < 10)) {
this._x = this._x - 29.7;
bob = bob + 1;
}
if (bob >= 10) {
sigh = false;
}
if ((sigh2 == true) and (bob2 < 10)) {
this._x = this._x + 29.7;
bob2 = bob2 + 1;
}
if (bob2 >= 10) {
sigh2 = false;
}
if ((sigh3 == true) and (bob3 < 10)) {
this._y = this._y + 29.7;
bob3 = bob3 + 1;
}
if (bob3 >= 10) {
sigh3 = false;
}
if ((sigh4 == true) and (bob4 < 10)) {
this._y = this._y - 29.7;
bob4 = bob4 + 1;
}
if (bob4 >= 10) {
sigh4 = false;
}
}
Frame 11
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 650 MovieClip "char" in Frame 11
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
}
Frame 12
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Frame 13
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 650 MovieClip "char" in Frame 13
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
if (_x <= 90) {
_root.cam._x = _root.cam._x + 1485;
_x = 1572;
}
if (_x >= 1573) {
_root.cam._x = _root.cam._x - 1485;
_x = 91;
}
if (_y >= 650) {
_root.cam._y = _root.cam._y - 1485;
_y = -823;
}
}
Instance of Symbol 542 MovieClip "cam" in Frame 13
onClipEvent (load) {
sigh = false;
sigh2 = false;
sigh3 = false;
bob = 0;
bob2 = 0;
bob3 = 0;
}
onClipEvent (enterFrame) {
if (_root.char._x < (this._x - 150)) {
sigh = true;
if (bob >= 10) {
bob = 0;
}
}
if (_root.char._x > (this._x + 150)) {
sigh2 = true;
if (bob2 >= 10) {
bob2 = 0;
}
}
if (_root.char._y > (this._y + 150)) {
sigh3 = true;
if (bob3 >= 10) {
bob3 = 0;
}
}
if ((sigh == true) and (bob < 10)) {
this._x = this._x - 29.7;
bob = bob + 1;
}
if (bob >= 10) {
sigh = false;
}
if ((sigh2 == true) and (bob2 < 10)) {
this._x = this._x + 29.7;
bob2 = bob2 + 1;
}
if (bob2 >= 10) {
sigh2 = false;
}
if ((sigh3 == true) and (bob3 < 10)) {
this._y = this._y + 29.7;
bob3 = bob3 + 1;
}
if (bob3 >= 10) {
sigh3 = false;
}
}
Frame 14
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Frame 15
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Frame 16
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 650 MovieClip "char" in Frame 16
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
if (_x <= 90) {
_root.cam._x = _root.cam._x + 2079;
_x = 2165;
}
if (_x >= 2166) {
_root.cam._x = _root.cam._x - 2079;
_x = 91;
}
if (_y >= 2175) {
_root.cam._y = _root.cam._y - 2079;
_y = 90;
}
}
Frame 17
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 650 MovieClip "char" in Frame 17
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
if (_x <= 90) {
_root.cam._x = _root.cam._x + 2079;
_x = 2165;
}
if (_x >= 2166) {
_root.cam._x = _root.cam._x - 2079;
_x = 91;
}
if (_y >= 2175) {
_root.cam._y = _root.cam._y - 2079;
_y = 90;
}
}
Frame 18
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Frame 19
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 650 MovieClip "char" in Frame 19
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
if (_x <= 90) {
_root.cam._x = _root.cam._x + 2079;
_x = 2165;
}
if (_x >= 2166) {
_root.cam._x = _root.cam._x - 2079;
_x = 91;
}
if (_y >= 2175) {
_root.cam._y = _root.cam._y - 2079;
_y = 90;
}
}
Frame 20
stop();
stopAllSounds();
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
Instance of Symbol 821 MovieClip "char" in Frame 20
onClipEvent (load) {
_root.backtostartX = _x;
_root.backtostartY = _y;
_root.cambacktostartX = _root.cam._x;
_root.cambacktostartY = _root.cam._y;
_root.dying = false;
_root.gravity = 0;
jumpheight = 12;
speed = 5;
rightface = this._xscale;
}
onClipEvent (enterFrame) {
_root.gravity++;
if (_root.gravity >= 20) {
_root.gravity = 20;
}
this._y = this._y + _root.gravity;
while (_root.ground.groundin.hitTest(this._x, this._y, true)) {
this._y--;
_root.gravity = 0;
}
if ((Key.isDown(38) and _root.ground.groundin.hitTest(this._x, this._y + 3, true)) and (_root.dying == false)) {
_root.gravity = -jumpheight;
this._y = this._y - 4;
this.gotoAndStop(4);
}
if ((Key.isDown(39) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x + speed;
this._xscale = rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((Key.isDown(37) and (_currentframe != 5)) and (_root.dying == false)) {
this._x = this._x - speed;
this._xscale = -rightface;
if (_root.ground.groundin.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(2);
} else if (_root.ground.groundin.hitTest(!this)) {
this.gotoAndStop(1);
}
} else if ((_root.ground.groundin.hitTest(this._x, this._y + 3, true) and (!Key.isDown(40))) and (_root.dying == false)) {
this.gotoAndStop(1);
}
if (_root.ground.groundin.hitTest(_x + 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x + 20, _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.groundin.hitTest(_x - 20, _y - (_height / 2), true) || (_root.ground.groundin.hitTest(_x - 20, _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.groundin.hitTest(_x, _y - _height, true)) {
_root.gravity = 2;
}
if ((Key.isDown(40) and _root.ground.groundin.hitTest(_x, _y + 3, true)) and (_root.dying == false)) {
this.gotoAndStop(5);
}
if (_x <= 90) {
_root.cam._x = _root.cam._x + 2673;
_x = 2765;
}
if (_x >= 2766) {
_root.cam._x = _root.cam._x - 2673;
_x = 91;
}
if (_y >= 2770) {
_root.cam._y = _root.cam._y - 2673;
_y = 80;
}
}
Frame 21
stop();
Instance of Symbol 830 MovieClip "quilsel" in Frame 21
onClipEvent (enterFrame) {
if (_quality == "LOW") {
_root.quilsel.gotoAndStop(3);
} else if (_quality == "MEDIUM") {
_root.quilsel.gotoAndStop(2);
} else if (_quality == "HIGH") {
_root.quilsel.gotoAndStop(1);
}
}
Instance of Symbol 524 MovieClip "musicsel" in Frame 21
onClipEvent (enterFrame) {
if (_root.music == true) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Frame 22
stop();
Frame 23
stop();
Symbol 30 MovieClip Frame 11
_parent.gotoAndStop(2);
Symbol 40 MovieClip Frame 1
this.onEnterFrame = function () {
bytesloaded = Math.round(_root.getBytesLoaded());
bytestotal = Math.round(_root.getBytesTotal());
percent = bytesloaded / bytestotal;
barmask._xscale = percent * 100;
};
Symbol 72 MovieClip Frame 1
if (Math.random() > 0.5) {
_xscale = (-_xscale);
_x = (_x - _parent.shiftamt);
}
Symbol 72 MovieClip Frame 90
if (_parent.isloaded) {
_parent.gotoAndStop(10);
} else {
thenextframe = Math.ceil(Math.random() * 8) + 1;
if (thenextframe == _parent._currentframe) {
_parent.nextFrame();
} else {
_parent.gotoAndStop(thenextframe);
}
}
Symbol 83 MovieClip Frame 1
if (Math.random() > 0.5) {
_xscale = (-_xscale);
_x = (_x - _parent.shiftamt);
}
Symbol 83 MovieClip Frame 90
if (_parent.isloaded) {
_parent.gotoAndStop(10);
} else {
thenextframe = Math.ceil(Math.random() * 8) + 1;
if (thenextframe == _parent._currentframe) {
_parent.nextFrame();
} else {
_parent.gotoAndStop(thenextframe);
}
}
Symbol 91 MovieClip Frame 1
if (Math.random() > 0.5) {
_xscale = (-_xscale);
_x = (_x - _parent.shiftamt);
}
Symbol 91 MovieClip Frame 90
if (_parent.isloaded) {
_parent.gotoAndStop(10);
} else {
thenextframe = Math.ceil(Math.random() * 8) + 1;
if (thenextframe == _parent._currentframe) {
_parent.nextFrame();
} else {
_parent.gotoAndStop(thenextframe);
}
}
Symbol 99 MovieClip Frame 1
if (Math.random() > 0.5) {
_xscale = (-_xscale);
_x = (_x - _parent.shiftamt);
}
Symbol 99 MovieClip Frame 90
if (_parent.isloaded) {
_parent.gotoAndStop(10);
} else {
thenextframe = Math.ceil(Math.random() * 8) + 1;
if (thenextframe == _parent._currentframe) {
_parent.nextFrame();
} else {
_parent.gotoAndStop(thenextframe);
}
}
Symbol 107 MovieClip Frame 1
if (Math.random() > 0.5) {
_xscale = (-_xscale);
_x = (_x - _parent.shiftamt);
}
Symbol 107 MovieClip Frame 90
if (_parent.isloaded) {
_parent.gotoAndStop(10);
} else {
thenextframe = Math.ceil(Math.random() * 8) + 1;
if (thenextframe == _parent._currentframe) {
_parent.nextFrame();
} else {
_parent.gotoAndStop(thenextframe);
}
}
Symbol 115 MovieClip Frame 1
if (Math.random() > 0.5) {
_xscale = (-_xscale);
_x = (_x - _parent.shiftamt);
}
Symbol 115 MovieClip Frame 90
if (_parent.isloaded) {
_parent.gotoAndStop(10);
} else {
thenextframe = Math.ceil(Math.random() * 8) + 1;
if (thenextframe == _parent._currentframe) {
_parent.nextFrame();
} else {
_parent.gotoAndStop(thenextframe);
}
}
Symbol 123 MovieClip Frame 1
if (Math.random() > 0.5) {
_xscale = (-_xscale);
_x = (_x - _parent.shiftamt);
}
Symbol 123 MovieClip Frame 90
if (_parent.isloaded) {
_parent.gotoAndStop(10);
} else {
thenextframe = Math.ceil(Math.random() * 8) + 1;
if (thenextframe == _parent._currentframe) {
_parent.nextFrame();
} else {
_parent.gotoAndStop(thenextframe);
}
}
Symbol 131 MovieClip Frame 1
if (Math.random() > 0.5) {
_xscale = (-_xscale);
_x = (_x - _parent.shiftamt);
}
Symbol 131 MovieClip Frame 90
if (_parent.isloaded) {
_parent.gotoAndStop(10);
} else {
thenextframe = Math.ceil(Math.random() * 8) + 1;
if (thenextframe == _parent._currentframe) {
_parent.gotoAndStop(2);
} else {
_parent.gotoAndStop(thenextframe);
}
}
Symbol 138 MovieClip Frame 133
_root.play();
Symbol 139 MovieClip Frame 1
stop();
_root.stop();
shiftamt = 17;
isloaded = false;
this.onEnterFrame = function () {
bytesloaded = Math.round(_root.getBytesLoaded());
bytestotal = Math.round(_root.getBytesTotal());
percent = bytesloaded / bytestotal;
if (bytesloaded == bytestotal) {
isloaded = true;
}
};
this.onRelease = function () {
getURL ("http://www.mofunzone.com/", "_blank");
};
Symbol 161 Button
on (press) {
if (_root.waitmenu._currentframe == 103) {
_root.nextFrame();
}
}
Symbol 165 MovieClip Frame 35
stop();
Instance of Symbol 162 MovieClip in Symbol 165 MovieClip Frame 35
onClipEvent (load) {
gotoAndPlay (2);
}
Symbol 173 Button
on (press) {
if (_root.waitmenu._currentframe == 103) {
_root.gotoAndStop(21);
}
}
Symbol 178 Button
on (press) {
if (_root.waitmenu._currentframe == 103) {
_root.gotoAndStop(22);
}
}
Symbol 189 MovieClip Frame 1
Mouse.hide();
Symbol 189 MovieClip Frame 64
stop();
Symbol 197 MovieClip Frame 103
stop();
Mouse.show();
Symbol 200 Button
on (release) {
getURL ("http://www.mofunzone.com/", _blank);
}
Instance of Symbol 162 MovieClip in Symbol 201 MovieClip Frame 1
onClipEvent (load) {
gotoAndPlay (2);
}
Symbol 201 MovieClip Frame 20
stop();
Symbol 202 MovieClip Frame 20
stop();
Symbol 203 MovieClip Frame 20
stop();
Symbol 211 Button
on (press) {
stopAllSounds();
_root.gotoAndStop(6);
}
Symbol 216 Button
on (press) {
stopAllSounds();
_root.gotoAndStop(6);
}
Symbol 217 MovieClip Frame 1
stop();
Symbol 217 MovieClip Frame 2
stop();
Symbol 222 Button
on (press) {
_root.gotoAndStop(7);
}
Symbol 226 Button
on (press) {
_root.gotoAndStop(7);
}
Symbol 227 MovieClip Frame 1
stop();
Symbol 227 MovieClip Frame 2
stop();
Symbol 227 MovieClip Frame 3
stop();
Symbol 232 Button
on (press) {
_root.gotoAndStop(8);
}
Symbol 236 Button
on (press) {
_root.gotoAndStop(8);
}
Symbol 237 MovieClip Frame 1
stop();
Symbol 237 MovieClip Frame 2
stop();
Symbol 237 MovieClip Frame 3
stop();
Symbol 241 Button
on (press) {
_root.gotoAndStop(9);
}
Symbol 245 Button
on (press) {
_root.gotoAndStop(9);
}
Symbol 246 MovieClip Frame 1
stop();
Symbol 246 MovieClip Frame 2
stop();
Symbol 246 MovieClip Frame 3
stop();
Symbol 250 Button
on (press) {
_root.gotoAndStop(10);
}
Symbol 254 Button
on (press) {
_root.gotoAndStop(10);
}
Symbol 255 MovieClip Frame 1
stop();
Symbol 255 MovieClip Frame 2
stop();
Symbol 255 MovieClip Frame 3
stop();
Instance of Symbol 217 MovieClip in Symbol 256 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level1done == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 227 MovieClip in Symbol 256 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level1done == true) and (_root.level2done == false)) {
this.gotoAndStop(2);
} else if ((_root.level1done == true) and (_root.level2done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 237 MovieClip in Symbol 256 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level2done == true) and (_root.level3done == false)) {
this.gotoAndStop(2);
} else if ((_root.level2done == true) and (_root.level3done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 246 MovieClip in Symbol 256 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level3done == true) and (_root.level4done == false)) {
this.gotoAndStop(2);
} else if ((_root.level3done == true) and (_root.level4done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 255 MovieClip in Symbol 256 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level4done == true) and (_root.level5done == false)) {
this.gotoAndStop(2);
} else if ((_root.level4done == true) and (_root.level5done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Symbol 260 Button
on (press) {
_root.gotoAndStop(11);
}
Symbol 263 Button
on (press) {
_root.gotoAndStop(11);
}
Symbol 264 MovieClip Frame 1
stop();
Symbol 264 MovieClip Frame 2
stop();
Symbol 269 Button
on (press) {
_root.gotoAndStop(12);
}
Symbol 273 Button
on (press) {
_root.gotoAndStop(12);
}
Symbol 274 MovieClip Frame 1
stop();
Symbol 274 MovieClip Frame 2
stop();
Symbol 274 MovieClip Frame 3
stop();
Symbol 278 Button
on (press) {
_root.gotoAndStop(13);
}
Symbol 282 Button
on (press) {
_root.gotoAndStop(13);
}
Symbol 283 MovieClip Frame 1
stop();
Symbol 283 MovieClip Frame 2
stop();
Symbol 283 MovieClip Frame 3
stop();
Symbol 287 Button
on (press) {
_root.gotoAndStop(14);
}
Symbol 291 Button
on (press) {
_root.gotoAndStop(14);
}
Symbol 292 MovieClip Frame 1
stop();
Symbol 292 MovieClip Frame 2
stop();
Symbol 292 MovieClip Frame 3
stop();
Symbol 295 Button
on (press) {
_root.gotoAndStop(15);
}
Symbol 299 Button
on (press) {
_root.gotoAndStop(15);
}
Symbol 300 MovieClip Frame 1
stop();
Symbol 300 MovieClip Frame 2
stop();
Symbol 300 MovieClip Frame 3
stop();
Instance of Symbol 264 MovieClip in Symbol 301 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level6done == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 274 MovieClip in Symbol 301 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level6done == true) and (_root.level7done == false)) {
this.gotoAndStop(2);
} else if ((_root.level6done == true) and (_root.level7done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 283 MovieClip in Symbol 301 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level7done == true) and (_root.level8done == false)) {
this.gotoAndStop(2);
} else if ((_root.level7done == true) and (_root.level8done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 292 MovieClip in Symbol 301 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level8done == true) and (_root.level9done == false)) {
this.gotoAndStop(2);
} else if ((_root.level8done == true) and (_root.level9done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 300 MovieClip in Symbol 301 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level9done == true) and (_root.level10done == false)) {
this.gotoAndStop(2);
} else if ((_root.level9done == true) and (_root.level10done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Symbol 305 Button
on (press) {
_root.gotoAndStop(16);
}
Symbol 308 Button
on (press) {
_root.gotoAndStop(16);
}
Symbol 309 MovieClip Frame 1
stop();
Symbol 309 MovieClip Frame 2
stop();
Symbol 314 Button
on (press) {
_root.gotoAndStop(17);
}
Symbol 318 Button
on (press) {
_root.gotoAndStop(17);
}
Symbol 319 MovieClip Frame 1
stop();
Symbol 319 MovieClip Frame 2
stop();
Symbol 319 MovieClip Frame 3
stop();
Symbol 323 Button
on (press) {
_root.gotoAndStop(18);
}
Symbol 327 Button
on (press) {
_root.gotoAndStop(18);
}
Symbol 328 MovieClip Frame 1
stop();
Symbol 328 MovieClip Frame 2
stop();
Symbol 328 MovieClip Frame 3
stop();
Symbol 332 Button
on (press) {
_root.gotoAndStop(19);
}
Symbol 336 Button
on (press) {
_root.gotoAndStop(19);
}
Symbol 337 MovieClip Frame 1
stop();
Symbol 337 MovieClip Frame 2
stop();
Symbol 337 MovieClip Frame 3
stop();
Symbol 340 Button
on (press) {
_root.gotoAndStop(20);
}
Symbol 344 Button
on (press) {
_root.gotoAndStop(20);
}
Symbol 345 MovieClip Frame 1
stop();
Symbol 345 MovieClip Frame 2
stop();
Symbol 345 MovieClip Frame 3
stop();
Instance of Symbol 309 MovieClip in Symbol 346 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.level11done == true) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 319 MovieClip in Symbol 346 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level11done == true) and (_root.level12done == false)) {
this.gotoAndStop(2);
} else if ((_root.level11done == true) and (_root.level12done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 328 MovieClip in Symbol 346 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level12done == true) and (_root.level13done == false)) {
this.gotoAndStop(2);
} else if ((_root.level12done == true) and (_root.level13done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 337 MovieClip in Symbol 346 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level13done == true) and (_root.level14done == false)) {
this.gotoAndStop(2);
} else if ((_root.level13done == true) and (_root.level14done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 345 MovieClip in Symbol 346 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.level14done == true) and (_root.level15done == false)) {
this.gotoAndStop(2);
} else if ((_root.level14done == true) and (_root.level15done == true)) {
this.gotoAndStop(3);
} else {
this.gotoAndStop(1);
}
}
Symbol 350 Button
on (press) {
stopAllSounds();
_root.gotoAndStop(4);
}
Symbol 352 Button
on (release) {
getURL ("http://www.mofunzone.com/", _blank);
}
Symbol 402 MovieClip Frame 9
stop();
Symbol 458 MovieClip Frame 80
stop();
_root.char._x = _root.backtostartX;
_root.char._y = _root.backtostartY;
_root.cam._x = _root.cambacktostartX;
_root.cam._y = _root.cambacktostartY;
_root.dying = false;
_root.char.gotoAndStop(1);
Symbol 473 MovieClip Frame 50
stop();
_root.char._x = _root.backtostartX;
_root.char._y = _root.backtostartY;
_root.cam._x = _root.cambacktostartX;
_root.cam._y = _root.cambacktostartY;
_root.dying = false;
_root.char.gotoAndStop(1);
Symbol 494 MovieClip Frame 30
stop();
_root.char._x = _root.backtostartX;
_root.char._y = _root.backtostartY;
_root.cam._x = _root.cambacktostartX;
_root.cam._y = _root.cambacktostartY;
_root.dying = false;
_root.char.gotoAndStop(1);
Symbol 495 MovieClip Frame 1
stop();
Symbol 495 MovieClip Frame 2
stop();
Symbol 495 MovieClip Frame 3
stop();
Symbol 495 MovieClip Frame 4
stop();
Symbol 495 MovieClip Frame 5
stop();
Symbol 495 MovieClip Frame 6
stop();
Symbol 495 MovieClip Frame 7
stop();
Symbol 495 MovieClip Frame 8
stop();
Instance of Symbol 513 MovieClip in Symbol 521 MovieClip Frame 41
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.dying = true;
_root.char.gotoAndStop(6);
}
}
Symbol 524 MovieClip Frame 1
stop();
Symbol 524 MovieClip Frame 2
stop();
Symbol 526 Button
on (press) {
_root.music = true;
dice = random(4) + 1;
if ((_root.music == true) and (dice == 1)) {
someSound = new Sound();
someSound.attachSound("forsaken", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 2)) {
someSound = new Sound();
someSound.attachSound("haunted", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 3)) {
someSound = new Sound();
someSound.attachSound("cnc", this);
someSound.start(0, 99999999);
}
if ((_root.music == true) and (dice == 4)) {
someSound = new Sound();
someSound.attachSound("dream", this);
someSound.start(0, 99999999);
}
}
Symbol 528 Button
on (press) {
_root.music = false;
stopAllSounds();
}
Instance of Symbol 524 MovieClip "musicsel" in Symbol 539 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.music == true) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
}
Instance of Symbol 538 MovieClip in Symbol 539 MovieClip Frame 1
on (rollOver) {
this._alpha = 100;
}
on (rollOut) {
this._alpha = 25;
}
on (release) {
getURL ("http://www.mofunzone.com/", _blank);
}
Symbol 542 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
parentColor.setTransform(camColor.getTransform());
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 567 MovieClip Frame 30
stop();
_root.char._x = _root.backtostartX;
_root.char._y = _root.backtostartY;
_root.cam._x = _root.cambacktostartX;
_root.cam._y = _root.cambacktostartY;
_root.dying = false;
_root.char.gotoAndStop(1);
Symbol 606 MovieClip Frame 45
stop();
_root.char._x = _root.backtostartX;
_root.char._y = _root.backtostartY;
_root.cam._x = _root.cambacktostartX;
_root.cam._y = _root.cambacktostartY;
_root.dying = false;
_root.char.gotoAndStop(1);
Symbol 626 MovieClip Frame 45
stop();
_root.char._x = _root.backtostartX;
_root.char._y = _root.backtostartY;
_root.cam._x = _root.cambacktostartX;
_root.cam._y = _root.cambacktostartY;
_root.dying = false;
_root.char.gotoAndStop(1);
Symbol 641 MovieClip Frame 30
stop();
_root.char._x = _root.backtostartX;
_root.char._y = _root.backtostartY;
_root.cam._x = _root.cambacktostartX;
_root.cam._y = _root.cambacktostartY;
_root.dying = false;
_root.char.gotoAndStop(1);
Symbol 649 MovieClip Frame 30
stop();
_root.char._x = _root.backtostartX;
_root.char._y = _root.backtostartY;
_root.cam._x = _root.cambacktostartX;
_root.cam._y = _root.cambacktostartY;
_root.dying = false;
_root.char.gotoAndStop(1);
Symbol 650 MovieClip Frame 1
stop();
Symbol 650 MovieClip Frame 2
stop();
Symbol 650 MovieClip Frame 3
stop();
Symbol 650 MovieClip Frame 4
stop();
Symbol 650 MovieClip Frame 5
stop();
Symbol 650 MovieClip Frame 6
stop();
Symbol 650 MovieClip Frame 7
stop();
Symbol 650 MovieClip Frame 8
stop();
Symbol 650 MovieClip Frame 9
stop();
Symbol 650 MovieClip Frame 10
stop();
Symbol 650 MovieClip Frame 11
stop();
Symbol 650 MovieClip Frame 12
stop();
Instance of Symbol 668 MovieClip in Symbol 674 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.dying = true;
_root.char.gotoAndStop(7);
}
}
Instance of Symbol 688 MovieClip in Symbol 692 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.dying = true;
_root.char.gotoAndStop(8);
}
}
Instance of Symbol 705 MovieClip in Symbol 714 MovieClip Frame 12
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.dying = true;
_root.char.gotoAndStop(9);
}
}
Instance of Symbol 727 MovieClip in Symbol 736 MovieClip Frame 46
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.dying = true;
_root.char.gotoAndStop(11);
}
}
Instance of Symbol 727 MovieClip in Symbol 736 MovieClip Frame 51
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.dying = true;
_root.char.gotoAndStop(11);
}
}
Instance of Symbol 749 MovieClip in Symbol 753 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this)) {
_root.dying = true;
_root.char.gotoAndStop(10);
}
}
Instance of Symbol 756 MovieClip in Symbol 761 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.dying = true;
_root.char.gotoAndStop(12);
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 762 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
if (_root.ground._rotation < 180) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 4;
}
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 788 MovieClip Frame 1
onClipEvent (load) {
holder = 0;
}
onClipEvent (enterFrame) {
if (holder < 90) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 5;
holder = holder + 5;
}
}
if (!_root.char.hitTest(this)) {
holder = 0;
}
}
Instance of Symbol 763 MovieClip in Symbol 788 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.level6done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 787 MovieClip in Symbol 788 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.char.hitTest(this) and (_root.dying == false)) and (_root.ground._rotation == 0)) {
_root.gravity = -45;
_root.char._y = _root.char._y - 10;
_root.char.gotoAndStop(4);
}
}
Instance of Symbol 787 MovieClip in Symbol 788 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.char.hitTest(this) and (_root.dying == false)) and (_root.ground._rotation == 90)) {
_root.gravity = -45;
_root.char._y = _root.char._y - 10;
_root.char.gotoAndStop(4);
}
}
Instance of Symbol 787 MovieClip in Symbol 788 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.char.hitTest(this) and (_root.dying == false)) and (_root.ground._rotation == -90)) {
_root.gravity = -45;
_root.char._y = _root.char._y - 10;
_root.char.gotoAndStop(4);
}
}
Instance of Symbol 787 MovieClip in Symbol 788 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.char.hitTest(this) and (_root.dying == false)) and (_root.ground._rotation == 180)) {
_root.gravity = -45;
_root.char._y = _root.char._y - 10;
_root.char.gotoAndStop(4);
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 792 MovieClip Frame 1
onClipEvent (load) {
holder = 0;
}
onClipEvent (enterFrame) {
if (holder < 90) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 5;
holder = holder + 5;
}
}
if (!_root.char.hitTest(this)) {
holder = 0;
}
}
Instance of Symbol 763 MovieClip in Symbol 792 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.level7done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 787 MovieClip in Symbol 792 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.char.hitTest(this) and (_root.dying == false)) and (_root.ground._rotation == 0)) {
_root.gravity = -45;
_root.char._y = _root.char._y - 10;
_root.char.gotoAndStop(4);
}
}
Instance of Symbol 787 MovieClip in Symbol 792 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.char.hitTest(this) and (_root.dying == false)) and (_root.ground._rotation == 90)) {
_root.gravity = -45;
_root.char._y = _root.char._y - 10;
_root.char.gotoAndStop(4);
}
}
Instance of Symbol 787 MovieClip in Symbol 792 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.char.hitTest(this) and (_root.dying == false)) and (_root.ground._rotation == -90)) {
_root.gravity = -45;
_root.char._y = _root.char._y - 10;
_root.char.gotoAndStop(4);
}
}
Instance of Symbol 787 MovieClip in Symbol 792 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.char.hitTest(this) and (_root.dying == false)) and (_root.ground._rotation == 180)) {
_root.gravity = -45;
_root.char._y = _root.char._y - 10;
_root.char.gotoAndStop(4);
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 795 MovieClip Frame 1
onClipEvent (load) {
holder = 0;
}
onClipEvent (enterFrame) {
if (holder < 90) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 5;
holder = holder + 5;
}
}
if (!_root.char.hitTest(this)) {
holder = 0;
}
}
Instance of Symbol 794 MovieClip in Symbol 795 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.level8done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 798 MovieClip Frame 1
onClipEvent (load) {
holder = 0;
}
onClipEvent (enterFrame) {
if (holder < 90) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 5;
holder = holder + 5;
}
}
if (!_root.char.hitTest(this)) {
holder = 0;
}
}
Instance of Symbol 794 MovieClip in Symbol 798 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.level9done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 804 MovieClip Frame 1
onClipEvent (load) {
holder = 0;
}
onClipEvent (enterFrame) {
if (holder < 90) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 5;
holder = holder + 5;
}
}
if (!_root.char.hitTest(this)) {
holder = 0;
}
}
Instance of Symbol 801 MovieClip in Symbol 804 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
stopAllSounds();
_root.level10done = true;
_root.gotoAndStop(23);
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 807 MovieClip Frame 1
onClipEvent (load) {
holder = 0;
}
onClipEvent (enterFrame) {
if (holder < 90) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 5;
holder = holder + 5;
}
}
if (!_root.char.hitTest(this)) {
holder = 0;
}
}
Instance of Symbol 794 MovieClip in Symbol 807 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.level11done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 812 MovieClip Frame 1
onClipEvent (load) {
holder = 0;
}
onClipEvent (enterFrame) {
if (holder < 90) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 5;
holder = holder + 5;
}
}
if (!_root.char.hitTest(this)) {
holder = 0;
}
}
Instance of Symbol 794 MovieClip in Symbol 812 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.level12done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 794 MovieClip in Symbol 815 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.level13done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 794 MovieClip in Symbol 819 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.level14done = true;
_root.gotoAndStop(5);
}
}
Instance of Symbol 747 MovieClip "spinner" in Symbol 819 MovieClip Frame 1
onClipEvent (load) {
holder = 0;
}
onClipEvent (enterFrame) {
if (holder < 90) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
_root.char._x = _root.ground.spinner._x + _root.ground._x;
_root.char._y = _root.ground.spinner._y + _root.ground._y;
_root.gravity = 0;
_root.ground._rotation = _root.ground._rotation + 5;
holder = holder + 5;
}
}
if (!_root.char.hitTest(this)) {
holder = 0;
}
}
Symbol 821 MovieClip Frame 1
stop();
Symbol 821 MovieClip Frame 2
stop();
Symbol 821 MovieClip Frame 3
stop();
Symbol 821 MovieClip Frame 4
stop();
Symbol 821 MovieClip Frame 5
stop();
Symbol 821 MovieClip Frame 6
stop();
Symbol 821 MovieClip Frame 7
stop();
Instance of Symbol 794 MovieClip in Symbol 824 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.char.hitTest(this) and (_root.dying == false)) {
stopAllSounds();
_root.level14done = true;
_root.level15done = true;
_root.gotoAndStop(23);
}
}
Symbol 830 MovieClip Frame 1
stop();
Symbol 830 MovieClip Frame 2
stop();
Symbol 830 MovieClip Frame 3
stop();
Symbol 832 Button
on (press) {
_quality = "MEDIUM";
}
Symbol 834 Button
on (press) {
_quality = "HIGH";
}
Symbol 836 Button
on (press) {
_quality = "LOW";
}
Symbol 837 Button
on (press) {
_root.music = true;
}
Symbol 874 MovieClip Frame 39
stop();
Symbol 903 Button
on (press) {
stopAllSounds();
_root.gotoAndStop(4);
}
Symbol 904 Button
on (release) {
getURL ("http://www.mofunzone.com/", _blank);
}
Symbol 905 MovieClip Frame 349
stop();