STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228117
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/73674166?noj=FRM73674166-11DC" width="1" height="1"></div>

Quantum Foam.swf

This is the info page for
Flash #36268

(Click the ID number above for more basic data on this flash file.)


Text
00

% LOADED

000

ILLEGAL USE OF KERBEROS GAME

Please Play this game from

ISS KERBEROS.ORG

0000000000000000000

SCORE

0000000000000000000000000000000000000

TOTAL QUARKS

BAD QUARK  MAYHEM

SPEED FRENZY

-1000 POINTS

BIG CAT ATTACK

cat sheild on

slow the foam

+1000 POINTS

SHRINKIng SCHRODINGER

0000000000000000000

000000000000000000000000000000000000000

AN ISSKERBEROS.ORG CREATION

HOW TO PLAY >>

RULES OF PLAY

The Quantum Foam is riddled with quarks. You control Schrodinger
the Cat.
The object is to get Schrodinger to collect as many good quarks as
possible. The more you collect, the faster the quarks start moving and
the larger schrodinger gets.  Every once in a while, a special quark will
come out and give you one of four bonuses.

SCHRODINGER

GOOD
QUARK

SPECIAL
QUARK

All is not easy in the foam.
You have to avoid the bad quarks and not catch any of the evil quarks
that will give you one of 4 punishments.
Like a regular cat, Schrodinger has 9 lives. Once they are up, game
over.

LIFE METER

BAD
QUARK

EVIL
QUARK

Schrodinger can be controlled by your arrow keys.

HERE ARE THE 4  BONUSES/ PUNISHMENTS :

BONUS 1:

BONUS 2:

BONUS 3:

BONUS 4:

CAT SHIELD ON

SLOW THE FOAM

+1000 POINTS

SHRINKING SCHRODINGER

{ invincible }

{ slow up the quarks }

{ shrinks the cat }

PUNISH 1:

PUNISH 2:

PUNISH 3:

PUNISH 4:

BAD QUARK MAYHEM

SPEED FRENZY

-1000 POINTS

BIG CAT ATTACK

{ all quarks are bad }

{speeds up the quarks }

{ enlarges the cat }

PLEASE WAIT..

player_name

CONGRATULATIONS

Your score qualifies as one of the Top 5 Scores

Please enter your name to be listed in the

top5 score table.  PLease no spaces

orcharacters other than alphanumerics

SUBMIT

SUBMIT

YOUR FINAL SCORE

PLAY AGAIN ?

YES

YES

000

TOP 5  HIGH SCORES

SORRY

No High Score Data

is being captured

ActionScript [AS1/AS2]

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();

Library Items

