Frame 1
stop();
Stage.showMenu = false;
Frame 2
stopAllSounds();
Frame 3
stop();
Instance of Symbol 49 MovieClip in Frame 3
onClipEvent (load) {
this.useHandCursor = false;
}
on (keyPress "<Space>") {
stopAllSounds();
if (_root.sel._currentframe == 1) {
_root.gotoAndPlay("astart");
}
if (_root.sel._currentframe == 2) {
_root.gotoAndPlay("bstart");
}
if (_root.sel._currentframe == 3) {
_root.gotoAndPlay("cstart");
}
}
Instance of Symbol 59 MovieClip "sel" in Frame 3
onClipEvent (load) {
this.useHandCursor = false;
}
on (keyPress "<Down>") {
_root.sel.play();
}
on (keyPress "<Up>") {
val = _root.sel._currentframe - 1;
if (val == 0) {
val = 3;
}
_root.sel.gotoAndStop(val);
}
Frame 4
stop();
Instance of Symbol 74 MovieClip "soundClip" in Frame 4
onClipEvent (load) {
s = new Sound(_root.soundClip);
}
Instance of Symbol 49 MovieClip in Frame 4
onClipEvent (load) {
this.useHandCursor = false;
}
Frame 5
gnmbr = 100000 /* 0x0186A0 */;
speed = 5;
dup = 100;
rbNmbr = 0;
germNmbr = 0;
rnmbr = 1;
nmG = 2;
nmRB = 5;
del = false;
score = 0;
sq = new Sound(this);
sq.attachSound("squirt");
stat = "";
stop();
Instance of Symbol 111 MovieClip in Frame 5
onClipEvent (enterFrame) {
_xscale = _root.wbcell.pwrTime;
if (_xscale < 0) {
_xscale = 0;
}
}
Instance of Symbol 10 MovieClip "rbcell" in Frame 5
onClipEvent (load) {
if (_name != "rbcell") {
_rotation = random(360);
rspeed = 5;
speed = _root.speed;
_root.rbNmbr = _root.rbNmbr + 1;
startspeed = random(10) + 10;
} else {
i = _root.nmRB;
while (i >= 1) {
duplicateMovieClip (this, "rb" + _root.rnmbr, _root.rnmbr);
_root["rb" + _root.rnmbr]._x = -30;
_root["rb" + _root.rnmbr]._y = random(400);
_root["rb" + _root.rnmbr].started = false;
_root.rnmbr++;
i--;
}
}
}
onClipEvent (enterFrame) {
if (_name != "rbcell") {
if (started) {
switchDir = random(15);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
} else {
_x = (_x + startspeed);
startspeed = startspeed * 0.9;
if (startspeed < 1) {
started = true;
}
}
if (_root.del) {
removeMovieClip(this);
}
}
}
Instance of Symbol 96 MovieClip "wbcell" in Frame 5
onClipEvent (load) {
rspeed = 7;
speed = 7;
pwrTime = 0;
this.swapDepths(999998);
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_rotation = (_rotation - rspeed);
}
if (Key.isDown(39)) {
_rotation = (_rotation + rspeed);
}
if (_root.del) {
removeMovieClip(this);
}
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (hArea._width / 2))) {
_x = (550 - (hArea._width / 2));
}
if (_x < (hArea._width / 2)) {
_x = (hArea._width / 2);
}
if (_y < (hArea._height / 2)) {
_y = (hArea._height / 2);
}
if (_y > (400 - (hArea._height / 2))) {
_y = (400 - (hArea._height / 2));
}
pwrTime = pwrTime - 0.5;
if (pwrTime == 0) {
_xscale = 100;
_yscale = 100;
speed = 7;
rspeed = 7;
_root.stat = "";
}
}
Instance of Symbol 100 MovieClip "germ" in Frame 5
onClipEvent (load) {
if (_name != "germ") {
_rotation = random(360);
rspeed = 5;
speed = _root.speed;
_root.germNmbr = _root.germNmbr + 1;
startspeed = random(10) + 10;
} else {
_root.sq.start();
i = _root.nmG;
while (i >= 1) {
duplicateMovieClip (this, "enm" + _root.gnmbr, _root.gnmbr);
_root["enm" + _root.gnmbr]._x = 590;
_root["enm" + _root.gnmbr]._y = random(400);
_root["enm" + _root.gnmbr].started = false;
_root.gnmbr++;
i--;
}
}
}
onClipEvent (enterFrame) {
if (_name != "germ") {
if (started) {
dup = random(_root.dup);
if (dup == 0) {
this.play();
}
switchDir = random(15);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
} else {
_x = (_x - startspeed);
startspeed = startspeed * 0.9;
if (startspeed < 1) {
started = true;
}
}
if (hArea.hitTest(_root.wbcell.hArea)) {
this.gotoAndPlay("die");
speed = 0;
rspeed = 0;
startspeed = 0;
}
if (_root.del) {
removeMovieClip(this);
}
var i = _root.nmRB;
while (i >= 1) {
if (hArea.hitTest(_root["rb" + i])) {
_root["rb" + i].speed = 0;
_root["rb" + i].rspeed = 0;
_root["rb" + i].startspeed = 0;
_root["rb" + i].play();
}
i--;
}
}
}
Instance of Symbol 114 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (_root.germNmbr <= 0) {
_root.nmG = _root.nmG + 1;
_root.nmRB = _root.nmRB + 2;
_root.germNmbr = 0;
duplicateMovieClip (_root.rbcell, "rb" + _root.rnmbr, _root.rnmbr);
_root["rb" + _root.rnmbr]._x = -30;
_root["rb" + _root.rnmbr]._y = random(400);
_root["rb" + _root.rnmbr].started = false;
_root.rnmbr++;
duplicateMovieClip (_root.rbcell, "rb" + _root.rnmbr, _root.rnmbr);
_root["rb" + _root.rnmbr]._x = -30;
_root["rb" + _root.rnmbr]._y = random(400);
_root["rb" + _root.rnmbr].started = false;
_root.rnmbr++;
_root.gnmbr = 100000 /* 0x0186A0 */;
i = _root.nmG;
while (i >= 1) {
duplicateMovieClip (_root.germ, "enm" + _root.gnmbr, _root.gnmbr);
_root["enm" + _root.gnmbr]._x = 590;
_root["enm" + _root.gnmbr]._y = random(400);
_root["enm" + _root.gnmbr].started = false;
_root.gnmbr++;
i--;
}
_root.dup = 100 + ((_root.nmG - 1) * 25);
_root.sq.start();
}
if (_root.pro.go == false) {
launch = random(250);
if (launch == 0) {
_root.pro.go = true;
_root.pro._x = -40;
}
}
if (_root.rbNmbr <= 0) {
_root.play();
_root.del = true;
}
}
Instance of Symbol 105 MovieClip "pro" in Frame 5
onClipEvent (load) {
_rotation = random(360);
rspeed = 10;
speed = _root.speed;
go = false;
started = false;
startspeed = random(20) + 20;
}
onClipEvent (enterFrame) {
if (go) {
if (started) {
switchDir = random(5);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
} else {
_x = (_x + startspeed);
startspeed = startspeed * 0.9;
if (startspeed < 1) {
started = true;
}
}
if (hitTest(_root.wbcell.hArea)) {
pwr = random(9);
_root.wbcell.pwrTime = 100;
_x = 1000;
go = false;
started = false;
startspeed = random(20) + 20;
_root.wbcell._xscale = 100;
_root.wbcell._yscale = 100;
_root.wbcell.speed = 7;
_root.wbcell.rspeed = 7;
switch (pwr) {
case 0 :
_root.wbcell.speed = 15;
_root.wbcell.rspeed = 15;
_root.stat = "Fast Turning Fast Cell";
break;
case 1 :
_root.wbcell.rspeed = 15;
_root.stat = "Good Control Cell";
break;
case 2 :
_root.wbcell.speed = 15;
_root.wbcell.rspeed = 4;
_root.stat = "Bad Control Fast Cell";
break;
case 3 :
_root.wbcell._xscale = 200;
_root.wbcell._yscale = 200;
_root.stat = "Giant Cell";
break;
case 4 :
_root.wbcell._xscale = 50;
_root.wbcell._yscale = 50;
_root.stat = "Small Cell";
break;
case 5 :
_root.wbcell.speed = 4;
_root.wbcell.rspeed = 4;
_root.stat = "Slow Cell";
break;
case 6 :
_root.wbcell.rspeed = 40;
_root.stat = "Crazy Cell";
break;
case 7 :
_root.wbcell._xscale = 1000;
_root.wbcell._yscale = 1000;
_root.wbcell.speed = 30;
_root.wbcell.pwrTime = 25;
_root.stat = "Monster Cell";
break;
case 8 :
_root.wbcell.speed = 15;
_root.stat = "Fast Cell";
}
}
}
}
Frame 6
stop();
Instance of Symbol 49 MovieClip in Frame 6
on (keyPress "<Space>") {
if (_root.sel._currentframe == 1) {
_root.gotoAndPlay("astart");
} else {
stopAllSounds();
_root.gotoAndPlay("menu");
}
}
onClipEvent (load) {
this.useHandCursor = false;
}
Instance of Symbol 156 MovieClip "sel" in Frame 6
onClipEvent (load) {
this.useHandCursor = false;
}
on (keyPress "<Up>") {
play();
}
on (keyPress "<Down>") {
play();
}
Frame 7
stop();
Instance of Symbol 158 MovieClip "soundClip" in Frame 7
onClipEvent (load) {
s = new Sound(_root.soundClip);
}
Frame 8
gnmbr = 100000 /* 0x0186A0 */;
speed = 5;
dup = 100;
rbNmbr = 0;
germNmbr = 0;
rnmbr = 1;
nmG = 1;
nmRB = 1;
del = false;
score = 0;
sq = new Sound(this);
sq.attachSound("squirt");
stat = "";
stop();
Instance of Symbol 10 MovieClip "rbcell" in Frame 8
onClipEvent (load) {
if (_name != "rbcell") {
_rotation = random(360);
rspeed = 5;
speed = 10;
_root.rbNmbr = _root.rbNmbr + 1;
startspeed = random(10) + 10;
} else {
i = _root.nmRB;
while (i >= 1) {
duplicateMovieClip (this, "rb" + _root.rnmbr, _root.rnmbr);
_root["rb" + _root.rnmbr]._x = -30;
_root["rb" + _root.rnmbr]._y = random(400);
_root["rb" + _root.rnmbr].started = false;
_root.rnmbr++;
i--;
}
}
}
onClipEvent (enterFrame) {
if (_name != "rbcell") {
if (started) {
switchDir = random(15);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x - ((_x - _root._xmouse) / speed));
_y = (_y - ((_y - _root._ymouse) / speed));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
} else {
_x = (_x + startspeed);
startspeed = startspeed * 0.9;
if (startspeed < 1) {
started = true;
}
}
if (_root.del) {
removeMovieClip(this);
}
}
}
Instance of Symbol 100 MovieClip "germ" in Frame 8
onClipEvent (load) {
if (_name != "germ") {
_rotation = random(360);
rspeed = 5;
speed = _root.speed;
_root.germNmbr = _root.germNmbr + 1;
startspeed = random(10) + 10;
} else {
_root.sq.start();
i = _root.nmG;
while (i >= 1) {
duplicateMovieClip (this, "enm" + _root.gnmbr, _root.gnmbr);
_root["enm" + _root.gnmbr]._x = 590;
_root["enm" + _root.gnmbr]._y = random(400);
_root["enm" + _root.gnmbr].started = false;
_root.gnmbr++;
i--;
}
}
}
onClipEvent (enterFrame) {
if (_name != "germ") {
if (started) {
dup = random(_root.dup);
if (dup == 0) {
this.play();
}
switchDir = random(15);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
} else {
_x = (_x - startspeed);
startspeed = startspeed * 0.9;
if (startspeed < 1) {
started = true;
}
}
if (_root.del) {
removeMovieClip(this);
}
var i = _root.nmRB;
while (i >= 1) {
if (hArea.hitTest(_root["rb" + i])) {
_root["rb" + i].speed = 999999999 /* 0x3B9AC9FF */;
_root["rb" + i].rspeed = 0;
_root["rb" + i].startspeed = 0;
_root["rb" + i].play();
}
i--;
}
}
}
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (_root.rbNmbr <= 0) {
_root.play();
_root.del = true;
}
}
Instance of Symbol 105 MovieClip "pro" in Frame 8
onClipEvent (load) {
_rotation = random(360);
rspeed = 10;
speed = _root.speed;
go = false;
started = false;
startspeed = random(20) + 20;
}
onClipEvent (enterFrame) {
if (go) {
if (started) {
switchDir = random(5);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
} else {
_x = (_x + startspeed);
startspeed = startspeed * 0.9;
if (startspeed < 1) {
started = true;
}
}
if (hitTest(_root.wbcell.hArea)) {
pwr = random(9);
_root.wbcell.pwrTime = 100;
_x = 1000;
go = false;
started = false;
startspeed = random(20) + 20;
_root.wbcell._xscale = 100;
_root.wbcell._yscale = 100;
_root.wbcell.speed = 7;
_root.wbcell.rspeed = 7;
switch (pwr) {
case 0 :
_root.wbcell.speed = 15;
_root.wbcell.rspeed = 15;
_root.stat = "Fast Turning Fast Cell";
break;
case 1 :
_root.wbcell.rspeed = 15;
_root.stat = "Good Control Cell";
break;
case 2 :
_root.wbcell.speed = 15;
_root.wbcell.rspeed = 4;
_root.stat = "Bad Control Fast Cell";
break;
case 3 :
_root.wbcell._xscale = 200;
_root.wbcell._yscale = 200;
_root.stat = "Giant Cell";
break;
case 4 :
_root.wbcell._xscale = 50;
_root.wbcell._yscale = 50;
_root.stat = "Small Cell";
break;
case 5 :
_root.wbcell.speed = 4;
_root.wbcell.rspeed = 4;
_root.stat = "Slow Cell";
break;
case 6 :
_root.wbcell.rspeed = 40;
_root.stat = "Crazy Cell";
break;
case 7 :
_root.wbcell._xscale = 1000;
_root.wbcell._yscale = 1000;
_root.wbcell.speed = 30;
_root.wbcell.pwrTime = 25;
_root.stat = "Monster Cell";
break;
case 8 :
_root.wbcell.speed = 15;
_root.stat = "Fast Cell";
}
}
}
}
Frame 9
stop();
score = _root.germNmbr;
Instance of Symbol 49 MovieClip in Frame 9
on (keyPress "<Space>") {
if (_root.sel._currentframe == 1) {
_root.gotoAndPlay("bstart");
} else {
stopAllSounds();
_root.gotoAndPlay("menu");
}
}
onClipEvent (load) {
this.useHandCursor = false;
}
Frame 10
stop();
Instance of Symbol 171 MovieClip "soundClip" in Frame 10
onClipEvent (load) {
s = new Sound(_root.soundClip);
}
Frame 11
gnmbr = 100000 /* 0x0186A0 */;
speed = 5;
dup = 100;
rbNmbr = 0;
germNmbr = 0;
rnmbr = 1;
nmG = 1;
nmRB = 20;
del = false;
score = 0;
sq = new Sound(this);
sq.attachSound("squirt");
stat = "";
stop();
timer = 0;
atime = 0;
Instance of Symbol 10 MovieClip "rbcell" in Frame 11
onClipEvent (load) {
if (_name != "rbcell") {
_rotation = random(360);
rspeed = 5;
speed = _root.speed;
_root.rbNmbr = _root.rbNmbr + 1;
startspeed = random(10) + 10;
} else {
i = _root.nmRB;
while (i >= 1) {
duplicateMovieClip (this, "rb" + _root.rnmbr, _root.rnmbr);
_root["rb" + _root.rnmbr]._x = -30;
_root["rb" + _root.rnmbr]._y = random(400);
_root["rb" + _root.rnmbr].started = false;
_root.rnmbr++;
i--;
}
}
}
onClipEvent (enterFrame) {
if (_name != "rbcell") {
if (started) {
switchDir = random(15);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
} else {
_x = (_x + startspeed);
startspeed = startspeed * 0.9;
if (startspeed < 1) {
started = true;
}
}
if (_root.del) {
removeMovieClip(this);
}
}
}
Instance of Symbol 96 MovieClip "wbcell" in Frame 11
onClipEvent (load) {
rspeed = 7;
speed = 7;
_xscale = 200;
_yscale = 200;
_rotation = random(360);
rspeed = 5;
speed = _root.speed;
this.swapDepths(999998);
}
onClipEvent (enterFrame) {
switchDir = random(15);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
if (_root.del) {
removeMovieClip(this);
}
}
Instance of Symbol 100 MovieClip "germ" in Frame 11
onClipEvent (load) {
if (_name != "germ") {
_rotation = random(360);
rspeed = 5;
speed = _root.speed;
_root.germNmbr = _root.germNmbr + 1;
startspeed = random(10) + 10;
} else {
_root.sq.start();
i = _root.nmG;
while (i >= 1) {
duplicateMovieClip (this, "enm" + _root.gnmbr, _root.gnmbr);
_root["enm" + _root.gnmbr]._x = 590;
_root["enm" + _root.gnmbr]._y = random(400);
_root["enm" + _root.gnmbr].started = false;
_root.gnmbr++;
i--;
}
}
}
on (press) {
if (_name != "germ") {
if (started) {
this.play();
}
}
}
onClipEvent (enterFrame) {
if (_name != "germ") {
if (started) {
switchDir = random(15);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
} else {
_x = (_x - startspeed);
startspeed = startspeed * 0.9;
if (startspeed < 1) {
started = true;
}
}
if (hArea.hitTest(_root.wbcell.hArea) || (hArea.hitTest(_root.wbcell2.hArea))) {
this.gotoAndPlay("die");
speed = 0;
rspeed = 0;
startspeed = 0;
}
if (_root.del) {
removeMovieClip(this);
}
var i = _root.nmRB;
while (i >= 1) {
if (hArea.hitTest(_root["rb" + i])) {
_root["rb" + i].speed = 0;
_root["rb" + i].rspeed = 0;
_root["rb" + i].startspeed = 0;
_root["rb" + i].play();
}
i--;
}
}
}
Instance of Symbol 114 MovieClip in Frame 11
onClipEvent (enterFrame) {
_root.atime = _root.atime + 1;
_root.timer = Math.round(_root.atime / 24);
if (_root.germNmbr <= 0) {
_root.gotoAndStop("cLose");
_root.del = true;
}
if (_root.rbNmbr <= 0) {
_root.gotoAndStop("cWin");
_root.del = true;
}
}
Instance of Symbol 96 MovieClip "wbcell2" in Frame 11
onClipEvent (load) {
rspeed = 7;
speed = 7;
_xscale = 200;
_yscale = 200;
_rotation = random(360);
rspeed = 5;
speed = _root.speed;
this.swapDepths(999999);
}
onClipEvent (enterFrame) {
switchDir = random(15);
if (switchDir == 0) {
rspeed = rspeed * -1;
}
_rotation = (_rotation + rspeed);
_x = (_x + (speed * Math.sin(((_rotation + 180) * -1) * (Math.PI/180))));
_y = (_y + (speed * Math.cos(((_rotation + 180) * -1) * (Math.PI/180))));
if (_x > (550 - (_width / 2))) {
_x = (550 - (_width / 2));
}
if (_x < (_width / 2)) {
_x = (_width / 2);
}
if (_y < (_height / 2)) {
_y = (_height / 2);
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
if (_root.del) {
removeMovieClip(this);
}
}
Frame 12
stop();
score = 500 - _root.timer;
if (score < 0) {
score = 0;
}
del = true;
Instance of Symbol 49 MovieClip in Frame 12
on (keyPress "<Space>") {
if (_root.sel._currentframe == 1) {
_root.gotoAndPlay("cstart");
} else {
stopAllSounds();
_root.gotoAndPlay("menu");
}
}
Instance of Symbol 156 MovieClip "sel" in Frame 12
on (keyPress "<Up>") {
play();
}
on (keyPress "<Down>") {
play();
}
Frame 13
stop();
del = true;
Instance of Symbol 49 MovieClip in Frame 13
on (keyPress "<Space>") {
if (_root.sel._currentframe == 1) {
_root.gotoAndPlay("cstart");
} else {
stopAllSounds();
_root.gotoAndPlay("menu");
}
}
onClipEvent (load) {
this.useHandCursor = false;
}
Instance of Symbol 156 MovieClip "sel" in Frame 13
on (keyPress "<Up>") {
play();
}
on (keyPress "<Down>") {
play();
}
onClipEvent (load) {
this.useHandCursor = false;
}
Symbol 10 MovieClip Frame 1
stop();
Symbol 10 MovieClip Frame 15
_root.rbNmbr = _root.rbNmbr - 1;
removeMovieClip(this);
Symbol 24 MovieClip Frame 1
_parent.stop();
Symbol 24 MovieClip Frame 2
pcent_loaded = (100 / _root.getBytesTotal()) * _root.getBytesLoaded();
progbar._width = pcent_loaded;
if (_root.getBytesLoaded() >= _root.getBytesTotal()) {
_root.play();
}
Symbol 24 MovieClip Frame 3
gotoAndPlay (2);
Symbol 26 MovieClip Frame 1
stop();
Symbol 59 MovieClip Frame 1
stop();
Symbol 59 MovieClip Frame 2
stop();
Symbol 59 MovieClip Frame 3
stop();
Symbol 66 Button
on (release) {
xx = _quality;
_quality = "LOW";
if (xx == "LOW") {
_quality = "MEDIUM";
}
if (xx == "MEDIUM") {
_quality = "BEST";
}
if (xx == "BEST") {
_quality = "LOW";
}
}
Symbol 74 MovieClip Frame 1
stopAllSounds();
Symbol 74 MovieClip Frame 2
stop();
Symbol 79 Button
on (release) {
vol = _root.soundClip.s.getVolume();
if (vol > 1) {
_root.soundClip.s.setVolume(0);
}
if (vol == 0) {
_root.soundClip.s.setVolume(100);
}
}
Symbol 85 Button
on (release, keyPress "<Space>") {
play();
}
Symbol 96 MovieClip Frame 1
stop();
Instance of Symbol 88 MovieClip "hArea" in Symbol 96 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 100 MovieClip Frame 1
stop();
Instance of Symbol 88 MovieClip "hArea" in Symbol 100 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 100 MovieClip Frame 30
duplicateMovieClip (this, "enm" + _root.gnmbr, _root.gnmbr);
_root["enm" + _root.gnmbr].started = true;
_root.gnmbr = _root.gnmbr + 1;
_root.dup = _root.dup + 25;
Symbol 100 MovieClip Frame 31
gotoAndStop (1);
Symbol 100 MovieClip Frame 45
_root.score = _root.score + 1;
_root.germNmbr = _root.germNmbr - 1;
_root.dup = _root.dup - 25;
removeMovieClip(this);
Symbol 123 Button
on (release) {
if (namn != "") {
gotoAndPlay ("load");
}
}
Symbol 132 Button
on (release) {
gotoAndStop ("loaded");
}
Symbol 142 Button
on (press) {
getURL ("http://www.glaielgames.com/highscores/Cells/CellsA.asp", "_blank");
}
Symbol 147 Button
on (release) {
_root.gotoAndPlay("menu");
}
Symbol 148 MovieClip Frame 1
score = _root.score;
stop();
Symbol 148 MovieClip Frame 2
loadVariables ("http://www.glaielgames.com/highscores/Cells/asp/CellsA.asp", this, "POST");
Symbol 148 MovieClip Frame 3
if (loaded == "true") {
gotoAndStop ("loaded");
}
Symbol 148 MovieClip Frame 4
gotoAndPlay ("loop");
Symbol 148 MovieClip Frame 5
delete loaded;
stop();
Symbol 156 MovieClip Frame 1
stop();
Symbol 156 MovieClip Frame 2
stop();
Symbol 158 MovieClip Frame 1
stopAllSounds();
Symbol 158 MovieClip Frame 2
stop();
Symbol 163 Button
on (release) {
if (namn != "") {
gotoAndPlay ("load");
}
}
Symbol 165 Button
on (release) {
gotoAndStop ("loaded");
}
Symbol 166 Button
on (press) {
getURL ("http://www.glaielgames.com/highscores/Cells/CellsB.asp", "_blank");
}
Symbol 167 MovieClip Frame 1
score = _root.score;
stop();
Symbol 167 MovieClip Frame 2
loadVariables ("http://www.glaielgames.com/highscores/Cells/asp/CellsB.asp", this, "POST");
Symbol 167 MovieClip Frame 3
if (loaded == "true") {
gotoAndStop ("loaded");
}
Symbol 167 MovieClip Frame 4
gotoAndPlay ("loop");
Symbol 167 MovieClip Frame 5
delete loaded;
stop();
Symbol 169 Button
on (keyPress "<Up>") {
_root.sel.play();
}
on (keyPress "<Down>") {
_root.sel.play();
}
Symbol 171 MovieClip Frame 1
stopAllSounds();
Symbol 171 MovieClip Frame 2
stop();
Symbol 182 Button
on (release) {
if (namn != "") {
gotoAndPlay ("load");
}
}
Symbol 184 Button
on (release) {
gotoAndStop ("loaded");
}
Symbol 185 Button
on (press) {
getURL ("http://www.glaielgames.com/highscores/Cells/CellsC.asp", "_blank");
}
Symbol 186 MovieClip Frame 1
score = _root.score;
stop();
Symbol 186 MovieClip Frame 2
loadVariables ("http://www.glaielgames.com/highscores/Cells/asp/CellsC.asp", this, "POST");
Symbol 186 MovieClip Frame 3
if (loaded == "true") {
gotoAndStop ("loaded");
}
Symbol 186 MovieClip Frame 4
gotoAndPlay ("loop");
Symbol 186 MovieClip Frame 5
delete loaded;
stop();