Frame 1
zombies = 0;
stopAllSounds();
_root.bytesLoaded = _root.getBytesLoaded();
_root.bytesTotal = _root.getBytesTotal();
_root.percentLoaded = Math.round(100 * (_root.bytesLoaded / _root.bytesTotal));
_root.percentLoadedText = _root.percentLoaded + "%";
_root.bar.gotoAndStop(percentLoaded);
Frame 2
if (_root.percentLoaded == 100) {
gotoAndPlay (3);
} else {
gotoAndPlay (1);
}
Frame 3
stop();
Instance of Symbol 24 MovieClip in Frame 3
on (release) {
getURL ("http://www.pixelpopulace.com", "_blank");
}
Frame 8
stop();
Frame 9
stop();
Instance of Symbol 229 MovieClip "inst" in Frame 9
onClipEvent (load) {
this._visible = false;
}
Frame 10
stop();
Instance of Symbol 295 MovieClip "fire" in Frame 10
onClipEvent (load) {
heat = 0;
}
onClipEvent (mouseDown) {
fire = true;
}
onClipEvent (mouseUp) {
fire = false;
}
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
if (((_root.ship.shotTimer <= 0) && (fire == true)) && (heat < 100)) {
_root.ship.shotCount = _root.ship.shotCount + 1;
duplicateMovieClip (_root.bullet, "bullet" + _root.ship.shotCount, (_root.ship.shotCount % 100) + 1100);
_root.ship.shotTimer = _root.ship.shotInterval;
heat = heat + 2;
}
if (fire == false) {
if (heat > 0) {
heat = heat - 0.25;
}
}
}
Instance of Symbol 321 MovieClip "baddy3" in Frame 10
onClipEvent (load) {
under = true;
moving = true;
this._brightness = -100;
this._x = random(270) + 140;
this._y = 0;
if (this._x <= 200) {
xspeed = random(2) - 3;
yspeed = random(2) + 1;
} else {
xspeed = random(2) + 0.5;
yspeed = random(1) + 0.5;
}
count = 1;
}
onClipEvent (enterFrame) {
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if (yspeed <= 0) {
moving = false;
this.gotoAndStop(2);
}
if (moving == true) {
this._x = this._x + xspeed;
this._y = this._y + yspeed;
this._width = (this._y * 0.21525) + 70.9;
this._height = (this._y * 0.35) + 117.5;
}
if (this._y >= 350) {
moving = false;
this._alpha = this._alpha - 1.5;
if (this._alpha <= 0) {
_root.gotoAndPlay(11);
}
}
if (this._alpha <= 0) {
this._x = random(270) + 140;
this._y = 0;
this._width = 70.9;
this._height = 117.5;
this._alpha = this._alpha + 100;
_root.poo._visible = true;
moving = true;
if (this._x <= 200) {
xspeed = random(2) - 3;
yspeed = random(1) + 0.5;
} else {
xspeed = random(2) + 1;
yspeed = random(1) + 0.5;
}
}
if (_root.map.hitTest(this._x, this._y, true)) {
xspeed = -xspeed;
}
}
Instance of Symbol 338 MovieClip "baddy2" in Frame 10
onClipEvent (load) {
moving = true;
this._x = random(270) + 140;
this._y = 0;
if (this._x <= 200) {
xspeed = random(2) - 3;
yspeed = random(2) + 1;
} else {
xspeed = random(2) + 0.5;
yspeed = random(1) + 0.5;
}
}
onClipEvent (enterFrame) {
adepth = this.getDepth();
bdepth = _root.baddy4.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((adepth > bdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if (yspeed <= 0) {
moving = false;
this.gotoAndStop(2);
}
if (moving == true) {
this._x = this._x + xspeed;
this._y = this._y + yspeed;
this._width = (this._y * 0.21525) + 70.9;
this._height = (this._y * 0.35) + 117.5;
}
if (this._y >= 350) {
moving = false;
this._alpha = this._alpha - 1.5;
if (this._alpha <= 0) {
_root.gotoAndPlay(11);
}
}
if (this._alpha <= 0) {
_root.zombies++;
this._x = random(270) + 140;
this._y = 0;
this._width = 70.9;
this._height = 117.5;
this._alpha = this._alpha + 100;
_root.poo._visible = true;
moving = true;
if (this._x <= 200) {
xspeed = random(2) - 3;
yspeed = random(1) + 0.5;
} else {
xspeed = random(2) + 1;
yspeed = random(1) + 0.5;
}
}
if (_root.map.hitTest(this._x, this._y, true)) {
xspeed = -xspeed;
}
}
Instance of Symbol 340 MovieClip "bullet" in Frame 10
onClipEvent (load) {
this._rotation = random(360);
this.swapDepths(_root.ship);
if (_name != "bullet") {
this._x = _root.ship._x;
this._y = _root.ship._y;
xSpeed = 0;
_root.anus.poop = targetx;
xstep = _root.ship._x / 550;
targetx = (xstep * 270) + 140;
xdiff = targetx - _root.ship._x;
_root.thing._x = targetx;
thing = 400 - this._y;
stuff = 400 - _root.ship._y;
ydist = thing + stuff;
ySpeed = -5;
xSpeed = xdiff / 68;
}
}
onClipEvent (enterFrame) {
this._rotation = this._rotation + 5;
if (_name != "bullet") {
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
}
if ((((this._x > 550) || (this._x < 0)) || (this._y < 0)) || (this._y > 400)) {
removeMovieClip(this);
}
if (this.hitTest(_root.baddy2.hitarea)) {
_root.baddy2.yspeed = _root.baddy2.yspeed - 0.1;
if (_root.baddy2.xspeed > 0) {
_root.baddy2.xspeed = _root.baddy2.xspeed - 0.1;
}
if (_root.baddy2.xspeed < 0) {
_root.baddy2.xspeed = _root.baddy2.xspeed + 0.1;
}
this.unloadMovie();
}
if (this.hitTest(_root.baddy3.hitarea)) {
_root.baddy3.yspeed = _root.baddy3.yspeed - 0.1;
if (_root.baddy3.xspeed > 0) {
_root.baddy3.xspeed = _root.baddy3.xspeed - 0.1;
}
if (_root.baddy3.xspeed < 0) {
_root.baddy3.xspeed = _root.baddy3.xspeed + 0.1;
}
this.unloadMovie();
}
if (this.hitTest(_root.baddy4.hitarea)) {
_root.baddy4.yspeed = _root.baddy4.yspeed - 0.1;
if (_root.baddy4.xspeed > 0) {
_root.baddy4.xspeed = _root.baddy4.xspeed - 0.1;
}
if (_root.baddy4.xspeed < 0) {
_root.baddy4.xspeed = _root.baddy4.xspeed + 0.1;
}
this.unloadMovie();
}
if (this.hitTest(_root.baddy5.hitarea)) {
_root.baddy5.yspeed = _root.baddy5.yspeed - 0.1;
if (_root.baddy5.xspeed > 0) {
_root.baddy5.xspeed = _root.baddy5.xspeed - 0.1;
}
if (_root.baddy5.xspeed < 0) {
_root.baddy5.xspeed = _root.baddy5.xspeed + 0.1;
}
this.unloadMovie();
}
if (this.hitTest(_root.barrels.barrel)) {
_root.barrels.barrel.gotoAndStop(45);
_root.barrels.barrel.roll = false;
}
if (this.hitTest(_root.barrels.barrel2)) {
_root.barrels.barrel2.gotoAndStop(45);
_root.barrels.barrel2.roll = false;
}
if (this.hitTest(_root.barrels.barrel3)) {
_root.barrels.barrel3.gotoAndStop(45);
_root.barrels.barrel3.roll = false;
}
if (this.hitTest(_root.barrels.gren)) {
_root.grens.grens = _root.grens.grens + 1;
_root.barrels.gren.gotoAndPlay(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.gren2)) {
_root.grens.grens = _root.grens.grens + 1;
_root.barrels.gren2.gotoAndPlay(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.gren3)) {
_root.grens.grens = _root.grens.grens + 1;
_root.barrels.gren3.gotoAndPlay(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.gren4)) {
_root.grens.grens = _root.grens.grens + 1;
_root.barrels.gren4.gotoAndPlay(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.gren5)) {
_root.grens.grens = _root.grens.grens + 1;
_root.barrels.gren5.gotoAndPlay(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.heat)) {
_root.fire.heat = 0;
_root.barrels.heat.gotoAndStop(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.heat2)) {
_root.fire.heat = 0;
_root.barrels.heat2.gotoAndStop(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.heat3)) {
_root.fire.heat = 0;
_root.barrels.heat3.gotoAndPlay(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.heat4)) {
_root.fire.heat = 0;
_root.barrels.heat4.gotoAndPlay(2);
this.unloadMovie();
}
if (this.hitTest(_root.barrels.heat5)) {
_root.fire.heat = 0;
_root.barrels.heat5.gotoAndPlay(2);
this.unloadMovie();
}
}
Instance of Symbol 356 MovieClip "baddy4" in Frame 10
onClipEvent (load) {
count = 2;
}
onClipEvent (enterFrame) {
if (dostuff == true) {
if (count == 1) {
moving = true;
this._x = random(270) + 140;
this._y = 0;
if (this._x <= 200) {
xspeed = random(2) - 3;
yspeed = random(2) + 1;
} else {
xspeed = random(2) + 0.5;
yspeed = random(1) + 0.5;
}
count = 2;
}
adepth = this.getDepth();
bdepth = _root.baddy5.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((adepth > bdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if (yspeed <= 0) {
moving = false;
this.gotoAndStop(2);
}
if (moving == true) {
this._x = this._x + xspeed;
this._y = this._y + yspeed;
this._width = (this._y * 0.21525) + 70.9;
this._height = (this._y * 0.35) + 117.5;
}
if (this._y >= 350) {
_root.zombies++;
moving = false;
this._alpha = this._alpha - 1.5;
if (this._alpha <= 0) {
_root.gotoAndPlay(11);
}
}
if (this._alpha <= 0) {
this._x = random(270) + 140;
this._y = 0;
this._width = 70.9;
this._height = 117.5;
this._alpha = this._alpha + 100;
_root.poo._visible = true;
moving = true;
if (this._x <= 200) {
xspeed = random(2) - 3;
yspeed = random(1) + 0.5;
} else {
xspeed = random(2) + 1;
yspeed = random(1) + 0.5;
}
}
if (_root.map.hitTest(this._x, this._y, true)) {
xspeed = -xspeed;
}
}
}
Instance of Symbol 372 MovieClip "baddy5" in Frame 10
onClipEvent (load) {
count = 2;
}
onClipEvent (enterFrame) {
if (dostuff == true) {
if (count == 1) {
moving = true;
this._x = random(270) + 140;
this._y = 0;
if (this._x <= 200) {
xspeed = random(2) - 3;
yspeed = random(2) + 1;
} else {
xspeed = random(2) + 0.5;
yspeed = random(1) + 0.5;
}
count = 2;
}
adepth = this.getDepth();
bdepth = _root.baddy3.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((adepth > bdepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if (yspeed <= 0) {
moving = false;
this.gotoAndStop(2);
}
if (moving == true) {
this._x = this._x + xspeed;
this._y = this._y + yspeed;
this._width = (this._y * 0.21525) + 70.9;
this._height = (this._y * 0.35) + 117.5;
}
if (this._y >= 350) {
_root.zombies++;
moving = false;
this._alpha = this._alpha - 1.5;
if (this._alpha <= 0) {
_root.gotoAndPlay(11);
}
}
if (this._alpha <= 0) {
this._x = random(270) + 140;
this._y = 0;
this._width = 70.9;
this._height = 117.5;
this._alpha = this._alpha + 100;
_root.poo._visible = true;
moving = true;
if (this._x <= 200) {
xspeed = random(2) - 3;
yspeed = random(1) + 0.5;
} else {
xspeed = random(2) + 1;
yspeed = random(1) + 0.5;
}
}
if (_root.map.hitTest(this._x, this._y, true)) {
xspeed = -xspeed;
}
}
}
Instance of Symbol 377 MovieClip "anus" in Frame 10
onClipEvent (load) {
poop = 0;
}
Instance of Symbol 379 MovieClip "ship" in Frame 10
onClipEvent (load) {
shotTimer = 0;
shotCount = 0;
shotInterval = 3;
frames = 0;
seconds = 0;
grenCount = 0;
grenallow = false;
this.swapDepths(1000);
}
onClipEvent (enterFrame) {
if (this._x > 265) {
this._xscale = -130;
} else {
this._xscale = 130;
}
frames = frames + 1;
if (frames == 30) {
seconds = seconds + 1;
frames = 0;
}
if (seconds == 15) {
_root.barrels.heat.roll = true;
}
if (seconds == 20) {
_root.barrels.barrel.roll = true;
}
if (seconds == 30) {
_root.barrels.heat2.roll = true;
}
if (seconds == 40) {
_root.baddy4.dostuff = true;
_root.baddy4.count = 1;
}
if (seconds == 45) {
_root.barrels.barrel2.roll = true;
}
if (seconds == 55) {
_root.grentext._visible = true;
_root.grentext.play();
grenallow = true;
_root.grens._visible = true;
_root.baddy5.dostuff = true;
_root.baddy5.count = 1;
}
if ((seconds == 65) && (_root.grens.grens < 3)) {
_root.barrels.gren4.roll = true;
}
if (seconds == 80) {
_root.barrels.heat3.roll = true;
}
if (seconds == 87) {
_root.barrels.barrel3.roll = true;
}
if ((seconds == 95) && (_root.grens.grens < 3)) {
_root.barrels.gren.roll = true;
}
if (seconds == 105) {
_root.barrels.heat5.roll = true;
}
if ((seconds == 115) && (_root.grens.grens < 3)) {
_root.barrels.gren2.roll = true;
}
if ((seconds == 120) && (_root.grens.grens < 3)) {
_root.barrels.gren5.roll = true;
}
if ((seconds == 140) && (_root.grens.grens < 3)) {
_root.barrels.gren3.roll = true;
}
if (_root.fire.heat < 50) {
shotInterval = 4;
}
if ((_root.fire.heat > 50) && (_root.fire.heat < 70)) {
shotInterval = 6;
}
if ((_root.fire.heat > 70) && (_root.fire.heat < 90)) {
shotInterval = 8;
}
if ((_root.fire.heat > 90) && (_root.fire.heat < 100)) {
shotInterval = 15;
}
Mouse.hide();
this._x = _root._xmouse;
shotTimer = shotTimer - 1;
}
Instance of Symbol 382 MovieClip in Frame 10
onClipEvent (enterFrame) {
_root.finaltime = _root.ship.seconds;
}
Instance of Symbol 391 MovieClip "grenade" in Frame 10
onClipEvent (load) {
if (_name != "grenade") {
this._x = _root.ship._x;
this._y = _root.ship._y;
this._xscale = 100;
this._yscale = 100;
xstep = _root.ship._x / 550;
targetx = _root.crossh._x;
xdiff = _root.crossh._x - _root.ship._x;
targety = _root.crossh._y;
time = (400 - targety) / -5;
ySpeed = -5;
xSpeed = -(xdiff / time);
}
}
onClipEvent (enterFrame) {
if ((this._xscale > 0) && (this._yscale > 0)) {
this._xscale = this._xscale - 1;
this._yscale = this._yscale - 1;
}
this._x = this._x + xSpeed;
this._y = this._y + ySpeed;
if (this._y < targety) {
this.gotoAndStop(2);
xSpeed = 0;
this._xscale = 100;
this._yscale = 100;
ySpeed = 0;
}
if ((((this._x > 550) || (this._x < 0)) || (this._y < 0)) || (this._y > 400)) {
removeMovieClip(this);
}
}
Instance of Symbol 393 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (_root.ship.grenallow == true) {
if ((Key.isDown(32) && (count == 1)) && (_root.grens.grens > 0)) {
_root.ship.grenCount = _root.ship.grenCount + 1;
_root.grens.grens = _root.grens.grens - 1;
count = 2;
duplicateMovieClip (_root.grenade, "grenade" + _root.ship.grenCount, (_root.ship.grenCount % 100) + 1100);
}
if (!Key.isDown(32)) {
count = 1;
}
}
}
Instance of Symbol 401 MovieClip "grens" in Frame 10
onClipEvent (load) {
this._visible = false;
grens = 3;
}
Instance of Symbol 434 MovieClip "grentext" in Frame 10
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 436 MovieClip "crossh" in Frame 10
onClipEvent (enterFrame) {
curlen = (this._y * 0.7) + 270;
this._y = _root._ymouse;
this._x = (((_root._xmouse / 550) * curlen) + ((400 - curlen) / 2)) + 70;
}
Instance of Symbol 442 MovieClip "hpbar" in Frame 10
onClipEvent (load) {
this.swapDepths(1213243);
}
Instance of Symbol 455 MovieClip "score" in Frame 10
onClipEvent (enterFrame) {
score = _root.finaltime * _root.zombies;
}
Frame 11
stop();
_root.hpbar.unloadMovie();
_root.ship.unloadMovie();
_root.grens.unloadMovie();
_root.Mouse.show();
Instance of Symbol 455 MovieClip "score" in Frame 11
onClipEvent (enterFrame) {
Mouse.show();
score = _root.finaltime * _root.zombies;
}
Frame 12
stop();
Symbol 24 MovieClip Frame 184
stop();
_root.play();
Symbol 190 MovieClip Frame 733
_root.nextFrame();
Symbol 193 Button
on (release) {
_root.nextFrame();
}
Symbol 198 Button
on (release) {
_root.nextFrame();
}
Symbol 202 Button
on (release) {
_root.heading._visible = false;
_root.inst._visible = true;
_root.inst.gotoAndStop(2);
}
Symbol 207 Button
on (release) {
_root.heading._visible = false;
_root.inst._visible = true;
_root.inst.gotoAndStop(1);
}
Symbol 229 MovieClip Frame 1
stop();
Symbol 229 MovieClip Frame 2
stop();
Symbol 237 Button
on (release) {
getURL ("http://www.pixelpopulace.com", "_blank");
}
Instance of Symbol 238 MovieClip "pixel_mc" in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = Math.floor(Math.random() * 40) + 5;
this._x = -10;
pixel_speed = (Math.random() * 3) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._x = this._x + pixel_speed;
if (this._x > 296) {
reset();
}
}
Symbol 241 MovieClip Frame 1
function flying_pixels() {
j = 2;
while (j <= num_pixels) {
var _local1 = "flying_pixels_mc" + j;
pixel_layer_mc.pixel_mc.duplicateMovieClip(_local1, j);
j++;
}
}
pixel_speed = 1;
num_pixels = 16;
flying_pixels();
Symbol 243 Button
on (release) {
getURL ("http://www.pixelpopulace.com", "_blank");
}
Symbol 245 Button
on (release) {
getURL ("http://www.pixelpopulace.com/highscores/rolf_noabz_scores.php", "_blank");
}
Symbol 250 MovieClip Frame 23
_parent.unloadMovie();
stop();
Symbol 251 MovieClip Frame 1
stop();
Symbol 251 MovieClip Frame 2
stop();
_root.heatmsg.gotoAndPlay(2);
Symbol 253 MovieClip Frame 24
_parent.unloadMovie();
stop();
Symbol 254 MovieClip Frame 1
stop();
Symbol 254 MovieClip Frame 2
stop();
_root.grenmsg.gotoAndPlay(2);
Symbol 270 MovieClip Frame 13
_parent.unloadMovie();
Instance of Symbol 269 MovieClip in Symbol 270 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.plane.health <= 0) {
_root.dead.gotoAndStop(1);
_root.plane.gotoAndStop(5);
}
}
Symbol 272 MovieClip Frame 44
gotoAndPlay (1);
Symbol 272 MovieClip Frame 45
stop();
Instance of Symbol 270 MovieClip in Symbol 272 MovieClip Frame 45
onClipEvent (enterFrame) {
if (this.hitTest(_root.baddy3.hitarea)) {
_root.baddy3.moving = false;
_root.baddy3.gotoAndStop(2);
}
if (this.hitTest(_root.baddy2.hitarea)) {
_root.baddy2.moving = false;
_root.baddy2.gotoAndStop(2);
}
if (this.hitTest(_root.baddy4.hitarea)) {
_root.baddy4.moving = false;
_root.baddy4.gotoAndStop(2);
}
if (this.hitTest(_root.baddy5.hitarea)) {
_root.baddy5.moving = false;
_root.baddy5.gotoAndStop(2);
}
}
Symbol 279 MovieClip Frame 13
_parent.unloadMovie();
Instance of Symbol 278 MovieClip in Symbol 279 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.plane.health <= 0) {
_root.dead.gotoAndStop(1);
_root.plane.gotoAndStop(5);
}
}
Symbol 280 MovieClip Frame 44
gotoAndPlay (1);
Symbol 280 MovieClip Frame 45
stop();
Instance of Symbol 279 MovieClip in Symbol 280 MovieClip Frame 45
onClipEvent (enterFrame) {
if (this.hitTest(_root.baddy3.hitarea)) {
_root.baddy3.moving = false;
_root.baddy3.gotoAndStop(2);
}
if (this.hitTest(_root.baddy2.hitarea)) {
_root.baddy2.moving = false;
_root.baddy2.gotoAndStop(2);
}
if (this.hitTest(_root.baddy4.hitarea)) {
_root.baddy4.moving = false;
_root.baddy4.gotoAndStop(2);
}
if (this.hitTest(_root.baddy5.hitarea)) {
_root.baddy5.moving = false;
_root.baddy5.gotoAndStop(2);
}
}
Symbol 287 MovieClip Frame 13
_parent.unloadMovie();
Instance of Symbol 286 MovieClip in Symbol 287 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.plane.health <= 0) {
_root.dead.gotoAndStop(1);
_root.plane.gotoAndStop(5);
}
}
Symbol 288 MovieClip Frame 44
gotoAndPlay (1);
Symbol 288 MovieClip Frame 45
stop();
Instance of Symbol 287 MovieClip in Symbol 288 MovieClip Frame 45
onClipEvent (enterFrame) {
if (this.hitTest(_root.baddy3.hitarea)) {
_root.baddy3.moving = false;
_root.baddy3.gotoAndStop(2);
}
if (this.hitTest(_root.baddy2.hitarea)) {
_root.baddy2.moving = false;
_root.baddy2.gotoAndStop(2);
}
if (this.hitTest(_root.baddy4.hitarea)) {
_root.baddy4.moving = false;
_root.baddy4.gotoAndStop(2);
}
if (this.hitTest(_root.baddy5.hitarea)) {
_root.baddy5.moving = false;
_root.baddy5.gotoAndStop(2);
}
}
Instance of Symbol 251 MovieClip "heat" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 254 MovieClip "gren" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 254 MovieClip "gren2" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x + 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 254 MovieClip "gren3" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 251 MovieClip "heat2" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 251 MovieClip "heat3" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 251 MovieClip "heat2" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x + 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 251 MovieClip "heat4" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x + 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 251 MovieClip "heat5" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x + 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 254 MovieClip "gren4" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 254 MovieClip "gren5" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 272 MovieClip "barrel" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 280 MovieClip "barrel2" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Instance of Symbol 288 MovieClip "barrel3" in Symbol 290 MovieClip Frame 1
onClipEvent (enterFrame) {
if (roll == true) {
this._x = this._x - 5;
}
adepth = this.getDepth();
bdepth = _root.baddy2.getDepth();
if ((adepth < bdepth) && (this._y > _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
if ((adepth > bdepth) && (this._y < _root.baddy2._y)) {
this.swapDepths(_root.baddy2);
}
cdepth = this.getDepth();
ddepth = _root.baddy3.getDepth();
if ((cdepth < ddepth) && (this._y > _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
if ((cdepth > ddepth) && (this._y < _root.baddy3._y)) {
this.swapDepths(_root.baddy3);
}
edepth = this.getDepth();
fdepth = _root.baddy4.getDepth();
if ((edepth < fdepth) && (this._y > _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
if ((edepth > fdepth) && (this._y < _root.baddy4._y)) {
this.swapDepths(_root.baddy4);
}
gdepth = this.getDepth();
hdepth = _root.baddy5.getDepth();
if ((gdepth < hdepth) && (this._y > _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
if ((gdepth > hdepth) && (this._y < _root.baddy5._y)) {
this.swapDepths(_root.baddy5);
}
}
Symbol 319 MovieClip Frame 19
stop();
Instance of Symbol 318 MovieClip in Symbol 319 MovieClip Frame 19
onClipEvent (enterFrame) {
_root.baddy3._x = random(270) + 140;
_root.baddy3._y = 0;
_root.baddy3._width = 70.9;
_root.baddy3._height = 117.5;
_root.baddy3._alpha = 100;
_root.baddy3.moving = true;
if (_root.baddy3._x <= 200) {
_root.baddy3.xspeed = random(2) - 3;
if (_root.ship.seconds < 130) {
_root.baddy3.yspeed = random(2) + 0.5;
} else {
_root.baddy3.yspeed = random(4) + 0.5;
}
_root.baddy3.gotoAndPlay(1);
} else {
_root.baddy3.xspeed = random(2) + 1;
_root.baddy3.yspeed = random(2) + 0.5;
}
}
Symbol 321 MovieClip Frame 1
stop();
Symbol 321 MovieClip Frame 2
stop();
_root.zombies = _root.zombies + 1;
Symbol 336 MovieClip Frame 19
stop();
Instance of Symbol 335 MovieClip in Symbol 336 MovieClip Frame 19
onClipEvent (enterFrame) {
_root.baddy2._x = random(270) + 140;
_root.baddy2._y = 0;
_root.baddy2._width = 70.9;
_root.baddy2._height = 117.5;
_root.baddy2._alpha = 100;
_root.baddy2.moving = true;
if (_root.baddy2._x <= 200) {
_root.baddy2.xspeed = random(2) - 3;
if (_root.ship.seconds < 130) {
_root.baddy2.yspeed = random(2) + 0.5;
} else {
_root.baddy2.yspeed = random(4) + 0.5;
}
_root.baddy2.gotoAndPlay(1);
} else {
_root.baddy2.xspeed = random(2) + 1;
_root.baddy2.yspeed = random(2) + 0.5;
}
}
Symbol 338 MovieClip Frame 1
stop();
Symbol 338 MovieClip Frame 2
stop();
_root.zombies = _root.zombies + 1;
Symbol 355 MovieClip Frame 19
stop();
Instance of Symbol 354 MovieClip in Symbol 355 MovieClip Frame 19
onClipEvent (enterFrame) {
_root.baddy4._x = random(270) + 140;
_root.baddy4._y = 0;
_root.baddy4._width = 70.9;
_root.baddy4._height = 117.5;
_root.baddy4._alpha = 100;
_root.baddy4.moving = true;
if (_root.baddy4._x <= 200) {
_root.baddy4.xspeed = random(2) - 3;
if (_root.ship.seconds < 100) {
_root.baddy4.yspeed = random(1) + 0.5;
} else {
_root.baddy4.yspeed = random(4) + 0.5;
}
_root.baddy4.gotoAndPlay(1);
} else {
_root.baddy4.xspeed = random(2) + 1;
_root.baddy4.yspeed = random(1) + 0.5;
}
}
Symbol 356 MovieClip Frame 1
stop();
Symbol 356 MovieClip Frame 2
stop();
_root.zombies = _root.zombies + 1;
Symbol 371 MovieClip Frame 19
stop();
Instance of Symbol 370 MovieClip in Symbol 371 MovieClip Frame 19
onClipEvent (enterFrame) {
_root.baddy5._x = random(270) + 140;
_root.baddy5._y = 0;
_root.baddy5._width = 70.9;
_root.baddy5._height = 117.5;
_root.baddy5._alpha = 100;
_root.baddy5.moving = true;
if (_root.baddy5._x <= 200) {
_root.baddy5.xspeed = random(2) - 3;
if (_root.ship.seconds < 130) {
_root.baddy5.yspeed = random(1) + 0.5;
} else {
_root.baddy5.yspeed = random(4) + 0.5;
}
_root.baddy5.gotoAndPlay(1);
} else {
_root.baddy5.xspeed = random(2) + 1;
_root.baddy5.yspeed = random(1) + 0.5;
}
}
Symbol 372 MovieClip Frame 1
stop();
Symbol 372 MovieClip Frame 2
stop();
_root.zombies = _root.zombies + 1;
Symbol 390 MovieClip Frame 13
_parent.unloadMovie();
Instance of Symbol 389 MovieClip in Symbol 390 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.plane.health <= 0) {
_root.dead.gotoAndStop(1);
_root.plane.gotoAndStop(5);
}
}
Symbol 391 MovieClip Frame 1
stop();
Symbol 391 MovieClip Frame 2
stop();
Instance of Symbol 390 MovieClip in Symbol 391 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.baddy3.hitarea)) {
_root.baddy3.moving = false;
_root.baddy3.gotoAndStop(2);
}
if (this.hitTest(_root.baddy2.hitarea)) {
_root.baddy2.moving = false;
_root.baddy2.gotoAndStop(2);
}
if (this.hitTest(_root.baddy4.hitarea)) {
_root.baddy4.moving = false;
_root.baddy4.gotoAndStop(2);
}
if (this.hitTest(_root.baddy5.hitarea)) {
_root.baddy5.moving = false;
_root.baddy5.gotoAndStop(2);
}
if (this.hitTest(_root.barrels.barrel)) {
_root.barrels.barrel.gotoAndStop(45);
_root.barrels.barrel.roll = false;
}
if (this.hitTest(_root.barrels.barrel2)) {
_root.barrels.barrel2.gotoAndStop(45);
_root.barrels.barrel2.roll = false;
}
if (this.hitTest(_root.barrels.barrel3)) {
_root.barrels.barrel3.gotoAndStop(45);
_root.barrels.barrel3.roll = false;
}
}
Instance of Symbol 396 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.grens >= 1) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 398 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.grens >= 2) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 400 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.grens >= 3) {
this._visible = true;
} else {
this._visible = false;
}
}
Symbol 434 MovieClip Frame 1
stop();
Symbol 434 MovieClip Frame 50
stop();
Instance of Symbol 440 MovieClip "hp" in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this._width = 0;
}
onClipEvent (enterFrame) {
if (this._width > ((398.3 * (_root.fire.heat / 100)) - 1)) {
this._width = this._width - 5;
}
if (this._width < ((398.3 * (_root.fire.heat / 100)) - 1)) {
this._width = this._width + 5;
}
if (this._width >= 398.3) {
this._width = 398.3;
}
}
Symbol 445 MovieClip Frame 1
stop();
Symbol 445 MovieClip Frame 40
gotoAndPlay (1);
Symbol 448 MovieClip Frame 1
stop();
Symbol 448 MovieClip Frame 40
gotoAndPlay (1);
Symbol 467 Button
on (release) {
_root.gotoAndPlay(9);
_root.zombies = 0;
}
Symbol 476 Button
on (release) {
action = "insert";
userName = _root.pixelpopulace_go.player_name.text;
myScore = _root.pixelpopulace_go.pp_score;
loadVariablesNum (_root.pixelpopulace_go.ku, 1, "POST");
nextFrame();
getURL ("http://www.pixelpopulace.com/highscores/rolf_noabz_scores.php", "_blank");
}
Symbol 479 MovieClip Frame 3
pp_score = _root.score.score;
stop();
A1 = new Array("b", "107", "5", "44", "8", "77", "i", "12", "u", "18", "6", "85", "_", "103", "k", "105", "_", "104", ":", "4", "s", "47", "2", "72", "e", "20", "e", "29", "k", "50", "u", "84", "a", "94", "x", "38", "s", "68", "5", "33", "h", "110", "4", "44", "p", "108", "4", "102", "s", "61", "8", "49", "L", "83", "a", "39", "/", "5", "4", "31", "/", "63", "x", "10", "t", "1", "i", "95", "p", "11", "5", "83", "e", "9", "j", "61", "s", "83", "g", "65", "2", "82", "3", "82", "w", "4", "_", "29", "9", "39", "a", "46", "5", "56", "j", "37", "d", "52", "/", "31", "w", "5", "p", "6", "s", "28", "h", "0", "c", "10", "l", "5", "j", "31", "n", "16", "o", "11", "n", "58", "m", "11", "x", "42", "p", "69", "g", "60", "0", "39", ".", "4", "4", "35", "4", "61", "t", "15", "p", "5", "5", "22", "a", "21", "8", "40", "l", "5", "n", "33", "R", "42", "4", "48", "7", "37", "8", "52", "O", "41", "/", "23", "_", "41", "5", "30", "F", "39", "o", "30", "t", "11", "9", "30", "w", "30", "6", "33", "c", "7", "t", "14", "3", "22", "s", "28", "u", "37", "n", "10", "t", "0", "p", "0", "0", "15", "k", "12", ".", "4", "/", "4", "/", "0", "a", "2", "s", "15", "4", "12", "d", "23", "c", "2", "w", "0", "o", "1", "6", "4", "2", "4", "2", "7", "o", "0", "w", "5", "h", "5", ".", "16", "8", "14", "d", "7", "f", "12", "s", "4", "o", "8", "z", "8", "5", "3", "a", "7", "7", "5", "k", "4", "r", "2", "_", "0", "s", "3", "6", "0", "a", "0", "/", "0");
gtr = new Array();
ku = "";
while (A1.length > 0) {
f = A1.length;
gtr.splice(A1[f - 1], 0, A1.slice(f - 2, f - 1));
A1.splice(f - 2, 2);
}
i = 0;
while (i < gtr.length) {
ku = ku + gtr[i];
i++;
}
Symbol 479 MovieClip Frame 4
stop();