Symbol 1 Sound [tickdown]
Symbol 2 Sound [hit]
Symbol 3 Sound [minusgrand]
Symbol 4 Sound [swoosh]
Symbol 5 Sound [slow]
Symbol 6 Sound [fast]
Symbol 7 Sound [littlecat]
Symbol 8 Sound [bigcat]
Symbol 9 Sound [plusgrand]
Symbol 10 Sound [badquark]
Symbol 11 Sound [button]
Symbol 12 Sound [goodquark]
Symbol 13 Sound [blastoff]
Symbol 14 Sound [mayhem]
Symbol 15 Sound [special]
Symbol 16 GraphicUsed by:19
Symbol 17 FontUsed by:18
Symbol 18 EditableTextUses:17Used by:19
Symbol 19 MovieClip [showpayment]Uses:16 18Used by:223  Timeline
Symbol 20 BitmapUsed by:21
Symbol 21 GraphicUses:20Used by:Timeline
Symbol 22 GraphicUsed by:71  Timeline
Symbol 23 GraphicUsed by:56
Symbol 24 GraphicUsed by:26
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:24 25Used by:27
Symbol 27 MovieClipUses:26Used by:56
Symbol 28 GraphicUsed by:56
Symbol 29 GraphicUsed by:56
Symbol 30 GraphicUsed by:56
Symbol 31 GraphicUsed by:56
Symbol 32 GraphicUsed by:56
Symbol 33 GraphicUsed by:56
Symbol 34 GraphicUsed by:56
Symbol 35 GraphicUsed by:56
Symbol 36 GraphicUsed by:56
Symbol 37 GraphicUsed by:56
Symbol 38 GraphicUsed by:56
Symbol 39 GraphicUsed by:56
Symbol 40 GraphicUsed by:56
Symbol 41 GraphicUsed by:56
Symbol 42 GraphicUsed by:56
Symbol 43 GraphicUsed by:56
Symbol 44 GraphicUsed by:56
Symbol 45 GraphicUsed by:56
Symbol 46 GraphicUsed by:56
Symbol 47 GraphicUsed by:56
Symbol 48 GraphicUsed by:56
Symbol 49 GraphicUsed by:56
Symbol 50 GraphicUsed by:56
Symbol 51 GraphicUsed by:56
Symbol 52 GraphicUsed by:56
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:23 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55Used by:Timeline
Symbol 57 FontUsed by:58 59 162 233
Symbol 58 TextUses:57Used by:Timeline
Symbol 59 EditableTextUses:57Used by:Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:Timeline
Symbol 62 GraphicUsed by:71
Symbol 63 FontUsed by:64 65 66
Symbol 64 TextUses:63Used by:71
Symbol 65 TextUses:63Used by:71
Symbol 66 TextUses:63Used by:71
Symbol 67 GraphicUsed by:71
Symbol 68 BitmapUsed by:69
Symbol 69 GraphicUses:68Used by:70
Symbol 70 ButtonUses:69Used by:71
Symbol 71 MovieClipUses:62 22 64 65 66 67 70Used by:Timeline
Symbol 72 GraphicUsed by:Timeline
Symbol 73 GraphicUsed by:78
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:78 80
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76Used by:78
Symbol 78 MovieClipUses:73 75 77Used by:94 223  Timeline
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:79 75Used by:94 223  Timeline
Symbol 81 GraphicUsed by:82
Symbol 82 ButtonUses:81Used by:Timeline
Symbol 83 GraphicUsed by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:83 84Used by:Timeline
Symbol 86 GraphicUsed by:92
Symbol 87 GraphicUsed by:91
Symbol 88 GraphicUsed by:91
Symbol 89 GraphicUsed by:91
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:87 88 89 90Used by:92 146 223
Symbol 92 MovieClipUses:86 91Used by:Timeline
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:80 78 93Used by:Timeline
Symbol 95 GraphicUsed by:99 104 159 230
Symbol 96 GraphicUsed by:99
Symbol 97 GraphicUsed by:99
Symbol 98 GraphicUsed by:99
Symbol 99 ButtonUses:95 96 97 98Used by:100
Symbol 100 MovieClipUses:99Used by:Timeline
Symbol 101 GraphicUsed by:104
Symbol 102 GraphicUsed by:104
Symbol 103 GraphicUsed by:104
Symbol 104 ButtonUses:95 101 102 103Used by:105
Symbol 105 MovieClipUses:104Used by:Timeline
Symbol 106 FontUsed by:107 108 109 110 112 113 114 115 118 119 120 121 151 152
Symbol 107 EditableTextUses:106Used by:Timeline
Symbol 108 TextUses:106Used by:Timeline
Symbol 109 EditableTextUses:106Used by:Timeline
Symbol 110 TextUses:106Used by:Timeline
Symbol 111 GraphicUsed by:116 122
Symbol 112 TextUses:106Used by:116
Symbol 113 TextUses:106Used by:116
Symbol 114 TextUses:106Used by:116
Symbol 115 TextUses:106Used by:116
Symbol 116 MovieClipUses:111 112 113 114 115Used by:Timeline
Symbol 117 GraphicUsed by:122
Symbol 118 TextUses:106Used by:122
Symbol 119 TextUses:106Used by:122
Symbol 120 TextUses:106Used by:122
Symbol 121 TextUses:106Used by:122
Symbol 122 MovieClipUses:111 117 118 119 120 121Used by:Timeline
Symbol 123 GraphicUsed by:126
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClipUses:124Used by:126 128
Symbol 126 MovieClipUses:123 125Used by:223  Timeline
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127 125Used by:223  Timeline
Symbol 129 GraphicUsed by:131
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:129 130Used by:146 223
Symbol 132 GraphicUsed by:134
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:132 133Used by:146 223
Symbol 135 GraphicUsed by:137
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:135 136Used by:146 223
Symbol 138 GraphicUsed by:140
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:138 139Used by:146 223
Symbol 141 GraphicUsed by:145
Symbol 142 GraphicUsed by:145
Symbol 143 GraphicUsed by:145
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:141 142 143 144Used by:146
Symbol 146 MovieClipUses:131 134 137 140 91 145Used by:Timeline
Symbol 147 GraphicUsed by:150
Symbol 148 GraphicUsed by:150
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:147 148 149Used by:Timeline
Symbol 151 EditableTextUses:106Used by:Timeline
Symbol 152 EditableTextUses:106Used by:Timeline
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:Timeline
Symbol 155 GraphicUsed by:159
Symbol 156 GraphicUsed by:159
Symbol 157 GraphicUsed by:159
Symbol 158 GraphicUsed by:159
Symbol 159 ButtonUses:95 155 156 157 158Used by:160
Symbol 160 MovieClipUses:159Used by:Timeline
Symbol 161 GraphicUsed by:223
Symbol 162 TextUses:57Used by:223
Symbol 163 BitmapUsed by:164
Symbol 164 GraphicUses:163Used by:223
Symbol 165 FontUsed by:166 173 174 175 176 178 179 180 181 182 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
Symbol 166 TextUses:165Used by:223
Symbol 167 GraphicUsed by:170 177
Symbol 168 GraphicUsed by:170 177
Symbol 169 GraphicUsed by:170 177
Symbol 170 ButtonUses:167 168 169Used by:223
Symbol 171 FontUsed by:172
Symbol 172 TextUses:171Used by:223
Symbol 173 TextUses:165Used by:223
Symbol 174 TextUses:165Used by:223
Symbol 175 TextUses:165Used by:223
Symbol 176 TextUses:165Used by:223
Symbol 177 ButtonUses:167 168 169Used by:223
Symbol 178 TextUses:165Used by:223
Symbol 179 TextUses:165Used by:223
Symbol 180 TextUses:165Used by:223
Symbol 181 TextUses:165Used by:223
Symbol 182 TextUses:165Used by:223
Symbol 183 GraphicUsed by:186
Symbol 184 GraphicUsed by:186
Symbol 185 GraphicUsed by:186
Symbol 186 ButtonUses:183 184 185Used by:223
Symbol 187 GraphicUsed by:190
Symbol 188 GraphicUsed by:190
Symbol 189 GraphicUsed by:190
Symbol 190 ButtonUses:187 188 189Used by:223
Symbol 191 GraphicUsed by:194
Symbol 192 GraphicUsed by:194
Symbol 193 GraphicUsed by:194
Symbol 194 ButtonUses:191 192 193Used by:223
Symbol 195 GraphicUsed by:198
Symbol 196 GraphicUsed by:198
Symbol 197 GraphicUsed by:198
Symbol 198 ButtonUses:195 196 197Used by:223
Symbol 199 GraphicUsed by:223
Symbol 200 TextUses:165Used by:223
Symbol 201 TextUses:165Used by:223
Symbol 202 TextUses:165Used by:223
Symbol 203 TextUses:165Used by:223
Symbol 204 TextUses:165Used by:223
Symbol 205 TextUses:165Used by:223
Symbol 206 TextUses:165Used by:223
Symbol 207 TextUses:165Used by:223
Symbol 208 TextUses:165Used by:223
Symbol 209 TextUses:165Used by:223
Symbol 210 TextUses:165Used by:223
Symbol 211 TextUses:165Used by:223
Symbol 212 TextUses:165Used by:223
Symbol 213 TextUses:165Used by:223
Symbol 214 TextUses:165Used by:223
Symbol 215 TextUses:165Used by:223
Symbol 216 TextUses:165Used by:223
Symbol 217 TextUses:165Used by:223
Symbol 218 TextUses:165Used by:223
Symbol 219 TextUses:165Used by:223
Symbol 220 TextUses:165Used by:223
Symbol 221 TextUses:165Used by:223
Symbol 222 TextUses:165Used by:223
Symbol 223 MovieClipUses:161 162 164 166 170 172 173 91 174 175 176 128 78 177 178 19 179 180 181 126 80 182 186 190 194 198 131 134 199 137 140 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222Used by:Timeline
Symbol 224 GraphicUsed by:230
Symbol 225 GraphicUsed by:230
Symbol 226 GraphicUsed by:230
Symbol 227 GraphicUsed by:230
Symbol 228 GraphicUsed by:230
Symbol 229 GraphicUsed by:230
Symbol 230 ButtonUses:95 224 225 226 227 228 229Used by:231
Symbol 231 MovieClipUses:230Used by:Timeline
Symbol 232 GraphicUsed by:278
Symbol 233 TextUses:57Used by:278
Symbol 234 GraphicUsed by:278
Symbol 235 FontUsed by:236 237 238 239 240 241 243 245 247 248 250 252 255 257 274 275 276
Symbol 236 EditableTextUses:235Used by:278
Symbol 237 TextUses:235Used by:278
Symbol 238 TextUses:235Used by:278
Symbol 239 TextUses:235Used by:278
Symbol 240 TextUses:235Used by:278
Symbol 241 TextUses:235Used by:278
Symbol 242 GraphicUsed by:246
Symbol 243 TextUses:235Used by:246
Symbol 244 GraphicUsed by:246
Symbol 245 TextUses:235Used by:246
Symbol 246 ButtonUses:242 243 244 245Used by:278
Symbol 247 TextUses:235Used by:277
Symbol 248 TextUses:235Used by:277
Symbol 249 GraphicUsed by:254
Symbol 250 TextUses:235Used by:254
Symbol 251 GraphicUsed by:254
Symbol 252 TextUses:235Used by:254
Symbol 253 GraphicUsed by:254
Symbol 254 ButtonUses:249 250 251 252 253Used by:277
Symbol 255 EditableTextUses:235Used by:277
Symbol 256 GraphicUsed by:277
Symbol 257 TextUses:235Used by:277
Symbol 258 FontUsed by:259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
Symbol 259 EditableTextUses:258Used by:277
Symbol 260 EditableTextUses:258Used by:277
Symbol 261 EditableTextUses:258Used by:277
Symbol 262 EditableTextUses:258Used by:277
Symbol 263 EditableTextUses:258Used by:277
Symbol 264 EditableTextUses:258Used by:277
Symbol 265 EditableTextUses:258Used by:277
Symbol 266 EditableTextUses:258Used by:277
Symbol 267 EditableTextUses:258Used by:277
Symbol 268 EditableTextUses:258Used by:277
Symbol 269 EditableTextUses:258Used by:277
Symbol 270 EditableTextUses:258Used by:277
Symbol 271 EditableTextUses:258Used by:277
Symbol 272 EditableTextUses:258Used by:277
Symbol 273 EditableTextUses:258Used by:277
Symbol 274 TextUses:235Used by:277
Symbol 275 TextUses:235Used by:277
Symbol 276 TextUses:235Used by:277
Symbol 277 MovieClipUses:247 248 254 255 256 257 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276Used by:278
Symbol 278 MovieClipUses:232 233 234 236 237 238 239 240 241 246 277Used by:Timeline

