Frame 1
stop();
Instance of Symbol 20 MovieClip in Frame 1
on (press) {
getURL ("http://www.gamegecko.com", "_blank");
}
Instance of Symbol 23 MovieClip in Frame 1
onClipEvent (enterFrame) {
val1 = _root.getBytesLoaded();
val2 = _root.getBytesTotal();
if (val1 == val2) {
_root.gotoAndStop(2);
}
this._xscale = (val1 * 100) / val2;
}
Frame 2
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);
}
return(res);
}
__com_mochibot__("c8098355", this, 10301);
Mouse.show();
if (besttime == undefined) {
besttime = 0;
}
onMouseDown = function () {
if (ads.hitTest(_xmouse, _ymouse, true)) {
} else {
gotoAndStop (3);
}
};
if (juke == undefined) {
juke = new Sound();
juke.attachSound("music");
juke.start(0, 10000);
}
musicenabled = true;
nonhold = true;
onEnterFrame = function () {
if (Key.isDown(8) && (nonhold == true)) {
nonhold = false;
if (musicenabled == true) {
musicenabled = !musicenabled;
juke.stop("music");
} else {
juke.attachSound("music");
juke.start(0, 10000);
musicenabled = !musicenabled;
}
} else if (!Key.isDown(8)) {
nonhold = true;
}
};
Instance of Symbol 25 MovieClip in Frame 2
onClipEvent (enterFrame) {
_x = (_x - ((_root._xmouse - 200) / 80));
_y = (_y - ((_root._ymouse - 200) / 80));
while (_x > 0) {
_x = (_x - 400);
}
while (_y > 0) {
_y = (_y - 400);
}
while (_x < -400) {
_x = (_x + 400);
}
while (_y < -400) {
_y = (_y + 400);
}
}
Instance of Symbol 27 MovieClip in Frame 2
onClipEvent (enterFrame) {
_x = (_x - ((_root._xmouse - 200) / 40));
_y = (_y - ((_root._ymouse - 200) / 40));
while (_x > 0) {
_x = (_x - 400);
}
while (_y > 0) {
_y = (_y - 400);
}
while (_x < -400) {
_x = (_x + 400);
}
while (_y < -400) {
_y = (_y + 400);
}
}
Frame 3
stop();
playbumpnoise = function () {
juke.attachSound("bump0" + String(random(3) + 1));
juke.start(0, 1);
};
playboom = function () {
juke.attachSound("splodesound");
juke.start(0, 1);
};
restart = function () {
removeall = function () {
removeMovieClip(diedtext);
removeMovieClip(helptext);
removeMovieClip(splode);
while (w > 0) {
removeMovieClip(eval ("wall" + w));
w--;
}
onEnterFrame = undefined;
onMouseDown = undefined;
};
onMouseDown = function () {
if (gamestarted == false) {
if ((!wallholder.hitTest(_root._xmouse, _root._ymouse, true)) && (!((((_root._xmouse > 400) || (_root._xmouse < 0)) || (_root._ymouse > 400)) || (_root._ymouse < 0)))) {
gamespeed = 0.5;
gamestarted = true;
removeMovieClip(helptext);
time = 0;
}
} else if (died == true) {
if (!diedtext.ads.hitTest(_root._xmouse, _root._ymouse, true)) {
removeall();
restart();
}
}
};
Mouse.show();
died = undefined;
gamestarted = false;
w = 0;
gamespeed = 0;
attachMovie("helptext", "helptext", 9000);
helptext._x = 200;
helptext._y = 200;
onEnterFrame = function () {
if (Key.isDown(27)) {
removeall();
gotoAndStop ("menuscreen");
}
time++;
if ((gamespeed > 0) && (gamespeed < 300)) {
gamespeed = gamespeed + 0.1;
if (gamespeed < 10) {
gamespeed = gamespeed + 1;
}
}
};
while (w < 6) {
newWall = wallholder.mask.attachMovie("wall", "wall" + w, w);
newWall.gotoAndStop(w + 1);
newWall._rotation = random(360);
newWall._x = random(300) + 50;
newWall._y = random(300) + 50;
newWall.speedmulti = random(20) + 10;
newWall.xmove = (random(2) * 2) - 1;
newWall.ymove = (random(2) * 2) - 1;
newWall.onEnterFrame = function () {
i = 0;
if (gamespeed > 0) {
while (i < 5) {
this.dx = ((this.xmove * (gamespeed / 10)) * (this.speedmulti / 10)) / 5;
this.dy = ((this.ymove * (gamespeed / 10)) * (this.speedmulti / 10)) / 5;
this._x = this._x + this.dx;
this._y = this._y + this.dy;
i++;
if ((this._x > 400) || (this._x < 0)) {
this.xmove = -this.xmove;
playbumpnoise();
}
if ((this._y > 400) || (this._y < 0)) {
this.ymove = -this.ymove;
playbumpnoise();
}
if (this._parent._parent.hitTest(_root._xmouse, _root._ymouse, true)) {
lose();
}
if ((((_root._xmouse > 400) || (_root._xmouse < 0)) || (_root._ymouse > 400)) || (_root._ymouse < 0)) {
lose();
}
}
}
};
w++;
}
lose = function () {
if (died == undefined) {
died = true;
attachMovie("splode", "splode", 100);
playboom();
Mouse.hide();
splode._x = _xmouse;
splode._y = _ymouse;
gamespeed = 0;
attachMovie("diedtext", "diedtext", 9001);
diedtext._x = 200;
diedtext._y = 200;
if (time > besttime) {
besttime = time;
beattimero = "<font color='#88FF88'>";
beattimerc = "</font>";
} else {
beattimero = "";
beattimerc = "";
}
statustext = ((((((((("YOU LASTED " + beattimero) + (Math.round(time * 3) / 100)) + " SECONDS!") + beattimerc) + "\rYOUR BEST TIME IS ") + beattimero) + (Math.round(besttime * 3) / 100)) + " SECONDS!") + beattimerc) + "\rPRESS ESCAPE TO RETURN TO MENU, OR CLICK TO TRY AGAIN!";
}
};
};
restart();
Instance of Symbol 7 MovieClip in Symbol 13 MovieClip Frame 1
on (press) {
getURL ("http://www.gamesforwebsites.com", "_blank");
}
Instance of Symbol 9 MovieClip in Symbol 13 MovieClip Frame 1
on (press) {
getURL ("http://www.gamegecko.com", "_blank");
}
Instance of Symbol 12 MovieClip in Symbol 13 MovieClip Frame 1
on (press) {
getURL ("http://www.gamegecko.com", "_blank");
}
Symbol 37 MovieClip Frame 1
maskbg.gotoAndPlay(90);
Symbol 62 MovieClip [splode] Frame 45
removeMovieClip(this);
Mouse.show();
Symbol 70 MovieClip Frame 1
stop();