Frame 1
function location_check() {
if (_url.toLowerCase().indexOf("uploads.ungrounded") == -1) {
coveritall.gotoAndStop(2);
_root.stop();
} else {
play();
}
}
sfx = 0;
_root.gameid = 14;
if (!debug) {
location_check();
}
function addmeup(speedmult, thisclip) {
_root.score = Math.round(_root.score + int(speedmult * 20));
_global.speedmult = speedmult + 0.07;
if (_root.schrodingerlives > 0) {
_root.square2._xscale = _root.square2._xscale * 1.01;
_root.square2._yscale = _root.square2._xscale;
}
}
elasticScale = function (target, accel, convert, thisclip) {
if (!xScale) {
xScale = 0;
}
if (!yScale) {
yScale = 0;
}
xScale = (xScale * accel) + ((target - thisclip._xscale) * convert);
yScale = (yScale * accel) + ((target - thisclip._yscale) * convert);
thisclip._xscale = thisclip._xscale + xScale;
thisclip._yscale = thisclip._yscale + yScale;
};
killingcat = function (xposition, yposition) {
if (_root.oktodieagain == 0) {
if (_root.schrodingerlives > 1) {
_root.schrodingerlives--;
_global.FXPlayer("badquark");
_root.showvalvisual(_root.schrodingerlives, xposition, yposition);
} else {
_root.schrodingerlives--;
}
}
};
showvalvisual = function (thisamount, thisxposition, thisyposition) {
thislevel = this.getNextHighestDepth();
duplicateMovieClip ("winvisual", "winshow" + thislevel, thislevel);
setProperty("winshow" + thislevel, _x , thisxposition);
setProperty("winshow" + thislevel, _y , thisyposition);
Set(("winshow" + thislevel) + ".myvalue", thisamount);
_root.oktodieagain = 1;
_root["winshow" + thislevel].onEnterFrame = function () {
this._y = this._y - 2;
this._alpha = this._alpha - 2;
if (this._alpha <= 0) {
_root.oktodieagain = 0;
removeMovieClip(this);
}
};
};
bluereset = function (thisclip, top, bottom, left, right) {
if (top == 1) {
thisclip._y = -50;
}
if (bottom == 1) {
thisclip._y = 450;
}
if (left == 1) {
thisclip._x = -50;
}
if (right == 1) {
thisclip._x = 600;
}
if ((top == 1) || (bottom == 1)) {
thisclip._x = random(500);
} else {
thisclip._y = random(450);
}
thisclip.enemySpeed = random(3) + _global.speedmult;
if (thisclip.enemySpeed < 0) {
thisclip.enemySpeed = 0.5;
}
thisclip._xscale = random(50) + 75;
thisclip._yscale = thisclip._xscale;
};
speedcontrol = function (thisspeed) {
enemySpeed = random(3) + thisspeed;
_root.goodr.enemySpeed = enemySpeed;
_root.goodl.enemySpeed = enemySpeed;
_root.goodt.enemySpeed = enemySpeed;
_root.goodb.enemySpeed = enemySpeed;
_root.enemyr.enemySpeed = enemySpeed;
_root.enemyl.enemySpeed = enemySpeed;
_root.enemyt.enemySpeed = enemySpeed;
_root.enemyb.enemySpeed = enemySpeed;
};
_root.oktodieagain = 0;
_root.schrodingerlives = 9;
_global.speedmult = 10;
stop();
Frame 2
_global.globalvolumelevel = 100;
_global.FXPlayer = function (name, volumelevel) {
if (!volumelevel) {
volumelevel = _global.globalvolumelevel;
}
if (!_root[name]) {
mynewdepth = getNextHighestDepth();
mytempclipname = "clip" + mynewdepth;
_root.createEmptyMovieClip(mytempclipname, mynewdepth);
_root[name] = new Sound(mytempclipname);
_root[name].attachSound(name);
}
if (_root.sfx != 1) {
_root[name].setVolume(volumelevel);
_root[name].start();
}
};
_root.gameid = 14;
_global.speedmult = 10;
stop();
Instance of Symbol 78 MovieClip "goodr" in Frame 2
onClipEvent (load) {
_parent.bluereset(this, 0, 0, 0, 1);
}
onClipEvent (enterFrame) {
if (_root.evilsquares == 1) {
this.bad.play();
} else {
this.bad.gotoAndStop(1);
}
if (this._x < -50) {
_parent.bluereset(this, 0, 0, 0, 1);
} else {
this._x = this._x - enemySpeed;
}
if (this.hitTest(_root.square2)) {
if (_root.schrodingerlives > 0) {
if (_root.evilsquares == 1) {
_root.killingcat(this._x, this._y);
} else {
_global.FXPlayer("goodquark");
_parent.bluereset(this, 1, 0, 0, 0);
temp = _global.speedmult;
_parent.addmeup(temp, this);
}
}
}
}
Instance of Symbol 80 MovieClip "enemyr" in Frame 2
onClipEvent (load) {
_parent.bluereset(this, 0, 0, 0, 1);
}
onClipEvent (enterFrame) {
if (this._x < -50) {
_parent.bluereset(this, 0, 0, 0, 1);
} else {
this._x = this._x - enemySpeed;
}
if (this.hitTest(_root.square2)) {
if (_root.invincible != 1) {
_root.killingcat(this._x, this._y);
}
}
}
Instance of Symbol 78 MovieClip "goodt" in Frame 2
onClipEvent (load) {
_parent.bluereset(this, 1, 0, 0, 0);
}
onClipEvent (enterFrame) {
if (_root.evilsquares == 1) {
this.bad.play();
} else {
this.bad.gotoAndStop(1);
}
if (this._y > 500) {
_parent.bluereset(this, 1, 0, 0, 0);
} else {
this._y = this._y + enemySpeed;
}
if (this.hitTest(_root.square2)) {
if (_root.schrodingerlives > 0) {
if (_root.evilsquares == 1) {
_root.killingcat(this._x, this._y);
} else {
_global.FXPlayer("goodquark");
_parent.bluereset(this, 1, 0, 0, 0);
temp = _global.speedmult;
_parent.addmeup(temp, this);
}
}
}
}
Instance of Symbol 78 MovieClip "goodl" in Frame 2
onClipEvent (load) {
_parent.bluereset(this, 0, 0, 1, 0);
}
onClipEvent (enterFrame) {
if (_root.evilsquares == 1) {
this.bad.play();
} else {
this.bad.gotoAndStop(1);
}
if (this._x > 600) {
_parent.bluereset(this, 0, 0, 1, 0);
} else {
this._x = this._x + enemySpeed;
}
if (this.hitTest(_root.square2)) {
if (_root.schrodingerlives > 0) {
if (_root.evilsquares == 1) {
_root.killingcat(this._x, this._y);
} else {
_global.FXPlayer("goodquark");
_parent.bluereset(this, 1, 0, 0, 0);
temp = _global.speedmult;
_parent.addmeup(temp, this);
}
}
}
}
Instance of Symbol 78 MovieClip "goodb" in Frame 2
onClipEvent (load) {
_parent.bluereset(this, 0, 1, 0, 0);
}
onClipEvent (enterFrame) {
if (_root.evilsquares == 1) {
this.bad.play();
} else {
this.bad.gotoAndStop(1);
}
if (this._y < -50) {
_parent.bluereset(this, 0, 1, 0, 0);
} else {
this._y = this._y - enemySpeed;
}
if (this.hitTest(_root.square2)) {
if (_root.schrodingerlives > 0) {
if (_root.evilsquares == 1) {
_root.killingcat(this._x, this._y);
} else {
_global.FXPlayer("goodquark");
_parent.bluereset(this, 1, 0, 0, 0);
temp = _global.speedmult;
_parent.addmeup(temp, this);
}
}
}
}
Instance of Symbol 80 MovieClip "enemyl" in Frame 2
onClipEvent (load) {
_parent.bluereset(this, 0, 0, 1, 0);
}
onClipEvent (enterFrame) {
if (this._x > 600) {
_parent.bluereset(this, 0, 0, 1, 0);
} else {
this._x = this._x + enemySpeed;
}
if (this.hitTest(_root.square2)) {
if (_root.invincible != 1) {
_root.killingcat(this._x, this._y);
}
}
}
Instance of Symbol 80 MovieClip "enemyb" in Frame 2
onClipEvent (load) {
_parent.bluereset(this, 0, 1, 0, 0);
}
onClipEvent (enterFrame) {
if (this._y < -50) {
_parent.bluereset(this, 0, 1, 0, 0);
} else {
this._y = this._y - enemySpeed;
}
if (this.hitTest(_root.square2)) {
if (_root.invincible != 1) {
_root.killingcat(this._x, this._y);
}
}
}
Instance of Symbol 80 MovieClip "enemyt" in Frame 2
onClipEvent (load) {
_parent.bluereset(this, 1, 0, 0, 0);
}
onClipEvent (enterFrame) {
if (this._y > 500) {
_parent.bluereset(this, 1, 0, 0, 0);
} else {
this._y = this._y + enemySpeed;
}
if (this.hitTest(_root.square2)) {
if (_root.invincible != 1) {
_root.killingcat(this._x, this._y);
}
}
}
Instance of Symbol 85 MovieClip "music" in Frame 2
/* no clip actions */
Instance of Symbol 100 MovieClip "playbut" in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_parent.elasticScale(120, 0.8, 0.3, this);
} else {
_parent.elasticScale(100, 0.6, 0.9, this);
}
}
Instance of Symbol 105 MovieClip "helpbut" in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_parent.elasticScale(120, 0.8, 0.3, this);
} else {
_parent.elasticScale(100, 0.6, 0.9, this);
}
}
Frame 3
stop();
Instance of Symbol 126 MovieClip in Frame 3
onClipEvent (load) {
function reset() {
whichside = random(4);
enemySpeed = 3 + speedmult;
if (whichside == 0) {
this._x = -400 * enemySpeed;
this._y = random(400);
}
if (whichside == 1) {
this._x = 550 + (400 * enemySpeed);
this._y = random(400);
}
if (whichside == 2) {
this._y = -400 * enemySpeed;
this._x = random(550);
}
if (whichside == 3) {
this._y = 400 + (enemySpeed * 400);
this._x = random(550);
}
}
reset();
}
onClipEvent (enterFrame) {
if (whichside == 0) {
this._x = this._x + enemySpeed;
if (this._x > 600) {
reset();
}
}
if (whichside == 1) {
this._x = this._x - enemySpeed;
if (this._x < -50) {
reset();
}
}
if (whichside == 2) {
this._y = this._y + enemySpeed;
if (this._y > 500) {
reset();
}
}
if (whichside == 3) {
this._y = this._y - enemySpeed;
if (this._y < -50) {
reset();
}
}
if (this.hitTest(_root.square2)) {
_global.FXPlayer("special");
randpowerdown = random(4);
if ((randpowerdown == 0) && (_root.invincible == 0)) {
_root.powerdowns.gotoAndPlay(2);
_root.goodl.gotoAndPlay(2);
_root.goodr.gotoAndPlay(2);
_root.goodt.gotoAndPlay(2);
_root.goodb.gotoAndPlay(2);
_root.evilsquares = 1;
} else if ((randpowerdown == 1) && (_root.slower == 0)) {
_root.powerdowns.gotoAndPlay(362);
_root.enemyl.enemySpeed = _root.enemyl.enemySpeed + 5;
_root.enemyr.enemySpeed = _root.enemyr.enemySpeed + 5;
_root.enemyt.enemySpeed = _root.enemyt.enemySpeed + 5;
_root.enemyb.enemySpeed = _root.enemyb.enemySpeed + 5;
_root.slower = 2;
} else if (randpowerdown == 2) {
_root.powerdowns.gotoAndPlay(722);
_root.score = _root.score - 1000;
} else if (randpowerdown == 3) {
_root.powerdowns.gotoAndPlay(812);
} else if (((randpowerdown == 0) & (_root.invincible == 1)) | ((randpowerdown == 1) & (_root.slower == 1))) {
_root.powerdowns.gotoAndPlay(722);
_root.score = _root.score - 1000;
}
reset();
}
}
Instance of Symbol 128 MovieClip "powerup" in Frame 3
onClipEvent (load) {
function reset() {
whichside = random(4);
enemySpeed = 3 + speedmult;
if (whichside == 0) {
this._x = -700 * enemySpeed;
this._y = random(400);
}
if (whichside == 1) {
this._x = 550 + (700 * enemySpeed);
this._y = random(400);
}
if (whichside == 2) {
this._y = -700 * enemyspeed;
this._x = random(550);
}
if (whichside == 3) {
this._y = 400 + (enemyspeed * 700);
this._x = random(550);
}
}
reset();
}
onClipEvent (enterFrame) {
if (whichside == 0) {
this._x = this._x + enemySpeed;
if (this._x > 600) {
reset();
}
}
if (whichside == 1) {
this._x = this._x - enemySpeed;
if (this._x < -50) {
reset();
}
}
if (whichside == 2) {
this._y = this._y + enemySpeed;
if (this._y > 500) {
reset();
}
}
if (whichside == 3) {
this._y = this._y - enemySpeed;
if (this._y < -50) {
reset();
}
}
if (this.hitTest(_root.square2)) {
_global.FXPlayer("special");
randpowerup = random(4);
if ((randpowerup == 0) & (_root.evilsquares == 0)) {
_root.powerups.gotoAndPlay(2);
_root.invincible = 1;
} else if ((randpowerup == 1) & (_root.slower == 0)) {
_root.powerups.gotoAndPlay(362);
_root.slower = 1;
} else if (randpowerup == 2) {
_root.powerups.gotoAndPlay(722);
_root.score = _root.score + 1000;
} else if (randpowerup == 3) {
_root.powerups.gotoAndPlay(812);
} else if (((randpowerup == 0) && (_root.evilsquares == 1)) || ((randpowerup == 1) && (_root.slower == 2))) {
_root.powerups.gotoAndPlay(722);
_root.score = _root.score + 1000;
}
reset();
}
}
Instance of Symbol 146 MovieClip "square2" in Frame 3
onClipEvent (load) {
tempx = this._xscale;
tempy = this._yscale;
}
onClipEvent (enterFrame) {
if (_root.schrodingerlives > 0) {
_root.score = _root.score + (0.02 * _global.speedmult);
_root.intscore = int(_root.score);
if (int((_global.speedmult - 1) / 0.07) != 1) {
_root.numsquares = int((_global.speedmult - 1) / 0.07);
}
if (int((_global.speedmult - 1) / 0.07) == 1) {
_root.numsquares = int((_global.speedmult - 1) / 0.07);
}
}
}
onClipEvent (enterFrame) {
if (_root.schrodingerlives > 0) {
if (Key.isDown(40) && (Key.isDown(39))) {
if ((this._y <= 405) && (this._x <= 460)) {
this._y = this._y + _root.playervelocity;
this._x = this._x + _root.playervelocity;
}
this.gotoAndStop("br");
} else if (Key.isDown(40) && (Key.isDown(37))) {
if ((this._y <= 405) && (this._x >= 10)) {
this._y = this._y + _root.playervelocity;
this._x = this._x - _root.playervelocity;
}
this.gotoAndStop("bl");
} else if (Key.isDown(38) && (Key.isDown(39))) {
if ((this._y >= 20) && (this._x <= 460)) {
this._y = this._y - _root.playervelocity;
this._x = this._x + _root.playervelocity;
}
this.gotoAndStop("tr");
} else if (Key.isDown(38) && (Key.isDown(37))) {
if ((this._y >= 20) && (this._x >= 10)) {
this._y = this._y - _root.playervelocity;
this._x = this._x - _root.playervelocity;
}
this.gotoAndStop("tl");
} else if (Key.isDown(40)) {
if (this._y <= 405) {
this._y = this._y + _root.playervelocity;
}
this.gotoAndStop("down");
} else if (Key.isDown(38)) {
if (this._y >= 20) {
this._y = this._y - _root.playervelocity;
}
this.gotoAndStop("up");
} else if (Key.isDown(37)) {
if (this._x >= 10) {
this._x = this._x - _root.playervelocity;
}
this.gotoAndStop("left");
} else if (Key.isDown(39)) {
if (this._x <= 460) {
this._x = this._x + _root.playervelocity;
}
this.gotoAndStop("right");
} else {
gotoAndStop ("wait");
}
} else {
gotoAndStop ("explode");
}
}
Frame 4
stop();
Frame 6
_root.intscore = _root.intscore;
if (int((speedmult - 1) / 0.07) != 1) {
totalsquares = int((speedmult - 1) / 0.07);
}
if (int((speedmult - 1) / 0.07) == 1) {
totalsquares = 1;
}
_global.speedmult = 10;
_root.slower = 0;
_root.invincible = 0;
Instance of Symbol 100 MovieClip "playbut" in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_parent.elasticScale(120, 0.8, 0.3, this);
} else {
_parent.elasticScale(100, 0.6, 0.9, this);
}
}
Instance of Symbol 160 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_parent.elasticScale(120, 0.8, 0.3, this);
} else {
_parent.elasticScale(100, 0.6, 0.9, this);
}
}
Frame 7
_global.speedmult = 10;
stop();
Instance of Symbol 231 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_parent.elasticScale(120, 0.8, 0.3, this);
} else {
_parent.elasticScale(100, 0.6, 0.9, this);
}
}
Frame 8
stop();
Symbol 56 MovieClip Frame 1
stop();
Symbol 56 MovieClip Frame 25
stop();
Symbol 56 MovieClip Frame 50
stop();
Symbol 61 MovieClip Frame 1
_root.totalbytes = _root.getBytesTotal();
_root.bytesloaded = _root.getBytesLoaded();
_root.percent = int((_root.bytesloaded / _root.totalbytes) * 100);
if (_root.percent < 0) {
_root.percent = 0;
}
_root.loader.gotoAndStop(int(_root.percent / 2));
Symbol 61 MovieClip Frame 2
if (_root.securityoff == 0) {
if (_root.bytesloaded >= _root.totalbytes) {
_root.gotoAndStop("mainmenu");
} else {
_root.gotoAndPlay(1);
}
} else {
stop();
}
Symbol 70 Button
on (release) {
if (_root.sfx != 1) {
_root.mybutton.start();
}
getURL ("http://www.isskerberos.org", "_self");
}
Symbol 71 MovieClip Frame 1
_root.securityoff = 0;
stop();
Symbol 71 MovieClip Frame 2
_root.securityoff = 1;
stop();
Symbol 82 Button
on (press) {
if (_root.sfx == 1) {
_root.sfx = 0;
_root.music.gotoAndStop(1);
} else {
_root.sfx = 1;
stopAllSounds();
_root.music.gotoAndStop(2);
}
if (_root.sfx != 1) {
_global.FXPlayer("button");
}
}
Symbol 85 MovieClip Frame 1
stop();
Symbol 85 MovieClip Frame 2
stop();
Instance of Symbol 78 MovieClip in Symbol 94 MovieClip Frame 1
onClipEvent (load) {
this.bad.gotoAndStop(1);
}
Symbol 99 Button
on (release) {
_root.square2._xscale = _root.square2.tempx;
_root.square2._yscale = _root.square2.tempy;
_global.speedmult = 1;
enemyr.speedmult = 1;
enemyt.speedmult = 1;
enemyb.speedmult = 1;
enemyl.speedmult = 1;
goodb.speedmult = 1;
goodt.speedmult = 1;
goodr.speedmult = 1;
goodl.speedmult = 1;
score = 0;
_root.invincible = 1;
_root.slower = 0;
_root.numsquares = int((_global.speedmult - 1) / 0.07);
_root.evilsquares = 0;
_root.playervelocity = 10;
_root.intscore = 0;
_root.score = 0;
_root.totalsquares = 0;
_root.oktodieagain = 0;
_root.schrodingerlives = 9;
_root.gotoAndPlay(2);
_global.FXPlayer("button");
}
Symbol 104 Button
on (release) {
_global.FXPlayer("button");
_root.gotoAndPlay("helpframe");
}
Symbol 116 MovieClip Frame 1
stop();
Symbol 116 MovieClip Frame 2
_root.invincible = 0;
Symbol 116 MovieClip Frame 15
_global.FXPlayer("mayhem");
Symbol 116 MovieClip Frame 20
_global.FXPlayer("mayhem");
Symbol 116 MovieClip Frame 24
_global.FXPlayer("mayhem");
Symbol 116 MovieClip Frame 360
_root.evilsquares = 0;
_root.goodl.gotoAndPlay(7);
_root.goodr.gotoAndPlay(7);
_root.goodt.gotoAndPlay(7);
_root.goodb.gotoAndPlay(7);
Symbol 116 MovieClip Frame 361
stop();
Symbol 116 MovieClip Frame 362
_global.FXPlayer("fast");
tempa = _global.speedmult;
_root.invincible = 0;
Symbol 116 MovieClip Frame 390
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 420
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 450
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 480
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 510
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 540
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 570
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 600
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 630
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 660
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 690
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult + 0.1;
temp = _global.speedmult;
_root.speedcontrol(temp);
}
Symbol 116 MovieClip Frame 720
_global.speedmult = tempa;
_root.speedcontrol(tempa);
_root.slower = 0;
Symbol 116 MovieClip Frame 721
stop();
Symbol 116 MovieClip Frame 722
_root.invincible = 0;
_global.FXPlayer("minusgrand");
Symbol 116 MovieClip Frame 811
stop();
Symbol 116 MovieClip Frame 812
_root.square2._xscale = _root.square2._xscale / 0.95;
_root.square2._yscale = _root.square2._xscale;
_global.FXPlayer("bigcat");
Symbol 116 MovieClip Frame 813
_root.square2._xscale = _root.square2._xscale / 0.95;
_root.square2._yscale = _root.square2._xscale;
_root.invincible = 0;
Symbol 116 MovieClip Frame 814
_root.square2._xscale = _root.square2._xscale / 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 116 MovieClip Frame 815
_root.square2._xscale = _root.square2._xscale / 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 116 MovieClip Frame 816
_root.square2._xscale = _root.square2._xscale / 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 116 MovieClip Frame 817
_root.square2._xscale = _root.square2._xscale / 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 116 MovieClip Frame 900
stop();
Symbol 122 MovieClip Frame 1
stop();
Symbol 122 MovieClip Frame 2
_global.FXPlayer("swoosh");
_root.invincible = 1;
Symbol 122 MovieClip Frame 360
_root.invincible = 0;
Symbol 122 MovieClip Frame 361
stop();
Symbol 122 MovieClip Frame 362
_root.invincible = 0;
_global.FXPlayer("slow");
tempa = _global.speedmult;
Symbol 122 MovieClip Frame 391
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 420
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 450
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 480
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 510
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 540
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 570
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 600
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 630
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 660
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 690
if (_global.speedmult > 0) {
_global.speedmult = _global.speedmult - 0.1;
temp = _global.speedmult;
speedcontrol(temp);
}
Symbol 122 MovieClip Frame 720
_root.slower = 0;
Symbol 122 MovieClip Frame 721
stop();
Symbol 122 MovieClip Frame 722
_root.invincible = 0;
_global.FXPlayer("plusgrand");
Symbol 122 MovieClip Frame 811
stop();
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 122 MovieClip Frame 812
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
_root.invincible = 0;
_global.FXPlayer("littlecat");
Symbol 122 MovieClip Frame 813
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 122 MovieClip Frame 814
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 122 MovieClip Frame 815
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 122 MovieClip Frame 816
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 122 MovieClip Frame 817
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 122 MovieClip Frame 818
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 122 MovieClip Frame 819
_root.square2._xscale = _root.square2._xscale * 0.95;
_root.square2._yscale = _root.square2._xscale;
Symbol 122 MovieClip Frame 900
stop();
Symbol 145 MovieClip Frame 12
_global.FXPlayer("hit");
_root.gotoAndStop("gameover");
stop();
Symbol 146 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 2
stop();
Symbol 146 MovieClip Frame 3
stop();
Symbol 146 MovieClip Frame 4
stop();
Symbol 146 MovieClip Frame 5
stop();
Symbol 146 MovieClip Frame 6
stop();
Symbol 146 MovieClip Frame 7
stop();
Symbol 146 MovieClip Frame 8
stop();
Symbol 146 MovieClip Frame 9
stop();
Symbol 146 MovieClip Frame 10
stop();
Symbol 150 MovieClip Frame 1
_root.invincible = 1;
Symbol 150 MovieClip Frame 5
_global.FXPlayer("tickdown");
Symbol 150 MovieClip Frame 27
_global.FXPlayer("tickdown");
Symbol 150 MovieClip Frame 50
_global.FXPlayer("blastoff");
Symbol 150 MovieClip Frame 71
_root.invincible = 0;
stop();
Symbol 159 Button
on (release) {
_global.FXPlayer("button");
_root.gotoAndPlay("recordoff");
}
Symbol 170 Button
on (press) {
_global.FXPlayer("button");
nextFrame();
}
Symbol 177 Button
on (press) {
_global.FXPlayer("button");
prevFrame();
}
Symbol 223 MovieClip Frame 1
stop();
Symbol 223 MovieClip Frame 2
stop();
Instance of Symbol 78 MovieClip in Symbol 223 MovieClip Frame 2
onClipEvent (load) {
this.bad.gotoAndStop(1);
}
Symbol 223 MovieClip Frame 3
stop();
Symbol 223 MovieClip Frame 4
stop();
Symbol 223 MovieClip Frame 5
stop();
Symbol 230 Button
on (release) {
_global.FXPlayer("button");
_root.gotoAndPlay("mainmenu");
}
Symbol 246 Button
on (release) {
_global.FXPlayer("button");
achiever = 1;
loadVariablesNum ((((((("http://www.isskerberos.org/gamescore/achieved.php?gameid=" + _root.gameid) + "&replaceid=") + _root.replaceid) + "&replacescore=") + _root.score) + "&playername=") + _root.mynameis, 0);
play();
}
Symbol 254 Button
on (release) {
_root.result = 0;
_root.finished = 0;
_global.FXPlayer("button");
_root.gotoAndStop("mainmenu");
}
Symbol 277 MovieClip Frame 1
skill1.gotoAndStop("tack");
type1.gotoAndStop("tack");
choice1.gotoAndStop("tack");
skilllevel = 0;
skilltype = 0;
skintype = 0;
stop();
Symbol 277 MovieClip Frame 2
_root.gameover = 1;
Symbol 278 MovieClip Frame 2
function topfiver(thisscore) {
trace("did top 5 ");
if ((thisscore > _root.score5[2]) && (thisscore <= _root.score4[2])) {
_root.top5namese = "YOU";
_root.top5scorese = thisscore;
_root.top5datee = "TODAY";
_root.top5namesd = _root.score4[1];
_root.top5scoresd = _root.score4[2];
_root.top5dated = _root.score4[3];
_root.top5namesc = _root.score3[1];
_root.top5scoresc = _root.score3[2];
_root.top5datec = _root.score3[3];
_root.top5namesb = _root.score2[1];
_root.top5scoresb = _root.score2[2];
_root.top5dateb = _root.score2[3];
_root.top5namesa = _root.score1[1];
_root.top5scoresa = _root.score1[2];
_root.top5datea = _root.score1[3];
_root.replaceid = _root.score5[0];
_root.replacescore = thisscore;
} else if ((thisscore > _root.score4[2]) && (thisscore <= _root.score3[2])) {
_root.top5namese = _root.score4[1];
_root.top5scorese = _root.score4[2];
_root.top5datee = _root.score4[3];
_root.top5namesd = "YOU";
_root.top5scoresd = thisscore;
_root.top5dated = "TODAY";
_root.top5namesc = _root.score3[1];
_root.top5scoresc = _root.score3[2];
_root.top5datec = _root.score3[3];
_root.top5namesb = _root.score2[1];
_root.top5scoresb = _root.score2[2];
_root.top5dateb = _root.score2[3];
_root.top5namesa = _root.score1[1];
_root.top5scoresa = _root.score1[2];
_root.top5datea = _root.score1[3];
_root.replaceid = _root.score4[0];
_root.replacescore = thisscore;
} else if ((thisscore > _root.score3[2]) && (thisscore <= _root.score2[2])) {
_root.top5namese = _root.score4[1];
_root.top5scorese = _root.score4[2];
_root.top5datee = _root.score4[3];
_root.top5namesd = _root.score3[1];
_root.top5scoresd = _root.score3[2];
_root.top5dated = _root.score3[3];
_root.top5namesc = "YOU";
_root.top5scoresc = thisscore;
_root.top5datec = "TODAY";
_root.top5namesb = _root.score2[1];
_root.top5scoresb = _root.score2[2];
_root.top5dateb = _root.score2[3];
_root.top5namesa = _root.score1[1];
_root.top5scoresa = _root.score1[2];
_root.top5datea = _root.score1[3];
_root.replaceid = _root.score3[0];
_root.replacescore = thisscore;
} else if ((thisscore > _root.score2[2]) && (thisscore <= _root.score1[2])) {
_root.top5namese = _root.score4[1];
_root.top5scorese = _root.score4[2];
_root.top5datee = _root.score4[3];
_root.top5namesd = _root.score3[1];
_root.top5scoresd = _root.score3[2];
_root.top5dated = _root.score3[3];
_root.top5namesc = _root.score2[1];
_root.top5scoresc = _root.score2[2];
_root.top5datec = _root.score2[3];
_root.top5namesb = "YOU";
_root.top5scoresb = thisscore;
_root.top5dateb = "TODAY";
_root.top5namesa = _root.score1[1];
_root.top5scoresa = _root.score1[2];
_root.top5datea = _root.score1[3];
_root.replaceid = _root.score2[0];
_root.replacescore = thisscore;
} else if (thisscore > _root.score1[2]) {
_root.top5namese = _root.score4[1];
_root.top5scorese = _root.score4[2];
_root.top5datee = _root.score4[3];
_root.top5namesd = _root.score3[1];
_root.top5scoresd = _root.score3[2];
_root.top5dated = _root.score3[3];
_root.top5namesc = _root.score2[1];
_root.top5scoresc = _root.score2[2];
_root.top5datec = _root.score2[3];
_root.top5namesb = _root.score1[1];
_root.top5scoresb = _root.score1[2];
_root.top5dateb = _root.score1[3];
_root.top5namesa = "YOU";
_root.top5scoresa = thisscore;
_root.top5datea = "TODAY";
_root.replaceid = _root.score1[0];
_root.replacescore = thisscore;
} else {
_root.top5namese = _root.score5[1];
_root.top5scorese = _root.score5[2];
_root.top5datee = _root.score5[3];
_root.top5namesd = _root.score4[1];
_root.top5scoresd = _root.score4[2];
_root.top5dated = _root.score4[3];
_root.top5namesc = _root.score3[1];
_root.top5scoresc = _root.score3[2];
_root.top5datec = _root.score3[3];
_root.top5namesb = _root.score2[1];
_root.top5scoresb = _root.score2[2];
_root.top5dateb = _root.score2[3];
_root.top5namesa = _root.score1[1];
_root.top5scoresa = _root.score1[2];
_root.top5datea = _root.score1[3];
_root.replaceid = 0;
}
}
trace("did this ");
Symbol 278 MovieClip Frame 3
_root.score = Math.round(_root.score);
gameid = _root.gameid;
trace(_root.score);
trace("about to load ");
var ScoreData = new LoadVars();
ScoreData.onLoad = function () {
trace("loaded data ");
this.core1c = Math.abs(this.core1c);
this.core2c = Math.abs(this.core2c);
this.core3c = Math.abs(this.core3c);
this.core4c = Math.abs(this.core4c);
this.core5c = Math.abs(this.core5c);
_root.score1 = Array(this.core1a, this.core1b, this.core1c, this.core1d);
_root.score2 = Array(this.core2a, this.core2b, this.core2c, this.core2d);
_root.score3 = Array(this.core3a, this.core3b, this.core3c, this.core3d);
_root.score4 = Array(this.core4a, this.core4b, this.core4c, this.core4d);
_root.score5 = Array(this.core5a, this.core5b, this.core5c, this.core5d);
topfiver(_root.score);
if (_root.replaceid == 0) {
achiever = 0;
gotoAndPlay (23);
} else {
gotoAndPlay (5);
}
if (ScoreData.end != 1) {
gotoAndPlay (23);
}
};
var preventCaching = (getTimer() + random(10000));
trace("cache variable done ");
ScoreData.load((("http://www.isskerberos.org/gamescore/top5.php?gameid=" + _root.gameid) + "&preventCache=") + preventCaching);
trace("sent request to load data");
Symbol 278 MovieClip Frame 4
gotoAndPlay (3);
Symbol 278 MovieClip Frame 22
stop();
Symbol 278 MovieClip Frame 32
if (achiever == 1) {
if (_root.top5namesa == "YOU") {
_root.top5namesa = _root.mynameis;
} else if (_root.top5namesb == "YOU") {
_root.top5namesb = _root.mynameis;
} else if (_root.top5namesc == "YOU") {
_root.top5namesc = _root.mynameis;
} else if (_root.top5namesd == "YOU") {
_root.top5namesd = _root.mynameis;
} else if (_root.top5namese == "YOU") {
_root.top5namese = _root.mynameis;
}
}
if (ScoreData.end != 1) {
frufru.gotoAndStop(2);
} else {
frufru.gotoAndStop(1);
}
stop();