Instance Names

"loader"Frame 1Symbol 56 MovieClip
"coveritall"Frame 1Symbol 71 MovieClip
"goodr"Frame 2Symbol 78 MovieClip
"enemyr"Frame 2Symbol 80 MovieClip
"goodt"Frame 2Symbol 78 MovieClip
"goodl"Frame 2Symbol 78 MovieClip
"goodb"Frame 2Symbol 78 MovieClip
"enemyl"Frame 2Symbol 80 MovieClip
"enemyb"Frame 2Symbol 80 MovieClip
"enemyt"Frame 2Symbol 80 MovieClip
"music"Frame 2Symbol 85 MovieClip
"playbut"Frame 2Symbol 100 MovieClip
"helpbut"Frame 2Symbol 105 MovieClip
"powerdowns"Frame 3Symbol 116 MovieClip
"powerups"Frame 3Symbol 122 MovieClip
"powerup"Frame 3Symbol 128 MovieClip
"winvisual"Frame 3Symbol 19 MovieClip [showpayment]
"square2"Frame 3Symbol 146 MovieClip
"playbut"Frame 6Symbol 100 MovieClip
"gameover"Frame 8Symbol 278 MovieClip
"bad"Symbol 78 MovieClip Frame 1Symbol 77 MovieClip
"frufru"Symbol 278 MovieClip Frame 32Symbol 277 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "tickdown"
ExportAssets (56)Timeline Frame 1Symbol 2 as "hit"
ExportAssets (56)Timeline Frame 1Symbol 3 as "minusgrand"
ExportAssets (56)Timeline Frame 1Symbol 4 as "swoosh"
ExportAssets (56)Timeline Frame 1Symbol 5 as "slow"
ExportAssets (56)Timeline Frame 1Symbol 6 as "fast"
ExportAssets (56)Timeline Frame 1Symbol 7 as "littlecat"
ExportAssets (56)Timeline Frame 1Symbol 8 as "bigcat"
ExportAssets (56)Timeline Frame 1Symbol 9 as "plusgrand"
ExportAssets (56)Timeline Frame 1Symbol 10 as "badquark"
ExportAssets (56)Timeline Frame 1Symbol 11 as "button"
ExportAssets (56)Timeline Frame 1Symbol 12 as "goodquark"
ExportAssets (56)Timeline Frame 1Symbol 13 as "blastoff"
ExportAssets (56)Timeline Frame 1Symbol 14 as "mayhem"
ExportAssets (56)Timeline Frame 1Symbol 15 as "special"
ExportAssets (56)Timeline Frame 1Symbol 19 as "showpayment"
ExportAssets (56)Timeline Frame 3Symbol 19 as "showpayment"
ExportAssets (56)Timeline Frame 4Symbol 19 as "showpayment"
ExportAssets (56)Timeline Frame 5Symbol 19 as "showpayment"
ExportAssets (56)Timeline Frame 7Symbol 19 as "showpayment"

Labels

"mainmenu"Frame 2
"gameover"Frame 6
"helpframe"Frame 7
"recordoff"Frame 8
"right"Symbol 146 MovieClip Frame 1
"left"Symbol 146 MovieClip Frame 2
"up"Symbol 146 MovieClip Frame 3
"down"Symbol 146 MovieClip Frame 4
"bl"Symbol 146 MovieClip Frame 5
"br"Symbol 146 MovieClip Frame 6
"tr"Symbol 146 MovieClip Frame 7
"tl"Symbol 146 MovieClip Frame 8
"wait"Symbol 146 MovieClip Frame 9
"explode"Symbol 146 MovieClip Frame 10
"pastachieve"Symbol 278 MovieClip Frame 23

Dynamic Text Variables

myvalueSymbol 18 EditableText"00"
percentSymbol 59 EditableText"000"
intscoreSymbol 107 EditableText"0000000000000000000"
numsquaresSymbol 109 EditableText"0000000000000000000000000000000000000"
intscoreSymbol 151 EditableText"0000000000000000000"
totalsquaresSymbol 152 EditableText"000000000000000000000000000000000000000"
_root.mynameisSymbol 236 EditableText"player_name"
_root.scoreSymbol 255 EditableText"000"
_root.top5namesaSymbol 259 EditableText""
_root.top5namesbSymbol 260 EditableText""
_root.top5namescSymbol 261 EditableText""
_root.top5namesdSymbol 262 EditableText""
_root.top5nameseSymbol 263 EditableText""
_root.top5scoresaSymbol 264 EditableText""
_root.top5scoresbSymbol 265 EditableText""
_root.top5scorescSymbol 266 EditableText""
_root.top5scoresdSymbol 267 EditableText""
_root.top5scoreseSymbol 268 EditableText""
_root.top5dateaSymbol 269 EditableText""
_root.top5datebSymbol 270 EditableText""
_root.top5datecSymbol 271 EditableText""
_root.top5datedSymbol 272 EditableText""
_root.top5dateeSymbol 273 EditableText""




http://swfchan.com/8/36268/info.shtml
Created: 15/5 -2019 07:19:15 Last modified: 15/5 -2019 07:19:15 Server time: 11/05 -2024 11:51:20