Frame 1
stop();
_global.glaser = false;
_global.mbullet = false;
_global.crew = false;
Frame 2
stop();
Frame 3
stop();
Frame 4
function scoreBonus() {
}
stop();
_global.bluelaser = false;
_global.doublelaser = false;
_global.laser = true;
_global.energy = true;
score = 0;
Instance of Symbol 72 MovieClip in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(1000) + 800;
this._y = random(200) + 100;
enemySpeed = random(3) + 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 72 MovieClip in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(1000) + 800;
this._y = random(200) + 100;
enemySpeed = random(2) + 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 72 MovieClip in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(1000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 78 MovieClip "mainStars" in Frame 4
onClipEvent (load) {
stars.duplicateMovieClip("stars2", 100);
stars2._x = stars._x + stars._width;
starsStartx = this._x;
starsSpeed = 8;
}
onClipEvent (enterFrame) {
this._x = this._x - 4;
if (_root.spaceship.scrollStart) {
this._x = this._x - starsSpeed;
}
}
onClipEvent (enterFrame) {
if (this._x <= (starsStartx - stars._width)) {
this._x = starsStartx - starsSpeed;
}
}
Instance of Symbol 92 MovieClip "ship1" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(1000) + 800;
this._y = random(200) + 100;
enemySpeed = random(4) + 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -110) {
reset();
}
}
Instance of Symbol 122 MovieClip "crew" in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(79) and (_global.crew == true)) {
play();
}
}
Instance of Symbol 136 MovieClip "spaceship" in Frame 4
onClipEvent (load) {
moveSpeed = 10;
_root.laser._visible = false;
_root.doublelaser._visible = false;
_root.bluelaser._visible = false;
laserCounter = 1;
doublelaserCounter = 1;
bluelaserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
maxdoubleLasers = 1;
maxblueLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.laser == true)) and (laserCounter <= maxLasers)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxLasers) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.doublelaser == true)) and (doublelaserCounter <= maxdoubleLasers)) {
doublelaserCounter++;
_root.doublelaser.duplicateMovieClip("doublelaser" + depthCounter, depthCounter);
_root["doublelaser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxdoubleLasers) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.bluelaser == true)) and (bluelaserCounter <= maxblueLasers)) {
bluelaserCounter++;
_root.bluelaser.duplicateMovieClip("bluelaser" + depthCounter, depthCounter);
_root["bluelaser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxblueLasers) {
depthCounter = 1;
}
}
if (Key.isDown(39)) {
if (this._x < scrollx) {
this._x = this._x + moveSpeed;
} else {
scrollStart = true;
}
} else if (Key.isDown(37) and (this._x > 10)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(40) and (this._y < 300)) {
gotoAndStop (2);
this._y = this._y + moveSpeed;
} else if (Key.isDown(38) and (this._y > 80)) {
gotoAndStop (3);
this._y = this._y - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
if (_global.energy == true) {
_root.energybar.play();
gotoAndStop (4);
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 39) {
scrollStart = false;
}
}
onClipEvent (keyUp) {
gotoAndStop (1);
}
Instance of Symbol 138 MovieClip in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(1000) + 4000;
this._y = random(200) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.healthbar.prevFrame();
}
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
gotoAndStop (1);
}
}
Instance of Symbol 146 MovieClip "chargebeam" in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
play();
}
}
Instance of Symbol 149 MovieClip in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(1000) + 3500;
this._y = random(200) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
gotoAndStop (1);
}
}
Instance of Symbol 154 MovieClip "explosion" in Frame 4
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (0 + _root.mainGround.groundSpeed);
} else {
this._x = this._x - 5;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(70)) {
play();
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 400;
}
}
Instance of Symbol 155 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(85) and (_global.glaser == true)) {
play();
}
}
Instance of Symbol 157 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(73) and (_global.mbullet == true)) {
play();
}
}
Instance of Symbol 84 MovieClip "laser" in Frame 4
onClipEvent (load) {
laserMoveSpeed = 60;
this._y = _root.spaceship._y + 40;
this._x = _root.spaceship._x + 50;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (this._x > 800) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
}
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 159 MovieClip "doublelaser" in Frame 4
onClipEvent (load) {
doublelaserMoveSpeed = 80;
this._y = _root.spaceship._y + 40;
this._x = _root.spaceship._x + 50;
}
onClipEvent (enterFrame) {
if (this._name != "doublelaser") {
this._x = this._x + doublelaserMoveSpeed;
if (this._x > 800) {
_root.spaceship.doublelaserCounter--;
this.removeMovieClip();
}
}
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 162 MovieClip in Frame 4
onClipEvent (load) {
function reset() {
this._x = 13000;
this._y = random(300) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 165 MovieClip "bluelaser" in Frame 4
onClipEvent (load) {
bluelaserMoveSpeed = 100;
this._y = _root.spaceship._y + 40;
this._x = _root.spaceship._x + 50;
}
onClipEvent (enterFrame) {
if (this._name != "bluelaser") {
this._x = this._x + bluelaserMoveSpeed;
if (this._x > 800) {
_root.spaceship.bluelaserCounter--;
this.removeMovieClip();
}
}
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 167 MovieClip in Frame 4
onClipEvent (load) {
function reset() {
this._x = 18000;
this._y = random(300) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy1" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy2" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy3" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy4" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy5" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy6" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy7" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy8" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 186 MovieClip "wheelenemy1" in Frame 4
onClipEvent (load) {
function reset() {
this._x = random(2000) + 900;
this._y = random(0) + 250;
enemySpeed = random(1) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -130) {
reset();
}
}
Instance of Symbol 188 MovieClip in Frame 4
onClipEvent (load) {
function reset() {
this._x = 20000;
this._y = random + 300;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("boss");
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 193 MovieClip "mainGround" in Frame 4
onClipEvent (load) {
ground.duplicateMovieClip("ground2", 100);
ground2._x = ground._x + ground._width;
groundStartx = this._x;
groundSpeed = 20;
}
onClipEvent (enterFrame) {
this._x = this._x - 10;
if (_root.spaceship.scrollStart == true) {
this._x = this._x - groundSpeed;
}
}
onClipEvent (enterFrame) {
if (this._x <= (groundStartx - ground._width)) {
this._x = groundStartx - groundSpeed;
}
}
Frame 5
stop();
Instance of Symbol 223 MovieClip "drillboss" in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.healthbar.play();
}
if (this.hitTest(_root.chargebeam)) {
_root.drillbosshealthbar.play();
}
if (this.hitTest(_root.explosion)) {
_root.drillbosshealthbar.play();
}
}
Instance of Symbol 228 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
}
Frame 6
stop();
Instance of Symbol 260 MovieClip in Frame 6
/* no clip actions */
Frame 9
_root.gotoAndStop("start");
Instance of Symbol 289 MovieClip in Frame 10
onClipEvent (load) {
stars.duplicateMovieClip("stars2", 100);
stars2._x = stars._x + stars._width;
starsStartx = this._x;
starsSpeed = 8;
}
onClipEvent (enterFrame) {
this._x = this._x - 4;
if (_root.spaceship.scrollStart) {
this._x = this._x - starsSpeed;
}
}
onClipEvent (enterFrame) {
if (this._x <= (starsStartx - stars._width)) {
this._x = starsStartx - starsSpeed;
}
}
Instance of Symbol 305 MovieClip "astroidenemy1" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(1500) + 900;
this._y = random(200) + 100;
enemySpeed = random(1) + 1;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -130) {
reset();
}
}
Instance of Symbol 186 MovieClip "wheelenemy1" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(2000) + 900;
this._y = random(0) + 250;
enemySpeed = random(1) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -130) {
reset();
}
}
Instance of Symbol 92 MovieClip "ship1" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(1000) + 800;
this._y = random(200) + 100;
enemySpeed = random(4) + 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -110) {
reset();
}
}
Instance of Symbol 122 MovieClip "crew" in Frame 10
onClipEvent (enterFrame) {
if (Key.isDown(79) and (_global.crew == true)) {
play();
}
}
Instance of Symbol 136 MovieClip "spaceship" in Frame 10
onClipEvent (load) {
moveSpeed = 10;
_root.laser._visible = false;
_root.doublelaser._visible = false;
_root.bluelaser._visible = false;
laserCounter = 1;
doublelaserCounter = 1;
bluelaserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
maxdoubleLasers = 1;
maxblueLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.laser == true)) and (laserCounter <= maxLasers)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxLasers) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.doublelaser == true)) and (doublelaserCounter <= maxdoubleLasers)) {
doublelaserCounter++;
_root.doublelaser.duplicateMovieClip("doublelaser" + depthCounter, depthCounter);
_root["doublelaser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxdoubleLasers) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.bluelaser == true)) and (bluelaserCounter <= maxblueLasers)) {
bluelaserCounter++;
_root.bluelaser.duplicateMovieClip("bluelaser" + depthCounter, depthCounter);
_root["bluelaser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxblueLasers) {
depthCounter = 1;
}
}
if (Key.isDown(39)) {
if (this._x < scrollx) {
this._x = this._x + moveSpeed;
} else {
scrollStart = true;
}
} else if (Key.isDown(37) and (this._x > 10)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(40) and (this._y < 300)) {
gotoAndStop (2);
this._y = this._y + moveSpeed;
} else if (Key.isDown(38) and (this._y > 80)) {
gotoAndStop (3);
this._y = this._y - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
if (_global.energy == true) {
_root.energybar.play();
gotoAndStop (4);
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 39) {
scrollStart = false;
}
}
onClipEvent (keyUp) {
gotoAndStop (1);
}
Instance of Symbol 138 MovieClip in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(1000) + 4000;
this._y = random(200) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.healthbar.prevFrame();
}
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
gotoAndStop (1);
}
}
Instance of Symbol 146 MovieClip "chargebeam" in Frame 10
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
play();
}
}
Instance of Symbol 149 MovieClip in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(1000) + 4500;
this._y = random(200) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
gotoAndStop (1);
}
}
Instance of Symbol 154 MovieClip "explosion" in Frame 10
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (0 + _root.mainGround.groundSpeed);
} else {
this._x = this._x - 5;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(70)) {
play();
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 400;
}
}
Instance of Symbol 155 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (Key.isDown(85) and (_global.glaser == true)) {
play();
}
}
Instance of Symbol 157 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (Key.isDown(73) and (_global.mbullet == true)) {
play();
}
}
Instance of Symbol 84 MovieClip "laser" in Frame 10
onClipEvent (load) {
laserMoveSpeed = 60;
this._y = _root.spaceship._y + 40;
this._x = _root.spaceship._x + 50;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (this._x > 800) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
}
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 159 MovieClip "doublelaser" in Frame 10
onClipEvent (load) {
doublelaserMoveSpeed = 80;
this._y = _root.spaceship._y + 40;
this._x = _root.spaceship._x + 50;
}
onClipEvent (enterFrame) {
if (this._name != "doublelaser") {
this._x = this._x + doublelaserMoveSpeed;
if (this._x > 800) {
_root.spaceship.doublelaserCounter--;
this.removeMovieClip();
}
}
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 162 MovieClip in Frame 10
onClipEvent (load) {
function reset() {
this._x = 13000;
this._y = random(200) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 165 MovieClip "bluelaser" in Frame 10
onClipEvent (load) {
bluelaserMoveSpeed = 100;
this._y = _root.spaceship._y + 40;
this._x = _root.spaceship._x + 50;
}
onClipEvent (enterFrame) {
if (this._name != "bluelaser") {
this._x = this._x + bluelaserMoveSpeed;
if (this._x > 800) {
_root.spaceship.bluelaserCounter--;
this.removeMovieClip();
}
}
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 167 MovieClip in Frame 10
onClipEvent (load) {
function reset() {
this._x = 18000;
this._y = random(200) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy1" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy2" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy3" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy4" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy5" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy6" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 176 MovieClip "enemy7" in Frame 10
onClipEvent (load) {
function reset() {
this._x = random(4000) + 800;
this._y = random(200) + 100;
enemySpeed = random(1) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
this.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
this.play();
}
if (this.hitTest(_root.explosion)) {
this.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
this.play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -10) {
reset();
}
}
Instance of Symbol 188 MovieClip in Frame 10
onClipEvent (load) {
function reset() {
this._x = 20000;
this._y = random + 300;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.gotoAndStop("boss2");
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
}
}
Instance of Symbol 193 MovieClip "mainGround" in Frame 10
onClipEvent (load) {
ground.duplicateMovieClip("ground2", 100);
ground2._x = ground._x + ground._width;
groundStartx = this._x;
groundSpeed = 20;
}
onClipEvent (enterFrame) {
this._x = this._x - 10;
if (_root.spaceship.scrollStart == true) {
this._x = this._x - groundSpeed;
}
}
onClipEvent (enterFrame) {
if (this._x <= (groundStartx - ground._width)) {
this._x = groundStartx - groundSpeed;
}
}
Frame 11
stop();
Instance of Symbol 349 MovieClip "android" in Frame 11
onClipEvent (enterFrame) {
if (this.left.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.right.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.beam0.beam.beam2.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
_root.androidhealthbar.play();
}
if (this.hitTest(_root.explosion)) {
_root.androidhealthbar.play();
}
}
Frame 12
stop();
Instance of Symbol 260 MovieClip in Frame 12
/* no clip actions */
Frame 13
stop();
Instance of Symbol 136 MovieClip "spaceship" in Frame 13
onClipEvent (load) {
moveSpeed = 10;
_root.laser._visible = false;
_root.doublelaser._visible = false;
_root.bluelaser._visible = false;
laserCounter = 1;
doublelaserCounter = 1;
bluelaserCounter = 1;
scrollx = _root.mainGround.ground._width / 3;
scrollStart = false;
maxLasers = 1;
maxdoubleLasers = 1;
maxblueLasers = 1;
depthCounter = 1;
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.laser == true)) and (laserCounter <= maxLasers)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxLasers) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.doublelaser == true)) and (doublelaserCounter <= maxdoubleLasers)) {
doublelaserCounter++;
_root.doublelaser.duplicateMovieClip("doublelaser" + depthCounter, depthCounter);
_root["doublelaser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxdoubleLasers) {
depthCounter = 1;
}
}
}
onClipEvent (enterFrame) {
if ((Key.isDown(32) and (_global.bluelaser == true)) and (bluelaserCounter <= maxblueLasers)) {
bluelaserCounter++;
_root.bluelaser.duplicateMovieClip("bluelaser" + depthCounter, depthCounter);
_root["bluelaser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxblueLasers) {
depthCounter = 1;
}
}
if (Key.isDown(39)) {
if (this._x < scrollx) {
this._x = this._x + moveSpeed;
} else {
scrollStart = true;
}
} else if (Key.isDown(37) and (this._x > 10)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(40) and (this._y < 300)) {
gotoAndStop (2);
this._y = this._y + moveSpeed;
} else if (Key.isDown(38) and (this._y > 80)) {
gotoAndStop (3);
this._y = this._y - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
if (_global.energy == true) {
_root.energybar.play();
gotoAndStop (4);
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 39) {
scrollStart = false;
}
}
onClipEvent (keyUp) {
gotoAndStop (1);
}
Instance of Symbol 138 MovieClip in Frame 13
onClipEvent (load) {
function reset() {
this._x = random(1000) + 4000;
this._y = random(200) + 100;
enemySpeed = 5;
}
reset();
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
_root.healthbar.prevFrame();
}
if (this.hitTest(_root.spaceship)) {
play();
}
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -100) {
reset();
gotoAndStop (1);
}
}
Instance of Symbol 146 MovieClip "chargebeam" in Frame 13
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
play();
}
}
Frame 14
score = 0;
_global.bluelaser = false;
_global.doublelaser = false;
_global.laser = true;
_global.energy = true;
_root.gotoAndStop("level_2");
Frame 15
var keyListener = new Object();
keyListener.onKeyUp = function () {
if (_global.facing_direction == 1) {
_root.fox.gotoAndStop(1);
}
if (_global.facing_direction == -1) {
_root.fox.gotoAndStop(2);
}
if (_global.end == true) {
_root.fox.gotoAndStop("running2");
}
if (_global.jumping == true) {
_root.fox.gotoAndStop("jumping2");
}
if (_global.end == true) {
_root.fox.gotoAndStop("running2");
}
if (_global.flying == true) {
_root.fox.gotoAndStop("flying");
}
_global.bg_speed = 5;
};
Key.addListener(keyListener);
var jump_sound = new Sound();
jump_sound.attachSound("jump");
var bg_sound = new Sound();
bg_sound.attachSound("bg");
var eep_sound = new Sound();
eep_sound.attachSound("eep");
var splash_sound = new Sound();
splash_sound.attachSound("splash");
var shoot_sound = new Sound();
shoot_sound.attachSound("shoot");
var platform_sound = new Sound();
platform_sound.attachSound("platform");
Instance of Symbol 367 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit)) {
_root.gotoAndStop("retry3");
}
}
Frame 16
_global.bg_speed = 5;
_global.jumping = false;
_global.on_solid_ground = true;
_global.gravity = false;
_global.flying = false;
_global.dead = false;
_global.hit = false;
_global.end = false;
_global.collection = 0;
stop();
Instance of Symbol 473 MovieClip "fox" in Frame 16
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_global.facing_direction = 1;
_root.bg._x = _root.bg._x - _global.bg_speed;
_root.clouds._x = _root.clouds._x - (_global.bg_speed / 5);
_global.gravity = true;
if (_global.flying == true) {
_global.gravity = false;
}
if (_global.jumping == true) {
_global.hit = false;
}
if (((((_global.jumping == false) and (_global.flying == false)) and (_global.hit == false)) and (_global.running == false)) and (_global.end == false)) {
_root.fox.gotoAndStop("walking2");
}
if (((((_global.jumping == false) and (_global.flying == false)) and (_global.hit == false)) and (_global.bg_speed == 15)) and (_global.end == false)) {
_root.fox.gotoAndStop("running2");
_global.running = true;
} else {
_global.running = false;
}
if ((_global.jumping == true) and (_global.flying == false)) {
_root.fox.gotoAndStop("jumping2");
}
if (((_global.on_solid_ground == false) and (_global.jumping == false)) and (_global.flying == true)) {
_root.fox.gotoAndStop("flying");
}
if (_global.dead == true) {
_root.fox.gotoAndStop("dead");
}
if (_global.hit == true) {
_root.fox.gotoAndStop("hit");
_global.on_solid_ground = false;
}
if (_global.ending == true) {
_root.fox.gotoAndStop("running2");
_global.gravity = false;
_global.bg_speed = 0;
}
if (_global.bg_speed < 15) {
_global.bg_speed = _global.bg_speed + 0.5;
}
}
if (Key.isDown(37)) {
_global.facing_direction = -1;
_root.bg._x = _root.bg._x + _global.bg_speed;
_root.clouds._x = _root.clouds._x + (_global.bg_speed / 5);
_global.gravity = true;
if (_global.flying == true) {
_global.gravity = false;
}
if (((((_global.jumping == false) and (_global.flying == false)) and (_global.hit == false)) and (_global.running == false)) and (_global.end == false)) {
_root.fox.gotoAndStop("walking");
}
if (((((_global.jumping == false) and (_global.flying == false)) and (_global.hit == false)) and (_global.bg_speed == 15)) and (_global.end == false)) {
_root.fox.gotoAndStop("running");
_global.running = true;
} else {
_global.running = false;
}
if ((_global.jumping == true) and (_global.flying == false)) {
_root.fox.gotoAndStop("jumping");
}
if (((_global.on_solid_ground == false) and (_global.jumping == false)) and (_global.flying == true)) {
_root.fox.gotoAndStop("flying2");
}
if (_global.dead == true) {
_root.fox.gotoAndStop("dead");
}
if (_global.hit == true) {
_root.fox.gotoAndStop("hit");
_global.gravity = false;
}
if (_global.ending == true) {
_root.fox.gotoAndStop("running2");
_global.gravity = false;
_global.bg_speed = 0;
}
if (_global.bg_speed < 15) {
_global.bg_speed = _global.bg_speed + 0.5;
}
}
if (Key.isDown(38)) {
if (_global.on_solid_ground == true) {
_root.jump_meter.play();
_global.hit = false;
}
}
if (Key.isDown(40)) {
if (_global.flying == true) {
_root.fly_meter.gotoAndPlay("falling");
}
if (_global.jumping == true) {
_root.jump_meter.gotoAndPlay("falling");
}
if (_global.on_solid_ground == true) {
_root.fox.gotoAndStop("withdraw");
}
}
if (Key.isDown(32)) {
if (_global.on_solid_ground == true) {
_root.fox.fox2.play();
}
if (((_global.on_solid_ground == false) and (_global.jumping == true)) and (_global.flying == false)) {
_root.fox.gotoAndStop("flying");
_root.fly_meter.play();
_root.jump_meter.gotoAndStop(1);
}
}
}
Frame 17
gotoAndStop (15);
Frame 18
_global.shoot = false;
_global.follow = false;
Instance of Symbol 516 MovieClip "inship" in Frame 18
onClipEvent (enterFrame) {
if (Key.isDown(38) and (_root.flight._y < -30)) {
_root.flight._y = _root.flight._y + 20;
}
if (Key.isDown(39) and (_root.flight._x > -1117)) {
_root.flight._x = _root.flight._x - 20;
}
if (Key.isDown(40) and (_root.flight._y > -637)) {
_root.flight._y = _root.flight._y - 20;
}
if (Key.isDown(37) and (_root.flight._x < 0)) {
_root.flight._x = _root.flight._x + 20;
}
if (Key.isDown(32) and (_global.shoot == false)) {
_root.inship.gotoAndStop(3);
}
}
Instance of Symbol 523 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (Key.isDown(70) and (_global.follow == true)) {
_root.flight.nextFrame();
_root.healthbar.stop();
_root.gotoAndStop("loop");
}
}
Frame 20
_root.flight.gotoAndStop("wolfdie");
Instance of Symbol 537 MovieClip "unlock" in Frame 20
onClipEvent (enterFrame) {
if (_root.score >= 12000) {
_root.unlock.gotoAndStop(2);
}
if (_root.score >= 25000) {
_root.unlock.gotoAndStop(3);
}
if (_root.score >= 29000) {
_root.unlock.gotoAndStop(4);
}
}
Frame 24
stop();
Symbol 11 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
_root.play();
}
Symbol 11 MovieClip Frame 2
gotoAndPlay (1);
Symbol 29 Button
on (release) {
gotoAndStop ("menu");
}
Symbol 30 MovieClip Frame 1
stop();
Symbol 46 Button
on (release) {
gotoAndStop ("start");
}
Symbol 51 Button
on (release) {
gotoAndStop ("controls");
}
Symbol 57 Button
on (release) {
gotoAndPlay ("credits");
}
Symbol 84 MovieClip Frame 1
stop();
Symbol 84 MovieClip Frame 2
stop();
Symbol 86 MovieClip Frame 1
stop();
Instance of Symbol 85 MovieClip in Symbol 86 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship)) {
_root.ship1.laseraction.play();
}
}
Symbol 86 MovieClip Frame 2
stop();
Symbol 92 MovieClip Frame 1
stop();
Instance of Symbol 81 MovieClip "ship" in Symbol 92 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
_root.ship1.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
_root.ship1.play();
}
if (this.hitTest(_root.explosion)) {
_root.ship1.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
_root.ship1.play();
}
}
Symbol 92 MovieClip Frame 2
stop();
Symbol 92 MovieClip Frame 5
_root.score = _root.score + 150;
Symbol 92 MovieClip Frame 6
stop();
Symbol 108 MovieClip Frame 60
stop();
Symbol 122 MovieClip Frame 1
stop();
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 217
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 217
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 217
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 236
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 256
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 257
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 267
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 276
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 293
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 303
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 313
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 314
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 323
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 332
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 383
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 387
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 391
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 401
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 405
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 408
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 413
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 417
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 122 MovieClip Frame 420
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 108 MovieClip in Symbol 122 MovieClip Frame 426
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
}
if (this.hitTest(_root.android.left)) {
}
if (this.hitTest(_root.android.right)) {
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
}
}
Instance of Symbol 108 MovieClip in Symbol 122 MovieClip Frame 432
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
}
if (this.hitTest(_root.android.left)) {
}
if (this.hitTest(_root.android.right)) {
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
}
}
Instance of Symbol 108 MovieClip in Symbol 122 MovieClip Frame 437
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
}
if (this.hitTest(_root.android.left)) {
}
if (this.hitTest(_root.android.right)) {
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
}
}
Instance of Symbol 121 MovieClip in Symbol 122 MovieClip Frame 549
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
}
if (this.hitTest(_root.android.left)) {
}
if (this.hitTest(_root.android.right)) {
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
}
}
Symbol 122 MovieClip Frame 661
gotoAndStop ("stop");
Symbol 136 MovieClip Frame 1
stop();
Symbol 138 MovieClip Frame 1
stop();
Symbol 138 MovieClip Frame 13
stop();
Symbol 142 MovieClip Frame 1
stop();
Symbol 142 MovieClip Frame 2
stop();
Symbol 142 MovieClip Frame 3
stop();
Symbol 142 MovieClip Frame 4
stop();
Symbol 142 MovieClip Frame 5
stop();
Symbol 142 MovieClip Frame 6
stop();
Symbol 142 MovieClip Frame 7
stop();
Symbol 142 MovieClip Frame 8
stop();
Symbol 142 MovieClip Frame 9
stop();
Symbol 142 MovieClip Frame 10
stop();
Symbol 142 MovieClip Frame 11
stop();
Symbol 142 MovieClip Frame 12
stop();
Symbol 142 MovieClip Frame 13
stop();
Symbol 142 MovieClip Frame 14
stop();
Symbol 142 MovieClip Frame 15
stop();
Symbol 142 MovieClip Frame 16
stop();
Symbol 142 MovieClip Frame 17
stop();
Symbol 142 MovieClip Frame 18
stop();
Symbol 142 MovieClip Frame 19
stop();
Symbol 142 MovieClip Frame 20
stop();
Symbol 142 MovieClip Frame 21
stop();
Symbol 142 MovieClip Frame 22
stop();
Symbol 142 MovieClip Frame 23
stop();
Symbol 142 MovieClip Frame 24
stop();
Symbol 142 MovieClip Frame 25
stop();
Symbol 142 MovieClip Frame 26
stop();
Symbol 142 MovieClip Frame 27
stop();
Symbol 142 MovieClip Frame 28
stop();
Symbol 142 MovieClip Frame 29
stop();
Symbol 142 MovieClip Frame 30
stop();
Symbol 142 MovieClip Frame 31
stop();
Symbol 142 MovieClip Frame 32
stop();
Symbol 142 MovieClip Frame 33
stop();
Symbol 142 MovieClip Frame 34
stop();
Symbol 142 MovieClip Frame 35
stop();
Symbol 142 MovieClip Frame 36
stop();
Symbol 142 MovieClip Frame 37
stop();
Symbol 142 MovieClip Frame 38
stop();
Symbol 142 MovieClip Frame 39
stop();
Symbol 142 MovieClip Frame 40
stop();
Symbol 142 MovieClip Frame 41
stop();
Symbol 142 MovieClip Frame 42
stop();
Symbol 142 MovieClip Frame 43
stop();
Symbol 142 MovieClip Frame 44
stop();
Symbol 142 MovieClip Frame 45
stop();
Symbol 142 MovieClip Frame 46
stop();
Symbol 142 MovieClip Frame 47
stop();
Symbol 142 MovieClip Frame 48
stop();
Symbol 142 MovieClip Frame 49
stop();
Symbol 142 MovieClip Frame 50
stop();
Symbol 142 MovieClip Frame 51
stop();
Symbol 142 MovieClip Frame 52
stop();
Symbol 142 MovieClip Frame 53
stop();
Symbol 142 MovieClip Frame 54
stop();
Symbol 142 MovieClip Frame 55
stop();
Symbol 142 MovieClip Frame 56
stop();
Symbol 142 MovieClip Frame 57
stop();
Symbol 142 MovieClip Frame 58
stop();
Symbol 142 MovieClip Frame 59
stop();
Symbol 142 MovieClip Frame 60
_global.energy = false;
_root.spaceship.gotoAndStop(1);
Symbol 142 MovieClip Frame 200
_global.energy = true;
Symbol 146 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 2
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 3
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 4
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 5
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 6
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 7
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 8
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 9
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 10
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 11
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 12
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 13
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 14
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 15
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 16
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 17
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 18
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 19
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 20
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 21
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 22
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 23
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 24
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 25
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 26
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 27
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 28
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 29
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 30
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 31
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 32
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 33
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 34
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 35
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 36
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 37
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 38
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 39
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 40
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 41
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 42
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 43
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 44
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 146 MovieClip Frame 45
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
if (Key.isDown(68)) {
gotoAndPlay (47);
}
Symbol 146 MovieClip Frame 46
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
if (Key.isDown(68)) {
gotoAndPlay (47);
}
gotoAndPlay (45);
Symbol 149 MovieClip Frame 1
stop();
Symbol 149 MovieClip Frame 2
stop();
_root.explosion.gotoAndStop(1);
Symbol 154 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 61
stop();
Symbol 154 MovieClip Frame 62
stop();
gotoAndStop ("stop");
Symbol 155 MovieClip Frame 1
stop();
Symbol 155 MovieClip Frame 2
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 3
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 4
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 5
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 6
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 7
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 8
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 9
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 10
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 118 MovieClip in Symbol 155 MovieClip Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
}
if (this.hitTest(_root.android.left)) {
}
if (this.hitTest(_root.android.right)) {
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
}
}
Symbol 155 MovieClip Frame 11
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 12
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 13
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 14
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 15
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 16
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 17
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 18
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 19
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 20
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 21
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 22
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 23
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 24
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 25
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 26
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 27
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 28
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 29
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 30
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 31
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 32
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 33
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 34
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 35
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 36
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 37
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 38
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 39
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 40
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 41
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 42
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 43
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 44
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 45
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 46
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 47
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 48
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 49
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 50
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 51
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 52
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 53
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 54
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 55
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 56
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 57
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 58
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 59
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 60
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 61
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 62
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 63
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 64
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 65
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 66
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 67
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 68
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 69
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 70
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 71
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 72
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 73
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 74
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 75
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 76
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 77
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 78
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 79
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 80
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 81
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 82
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 83
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 84
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 85
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 86
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 87
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 88
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 89
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 90
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 91
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 92
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 93
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 94
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 95
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 96
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 97
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 98
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 99
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 100
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 101
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 155 MovieClip Frame 102
stop();
Symbol 155 MovieClip Frame 103
gotoAndStop ("stop");
Symbol 157 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 2
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 3
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 4
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 5
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 6
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 7
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 8
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 9
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 10
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 11
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 12
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 13
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 14
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 15
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 16
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 17
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 18
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 19
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 20
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 21
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 22
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 23
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 24
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 25
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 26
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 27
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 28
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 29
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 30
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 31
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 32
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 33
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 34
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 35
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 36
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 37
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 38
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 39
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 40
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 41
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 42
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 43
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 44
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 45
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 46
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 47
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 48
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 49
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 50
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 51
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 52
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 53
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 54
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 55
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 56
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 57
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 58
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 59
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 60
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 61
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 62
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 63
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 64
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 65
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 66
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 67
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
if (Key.isDown(73)) {
gotoAndPlay ("shoot");
}
Symbol 157 MovieClip Frame 68
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
if (Key.isDown(73)) {
gotoAndPlay ("shoot");
}
gotoAndPlay ("loop");
Symbol 157 MovieClip Frame 69
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 69
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 70
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 71
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 72
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 73
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 74
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 75
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 76
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 77
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 78
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 78
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 79
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 80
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 81
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 81
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 82
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 83
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 84
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 84
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 85
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 86
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 87
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 87
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 88
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 89
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 90
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 90
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 90
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 91
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 92
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 93
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 93
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 93
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 94
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 95
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 96
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 96
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 96
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 97
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 98
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 99
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 99
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 99
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 100
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 101
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 102
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 102
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 102
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 103
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 104
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 105
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 105
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 106
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 107
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 108
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 108
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 109
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 110
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 111
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 111
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 111
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 112
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 113
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 114
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 114
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 115
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 116
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 117
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 118
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 119
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 120
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 120
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 120
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 121
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 122
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 123
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 123
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 123
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 124
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 125
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 126
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 126
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 127
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 128
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 129
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 129
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 130
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 131
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 132
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 133
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 134
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 135
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 135
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 135
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 136
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 137
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 138
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 138
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 138
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 139
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 140
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 141
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 142
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 143
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 144
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 144
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 144
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 145
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 146
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 147
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 147
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 148
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 149
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 150
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 150
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 151
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 152
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 153
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 153
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 154
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 155
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 156
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 156
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 157
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 158
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 159
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 159
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 160
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 161
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 162
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 162
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 163
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 164
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 165
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Instance of Symbol 84 MovieClip in Symbol 157 MovieClip Frame 165
onClipEvent (enterFrame) {
if (this.hitTest(_root.android.head)) {
_root.androidhealthbar.play();
this.play();
}
if (this.hitTest(_root.android.left)) {
this.play();
}
if (this.hitTest(_root.android.right)) {
this.play();
}
if (this.hitTest(_root.ship1.ship)) {
_root.ship1.play();
this.play();
}
if (this.hitTest(_root.wheelenemy1.wheelenemy)) {
_root.wheelenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy1.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy1.play();
this.play();
}
if (this.hitTest(_root.astroidenemy2.astroidenemymove.astroidenemyhit1)) {
_root.astroidenemy2.play();
this.play();
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.play();
this.play();
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.play();
this.play();
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.play();
this.play();
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.play();
this.play();
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.play();
this.play();
}
if (this.hitTest(_root.enemy6)) {
_root.enemy6.play();
this.play();
}
if (this.hitTest(_root.enemy7)) {
_root.enemy7.play();
this.play();
}
if (this.hitTest(_root.enemy8)) {
_root.enemy8.play();
this.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.drillboss)) {
_root.drillbosshealthbar.play();
this.play();
}
}
Symbol 157 MovieClip Frame 166
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 167
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 168
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 169
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 170
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 171
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 172
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 173
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 174
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 175
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 176
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 177
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 178
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 179
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 180
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 181
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 182
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 183
this._y = _root.spaceship._y + 20;
this._x = _root.spaceship._x + 70;
Symbol 157 MovieClip Frame 184
stop();
Symbol 157 MovieClip Frame 185
gotoAndStop ("stop");
Symbol 159 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 2
stop();
Symbol 162 MovieClip Frame 1
stop();
Symbol 162 MovieClip Frame 2
stop();
_global.bluelaser = false;
_global.laser = false;
_global.doublelaser = true;
Symbol 165 MovieClip Frame 1
stop();
Symbol 165 MovieClip Frame 2
stop();
Symbol 167 MovieClip Frame 1
stop();
Symbol 167 MovieClip Frame 2
stop();
_global.bluelaser = true;
_global.laser = false;
_global.doublelaser = false;
Symbol 176 MovieClip Frame 1
stop();
Symbol 176 MovieClip Frame 4
_root.score = _root.score + 100;
Symbol 176 MovieClip Frame 5
stop();
Symbol 186 MovieClip Frame 1
stop();
Instance of Symbol 180 MovieClip "wheelenemy" in Symbol 186 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
_root.wheelenemy1.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
_root.wheelenemy1.play();
}
if (this.hitTest(_root.explosion)) {
_root.wheelenemy1.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
_root.wheelenemy1.play();
}
}
Symbol 186 MovieClip Frame 2
stop();
Symbol 186 MovieClip Frame 3
stop();
Symbol 186 MovieClip Frame 7
_root.score = _root.score + 200;
Symbol 186 MovieClip Frame 8
stop();
Symbol 216 MovieClip Frame 1
stop();
Symbol 216 MovieClip Frame 4
stop();
Symbol 216 MovieClip Frame 7
stop();
Symbol 216 MovieClip Frame 10
stop();
Symbol 216 MovieClip Frame 13
stop();
Symbol 216 MovieClip Frame 16
stop();
Symbol 216 MovieClip Frame 19
stop();
Symbol 216 MovieClip Frame 22
stop();
Symbol 216 MovieClip Frame 25
Symbol 216 MovieClip Frame 28
stop();
Symbol 216 MovieClip Frame 31
stop();
Symbol 216 MovieClip Frame 34
stop();
Symbol 216 MovieClip Frame 37
stop();
Symbol 216 MovieClip Frame 40
stop();
Symbol 216 MovieClip Frame 43
stop();
Symbol 216 MovieClip Frame 46
stop();
Symbol 216 MovieClip Frame 49
stop();
Symbol 216 MovieClip Frame 52
stop();
Symbol 216 MovieClip Frame 55
stop();
_root.crew.play();
Symbol 216 MovieClip Frame 58
stop();
Symbol 216 MovieClip Frame 61
stop();
Symbol 216 MovieClip Frame 64
stop();
Symbol 216 MovieClip Frame 67
stop();
_root.gotoAndStop("gameover");
Symbol 223 MovieClip Frame 200
gotoAndPlay (40);
Symbol 228 MovieClip Frame 200
gotoAndPlay (40);
Symbol 250 MovieClip Frame 1
stop();
Symbol 250 MovieClip Frame 8
stop();
Symbol 250 MovieClip Frame 15
stop();
Symbol 250 MovieClip Frame 22
stop();
Symbol 250 MovieClip Frame 29
stop();
Symbol 250 MovieClip Frame 36
stop();
Symbol 250 MovieClip Frame 43
stop();
Symbol 250 MovieClip Frame 50
stop();
Symbol 250 MovieClip Frame 57
Symbol 250 MovieClip Frame 64
stop();
Symbol 250 MovieClip Frame 71
stop();
Symbol 250 MovieClip Frame 78
stop();
Symbol 250 MovieClip Frame 85
stop();
Symbol 250 MovieClip Frame 92
stop();
Symbol 250 MovieClip Frame 99
stop();
Symbol 250 MovieClip Frame 106
stop();
Symbol 250 MovieClip Frame 113
stop();
Symbol 250 MovieClip Frame 120
stop();
Symbol 250 MovieClip Frame 127
stop();
Symbol 250 MovieClip Frame 134
stop();
Symbol 250 MovieClip Frame 141
stop();
Symbol 250 MovieClip Frame 148
stop();
Symbol 250 MovieClip Frame 155
stop();
_root.score = _root.score + 1000;
_root.gotoAndStop("youwin1");
Symbol 260 MovieClip Frame 61
stop();
Symbol 264 Button
on (release) {
gotoAndStop ("retry");
}
Symbol 269 MovieClip Frame 80
stop();
Symbol 274 Button
on (release) {
gotoAndStop ("takeoff");
}
Symbol 284 MovieClip Frame 257
_root.gotoAndStop("level_2");
Symbol 284 MovieClip Frame 258
stop();
Instance of Symbol 292 MovieClip "astroidenemyhit1" in Symbol 296 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
_root.astroidenemy1.gotoAndPlay(7);
}
if (this.hitTest(_root.spaceship.spaceroll)) {
_root.astroidenemy1.gotoAndPlay(7);
}
if (this.hitTest(_root.explosion)) {
_root.astroidenemy1.gotoAndPlay(7);
}
if (this.hitTest(_root.chargebeam.chargehit)) {
_root.astroidenemy1.gotoAndPlay(7);
}
}
Instance of Symbol 292 MovieClip in Symbol 296 MovieClip Frame 52
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
_root.astroidenemy1.gotoAndPlay(7);
}
if (this.hitTest(_root.spaceship.spaceroll)) {
_root.astroidenemy1.gotoAndPlay(7);
}
if (this.hitTest(_root.explosion)) {
_root.astroidenemy1.gotoAndPlay(7);
}
if (this.hitTest(_root.chargebeam.chargehit)) {
_root.astroidenemy1.gotoAndPlay(7);
}
}
Instance of Symbol 292 MovieClip in Symbol 296 MovieClip Frame 100
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship.spacehit)) {
_root.healthbar.play();
}
if (this.hitTest(_root.spaceship.spacehit)) {
_root.astroidenemy1.play();
}
if (this.hitTest(_root.spaceship.spaceroll)) {
_root.astroidenemy1.play();
}
if (this.hitTest(_root.explosion)) {
_root.astroidenemy1.play();
}
if (this.hitTest(_root.chargebeam.chargehit)) {
_root.astroidenemy1.play();
}
}
Symbol 305 MovieClip Frame 1
stop();
Symbol 305 MovieClip Frame 2
stop();
Symbol 305 MovieClip Frame 3
stop();
Symbol 305 MovieClip Frame 4
stop();
Symbol 305 MovieClip Frame 5
stop();
Symbol 305 MovieClip Frame 9
_root.score = _root.score + 250;
Symbol 305 MovieClip Frame 10
stop();
Symbol 306 MovieClip Frame 1
stop();
Symbol 306 MovieClip Frame 4
stop();
Symbol 306 MovieClip Frame 7
stop();
Symbol 306 MovieClip Frame 10
stop();
Symbol 306 MovieClip Frame 13
stop();
Symbol 306 MovieClip Frame 16
stop();
Symbol 306 MovieClip Frame 19
stop();
Symbol 306 MovieClip Frame 22
stop();
Symbol 306 MovieClip Frame 25
Symbol 306 MovieClip Frame 28
stop();
Symbol 306 MovieClip Frame 31
stop();
Symbol 306 MovieClip Frame 34
stop();
Symbol 306 MovieClip Frame 37
stop();
Symbol 306 MovieClip Frame 40
stop();
Symbol 306 MovieClip Frame 43
stop();
Symbol 306 MovieClip Frame 46
stop();
Symbol 306 MovieClip Frame 49
stop();
Symbol 306 MovieClip Frame 52
stop();
Symbol 306 MovieClip Frame 55
stop();
_root.crew.play();
Symbol 306 MovieClip Frame 58
stop();
Symbol 306 MovieClip Frame 61
stop();
Symbol 306 MovieClip Frame 64
stop();
Symbol 306 MovieClip Frame 67
stop();
_root.gotoAndStop("gameover2");
Symbol 326 MovieClip Frame 40
stop();
Symbol 347 MovieClip Frame 3
stop();
Symbol 349 MovieClip Frame 486
gotoAndPlay (51);
Symbol 351 MovieClip Frame 1
stop();
Symbol 351 MovieClip Frame 5
stop();
Symbol 351 MovieClip Frame 10
stop();
Symbol 351 MovieClip Frame 15
stop();
Symbol 351 MovieClip Frame 20
stop();
Symbol 351 MovieClip Frame 25
stop();
Symbol 351 MovieClip Frame 30
stop();
Symbol 351 MovieClip Frame 35
stop();
Symbol 351 MovieClip Frame 40
stop();
Symbol 351 MovieClip Frame 45
stop();
Symbol 351 MovieClip Frame 50
stop();
Symbol 351 MovieClip Frame 55
stop();
Symbol 351 MovieClip Frame 60
stop();
Symbol 351 MovieClip Frame 65
stop();
Symbol 351 MovieClip Frame 70
stop();
Symbol 351 MovieClip Frame 75
stop();
Symbol 351 MovieClip Frame 80
Symbol 351 MovieClip Frame 85
stop();
Symbol 351 MovieClip Frame 90
stop();
Symbol 351 MovieClip Frame 95
stop();
Symbol 351 MovieClip Frame 100
stop();
Symbol 351 MovieClip Frame 105
stop();
Symbol 351 MovieClip Frame 110
stop();
Symbol 351 MovieClip Frame 115
stop();
Symbol 351 MovieClip Frame 120
stop();
Symbol 351 MovieClip Frame 125
stop();
Symbol 351 MovieClip Frame 130
stop();
Symbol 351 MovieClip Frame 135
stop();
Symbol 351 MovieClip Frame 140
stop();
Symbol 351 MovieClip Frame 145
stop();
Symbol 351 MovieClip Frame 150
stop();
Symbol 351 MovieClip Frame 155
stop();
Symbol 351 MovieClip Frame 160
stop();
Symbol 351 MovieClip Frame 165
stop();
Symbol 351 MovieClip Frame 170
stop();
Symbol 351 MovieClip Frame 175
stop();
Symbol 351 MovieClip Frame 180
stop();
Symbol 351 MovieClip Frame 185
stop();
Symbol 351 MovieClip Frame 190
stop();
Symbol 351 MovieClip Frame 195
stop();
Symbol 351 MovieClip Frame 200
stop();
Symbol 351 MovieClip Frame 205
stop();
Symbol 351 MovieClip Frame 210
stop();
Symbol 351 MovieClip Frame 215
stop();
Symbol 351 MovieClip Frame 220
stop();
_root.score = _root.score + 1500;
_root.gotoAndStop("youwin2");
Symbol 356 Button
on (release) {
gotoAndStop ("retry2");
}
Symbol 358 MovieClip Frame 80
stop();
Symbol 361 Button
on (release) {
gotoAndStop ("findw");
}
Instance of Symbol 370 MovieClip in Symbol 371 MovieClip Frame 1
onClipEvent (load) {
_parent._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit) and (_global.jumping == true)) {
_global.on_solid_ground = true;
_root.jump_meter.gotoAndStop(1);
_root.fly_meter.gotoAndStop(1);
_root.fox._y = _parent._y;
_global.jumping = false;
_global.flying = false;
}
if (this.hitTest(_root.fox.fox_hit)) {
_global.on_solid_ground = true;
_root.fox._y = _parent._y;
_global.gravity = false;
}
}
Instance of Symbol 377 MovieClip in Symbol 378 MovieClip Frame 1
onClipEvent (load) {
_parent._visible = false;
}
Symbol 398 MovieClip Frame 1
stop();
Symbol 398 MovieClip Frame 5
stop();
Symbol 398 MovieClip Frame 10
stop();
Symbol 398 MovieClip Frame 15
stop();
Symbol 398 MovieClip Frame 20
stop();
Symbol 398 MovieClip Frame 25
_parent.gotoAndPlay("dead");
stop();
Symbol 399 MovieClip Frame 1
stop();
Instance of Symbol 381 MovieClip in Symbol 399 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if ((((this.hitTest(_root.tails.tails_hit) and (_global.collection == 0)) and (_global.jumping == false)) and (_global.hit == false)) and (_global.flying == false)) {
_root.eep_sound.start();
_root.tails.gotoAndStop("dead");
_root.play();
_global.gravity = false;
_global.flying = false;
_global.jumping = false;
_global.dead = true;
}
if ((((this.hitTest(_root.tails.tails_hit) and (_global.jumping == false)) and (_global.flying == false)) and (_global.collection < 20)) and (_global.hit == false)) {
_global.collection = 0;
_global.hit = true;
_root.tails.gotoAndStop("hit");
}
if ((((this.hitTest(_root.tails.tails_hit) and (_global.jumping == false)) and (_global.flying == false)) and (_global.collection > 19)) and (_global.hit == false)) {
_global.collection = _global.collection - 20;
_global.hit = true;
_root.tails.gotoAndStop("hit");
}
if (this.hitTest(_root.tails.tails_hit) and (_global.jumping == true)) {
_parent.enemy1_alive = false;
_parent.gotoAndPlay("dead");
}
if (this.hitTest(_root.tails.tails_hit) and (_global.flying == true)) {
_parent.enemy1_alive = false;
_parent.gotoAndPlay("dead");
}
if (this.hitTest(_root.fox.fox2.fox_shoot)) {
_parent.health.play();
}
}
Symbol 399 MovieClip Frame 2
stop();
Symbol 399 MovieClip Frame 3
gotoAndStop (1);
Symbol 399 MovieClip Frame 8
play();
Symbol 399 MovieClip Frame 65
stop();
Symbol 399 MovieClip Frame 66
gotoAndStop (65);
Symbol 399 MovieClip Frame 84
enemy1_alive = true;
gotoAndStop (1);
Instance of Symbol 399 MovieClip in Symbol 400 MovieClip Frame 1
onClipEvent (load) {
move_me = 1;
addvar = -2;
enemy1_alive = true;
}
onClipEvent (enterFrame) {
if (enemy1_alive == true) {
_parent._x = _parent._x + addvar;
move_me = move_me + 1;
if (move_me == _parent.distance) {
move_me = 1;
addvar = addvar * -1;
this.play();
}
}
}
Instance of Symbol 378 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(39)) {
_root.bg._x = _root.bg._x + _global.bg_speed;
_root.clouds._x = _root.clouds._x + (_global.bg_speed / 5);
}
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(37)) {
_root.bg._x = _root.bg._x - _global.bg_speed;
_root.clouds._x = _root.clouds._x - (_global.bg_speed / 5);
}
}
Instance of Symbol 378 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(39)) {
_root.bg._x = _root.bg._x + _global.bg_speed;
_root.clouds._x = _root.clouds._x + (_global.bg_speed / 5);
}
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(37)) {
_root.bg._x = _root.bg._x - _global.bg_speed;
_root.clouds._x = _root.clouds._x - (_global.bg_speed / 5);
}
}
Instance of Symbol 378 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(39)) {
_root.bg._x = _root.bg._x + _global.bg_speed;
_root.clouds._x = _root.clouds._x + (_global.bg_speed / 5);
}
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(37)) {
_root.bg._x = _root.bg._x - _global.bg_speed;
_root.clouds._x = _root.clouds._x - (_global.bg_speed / 5);
}
}
Instance of Symbol 378 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit)) {
_root.jump_meter.gotoAndPlay("falling");
_global.flying = false;
}
}
Instance of Symbol 400 MovieClip in Symbol 401 MovieClip Frame 1
onClipEvent (load) {
distance = 50;
}
Instance of Symbol 400 MovieClip in Symbol 406 MovieClip Frame 1
onClipEvent (load) {
distance = 150;
}
Instance of Symbol 400 MovieClip in Symbol 406 MovieClip Frame 1
onClipEvent (load) {
distance = 150;
}
Instance of Symbol 378 MovieClip in Symbol 415 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(39)) {
_root.bg._x = _root.bg._x + _global.bg_speed;
_root.clouds._x = _root.clouds._x + (_global.bg_speed / 5);
}
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(37)) {
_root.bg._x = _root.bg._x - _global.bg_speed;
_root.clouds._x = _root.clouds._x - (_global.bg_speed / 5);
}
}
Instance of Symbol 378 MovieClip in Symbol 415 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(39)) {
_root.bg._x = _root.bg._x + _global.bg_speed;
_root.clouds._x = _root.clouds._x + (_global.bg_speed / 5);
}
if (this.hitTest(_root.fox.fox_hit) and Key.isDown(37)) {
_root.bg._x = _root.bg._x - _global.bg_speed;
_root.clouds._x = _root.clouds._x - (_global.bg_speed / 5);
}
}
Symbol 416 MovieClip Frame 1
stop();
Symbol 416 MovieClip Frame 20
stop();
Symbol 416 MovieClip Frame 21
gotoAndStop (20);
Instance of Symbol 416 MovieClip in Symbol 417 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.fox.fox_hit)) {
play();
}
}
Instance of Symbol 400 MovieClip in Symbol 417 MovieClip Frame 1
onClipEvent (load) {
distance = 150;
}
Symbol 418 MovieClip Frame 1
segment1._x = 0;
segment1._y = 0;
segment2._x = 1000;
segment2._y = 0;
segment3._x = 2500;
segment3._y = 0;
segment4._x = 4500;
segment4._y = 0;
Symbol 423 MovieClip Frame 1
stop();
_global.jump_ticker = 0;
_global.jumping = false;
_root.fox.gotoAndStop(1);
Symbol 423 MovieClip Frame 2
_global.jump_ticker = 1;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 30;
_root.fox.gotoAndStop("jump");
_global.jumping = true;
_global.flying = false;
_global.on_solid_ground = false;
_root.jump_sound.start();
Symbol 423 MovieClip Frame 3
_global.jump_ticker = 2;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 20;
Symbol 423 MovieClip Frame 4
_global.jump_ticker = 3;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 15;
Symbol 423 MovieClip Frame 5
_global.jump_ticker = 4;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 10;
Symbol 423 MovieClip Frame 6
_global.jump_ticker = 5;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 10;
Symbol 423 MovieClip Frame 7
_global.jump_ticker = 6;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 10;
Symbol 423 MovieClip Frame 8
_global.jump_ticker = 7;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 5;
Symbol 423 MovieClip Frame 9
_global.jump_ticker = 8;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 5;
Symbol 423 MovieClip Frame 10
_global.jump_ticker = 9;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y - 5;
Symbol 423 MovieClip Frame 11
_global.jump_ticker = 0;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y + 5;
Symbol 423 MovieClip Frame 12
_global.jump_ticker = 0;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y + 5;
Symbol 423 MovieClip Frame 13
_global.jump_ticker = 0;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y + 10;
Symbol 423 MovieClip Frame 14
_global.jump_ticker = 0;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y + 10;
Symbol 423 MovieClip Frame 15
_global.jump_ticker = 0;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y + 10;
Symbol 423 MovieClip Frame 16
_global.jump_ticker = 0;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y + 15;
Symbol 423 MovieClip Frame 17
_global.jump_ticker = 0;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y + 15;
Symbol 423 MovieClip Frame 18
_global.jump_ticker = 0;
if (Key.isDown(37)) {
_root.fox.gotoAndStop("jumping");
} else {
_root.fox.gotoAndStop("jumping2");
}
_root.fox._y = _root.fox._y + 20;
Symbol 423 MovieClip Frame 19
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 20;
Symbol 423 MovieClip Frame 20
if (_global.on_solid_ground == false) {
gotoAndPlay ("falling");
} else {
gotoAndStop (1);
}
Symbol 423 MovieClip Frame 25
if (_global.on_solid_ground == false) {
_root.fox._y = _root.fox._y + 10;
_root.fox.gotoAndStop("falling");
} else {
gotoAndStop (1);
_root.fox.gotoAndStop(1);
}
Symbol 423 MovieClip Frame 26
if (_global.on_solid_ground == false) {
gotoAndPlay ("falling");
_root.fox._y = _root.fox._y + 10;
_root.fox.gotoAndStop("falling");
} else {
gotoAndStop (1);
_root.fox.gotoAndStop(1);
}
Symbol 424 MovieClip Frame 1
stop();
_global.jump_ticker = 0;
_global.flying = false;
_root.fox.gotoAndStop(1);
Symbol 424 MovieClip Frame 2
_global.jump_ticker = 1;
_root.fox._y = _root.fox._y - 20;
_root.fox.gotoAndStop("flying");
_root.jump_meter.gotoAndStop(1);
_global.jumping = false;
_global.flying = true;
_global.gravity = false;
_global.on_solid_ground = false;
_root.jump_sound.start();
Symbol 424 MovieClip Frame 3
_global.jump_ticker = 2;
_root.fox._y = _root.fox._y - 20;
Symbol 424 MovieClip Frame 4
_global.jump_ticker = 3;
_root.fox._y = _root.fox._y - 15;
Symbol 424 MovieClip Frame 5
_global.jump_ticker = 4;
_root.fox._y = _root.fox._y - 15;
Symbol 424 MovieClip Frame 6
_global.jump_ticker = 5;
_root.fox._y = _root.fox._y - 10;
Symbol 424 MovieClip Frame 7
_global.jump_ticker = 6;
_root.fox._y = _root.fox._y - 10;
Symbol 424 MovieClip Frame 8
_global.jump_ticker = 7;
_root.fox._y = _root.fox._y - 10;
Symbol 424 MovieClip Frame 9
_global.jump_ticker = 8;
_root.fox._y = _root.fox._y - 5;
Symbol 424 MovieClip Frame 10
_global.jump_ticker = 9;
_root.fox._y = _root.fox._y - 5;
Symbol 424 MovieClip Frame 11
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 5;
Symbol 424 MovieClip Frame 12
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 5;
Symbol 424 MovieClip Frame 13
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 10;
Symbol 424 MovieClip Frame 14
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 10;
Symbol 424 MovieClip Frame 15
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 10;
Symbol 424 MovieClip Frame 16
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 15;
Symbol 424 MovieClip Frame 17
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 15;
Symbol 424 MovieClip Frame 18
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 20;
Symbol 424 MovieClip Frame 19
_global.jump_ticker = 0;
_root.fox._y = _root.fox._y + 20;
Symbol 424 MovieClip Frame 20
if (_global.on_solid_ground == false) {
gotoAndPlay ("falling");
} else {
gotoAndStop (1);
}
Symbol 424 MovieClip Frame 27
if (_global.on_solid_ground == false) {
_root.fox._y = _root.fox._y + 10;
_root.fox.gotoAndStop("falling");
} else {
gotoAndStop (1);
_root.fox.gotoAndStop(1);
}
Symbol 424 MovieClip Frame 28
if (_global.on_solid_ground == false) {
gotoAndPlay ("falling");
_root.fox._y = _root.fox._y + 10;
_root.fox.gotoAndStop("falling");
} else {
gotoAndStop (1);
_root.fox.gotoAndStop(1);
}
Symbol 427 MovieClip Frame 1
if ((_global.gravity == true) and (_global.jumping == false)) {
_root.fox._y = _root.fox._y + 10;
_global.on_solid_ground = false;
}
Symbol 427 MovieClip Frame 2
if ((_global.gravity == true) and (_global.jumping == false)) {
_root.fox._y = _root.fox._y + 10;
_global.on_solid_ground = false;
}
Symbol 456 MovieClip Frame 1
stop();
Symbol 456 MovieClip Frame 10
if (Key.isDown(32)) {
gotoAndPlay (2);
}
Symbol 457 MovieClip Frame 15
gotoAndPlay (1);
Symbol 458 MovieClip Frame 11
gotoAndPlay (1);
Symbol 472 MovieClip Frame 14
stop();
Symbol 473 MovieClip Frame 1
stop();
Symbol 474 MovieClip Frame 52
_root.gotoAndStop("ground_lvl1");
Symbol 496 MovieClip Frame 9
stop();
Symbol 501 MovieClip Frame 69
gotoAndPlay (59);
Symbol 504 MovieClip Frame 336
_root.healthbar.play();
Symbol 504 MovieClip Frame 341
_root.healthbar.stop();
Symbol 504 MovieClip Frame 346
_root.healthbar.play();
Symbol 504 MovieClip Frame 351
_root.healthbar.stop();
Symbol 504 MovieClip Frame 379
_root.inship.gotoAndStop(2);
_global.follow = true;
Symbol 504 MovieClip Frame 380
_root.healthbar.play();
stop();
Symbol 504 MovieClip Frame 697
_root.inship.gotoAndStop(2);
_global.follow = true;
Symbol 504 MovieClip Frame 698
_root.healthbar.play();
stop();
Symbol 504 MovieClip Frame 885
_root.healthbar.play();
Symbol 504 MovieClip Frame 890
_root.healthbar.stop();
Symbol 504 MovieClip Frame 895
_root.healthbar.play();
Symbol 504 MovieClip Frame 900
_root.healthbar.stop();
Symbol 504 MovieClip Frame 916
_root.inship.gotoAndStop(2);
_global.follow = true;
Symbol 504 MovieClip Frame 917
_root.healthbar.play();
stop();
Symbol 507 MovieClip Frame 1
stop();
Symbol 512 MovieClip Frame 2
_global.shoot = true;
Symbol 512 MovieClip Frame 25
_global.shoot = false;
_root.inship.gotoAndStop(1);
Symbol 514 MovieClip Frame 2
_global.shoot = true;
Symbol 514 MovieClip Frame 7
_global.shoot = false;
_root.inship.gotoAndStop(1);
Symbol 516 MovieClip Frame 1
stop();
Instance of Symbol 507 MovieClip in Symbol 516 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.flight.wolfen)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 514 MovieClip in Symbol 516 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.flight.wolfen)) {
_root.wolfhealth.nextFrame();
}
}
Symbol 518 MovieClip Frame 1
stop();
stop();
Symbol 518 MovieClip Frame 2
stop();
Symbol 518 MovieClip Frame 3
stop();
Symbol 518 MovieClip Frame 4
stop();
Symbol 518 MovieClip Frame 5
stop();
Symbol 518 MovieClip Frame 6
stop();
Symbol 518 MovieClip Frame 7
stop();
Symbol 518 MovieClip Frame 8
stop();
Symbol 518 MovieClip Frame 9
stop();
Symbol 518 MovieClip Frame 10
stop();
Symbol 518 MovieClip Frame 11
stop();
Symbol 518 MovieClip Frame 12
stop();
Symbol 518 MovieClip Frame 13
stop();
Symbol 518 MovieClip Frame 14
stop();
Symbol 518 MovieClip Frame 15
stop();
Symbol 518 MovieClip Frame 16
stop();
Symbol 518 MovieClip Frame 17
stop();
Symbol 518 MovieClip Frame 18
stop();
Symbol 518 MovieClip Frame 19
stop();
Symbol 518 MovieClip Frame 20
stop();
Symbol 518 MovieClip Frame 21
stop();
Symbol 518 MovieClip Frame 22
stop();
Symbol 518 MovieClip Frame 23
stop();
Symbol 518 MovieClip Frame 24
stop();
Symbol 518 MovieClip Frame 25
stop();
Symbol 518 MovieClip Frame 26
stop();
Symbol 518 MovieClip Frame 27
stop();
Symbol 518 MovieClip Frame 28
stop();
Symbol 518 MovieClip Frame 29
stop();
Symbol 518 MovieClip Frame 30
stop();
Symbol 518 MovieClip Frame 31
stop();
Symbol 518 MovieClip Frame 32
stop();
Symbol 518 MovieClip Frame 33
stop();
Symbol 518 MovieClip Frame 34
stop();
Symbol 518 MovieClip Frame 35
stop();
Symbol 518 MovieClip Frame 36
stop();
Symbol 518 MovieClip Frame 37
stop();
Symbol 518 MovieClip Frame 38
stop();
Symbol 518 MovieClip Frame 39
stop();
Symbol 518 MovieClip Frame 40
stop();
Symbol 518 MovieClip Frame 41
stop();
Symbol 518 MovieClip Frame 42
stop();
Symbol 518 MovieClip Frame 43
stop();
Symbol 518 MovieClip Frame 44
stop();
Symbol 518 MovieClip Frame 45
stop();
Symbol 518 MovieClip Frame 46
stop();
Symbol 518 MovieClip Frame 47
stop();
Symbol 518 MovieClip Frame 48
stop();
Symbol 518 MovieClip Frame 49
stop();
Symbol 518 MovieClip Frame 50
stop();
Symbol 518 MovieClip Frame 51
stop();
Symbol 518 MovieClip Frame 52
stop();
Symbol 518 MovieClip Frame 53
stop();
Symbol 518 MovieClip Frame 54
stop();
Symbol 518 MovieClip Frame 55
stop();
Symbol 518 MovieClip Frame 56
stop();
Symbol 518 MovieClip Frame 57
stop();
Symbol 518 MovieClip Frame 58
stop();
Symbol 518 MovieClip Frame 59
stop();
Symbol 518 MovieClip Frame 60
stop();
Symbol 518 MovieClip Frame 61
stop();
Symbol 518 MovieClip Frame 62
stop();
Symbol 518 MovieClip Frame 63
stop();
Symbol 518 MovieClip Frame 64
stop();
Symbol 518 MovieClip Frame 65
stop();
Symbol 518 MovieClip Frame 66
stop();
Symbol 518 MovieClip Frame 67
stop();
Symbol 518 MovieClip Frame 68
stop();
Symbol 518 MovieClip Frame 69
stop();
Symbol 518 MovieClip Frame 70
stop();
Symbol 518 MovieClip Frame 71
stop();
Symbol 518 MovieClip Frame 72
stop();
Symbol 518 MovieClip Frame 73
stop();
Symbol 518 MovieClip Frame 74
stop();
Symbol 518 MovieClip Frame 75
stop();
Symbol 518 MovieClip Frame 76
stop();
Symbol 518 MovieClip Frame 77
stop();
Symbol 518 MovieClip Frame 78
stop();
Symbol 518 MovieClip Frame 79
stop();
Symbol 518 MovieClip Frame 80
stop();
Symbol 518 MovieClip Frame 81
stop();
Symbol 518 MovieClip Frame 82
stop();
Symbol 518 MovieClip Frame 83
stop();
Symbol 518 MovieClip Frame 84
stop();
Symbol 518 MovieClip Frame 85
stop();
Symbol 518 MovieClip Frame 86
stop();
Symbol 518 MovieClip Frame 87
stop();
Symbol 518 MovieClip Frame 88
stop();
Symbol 518 MovieClip Frame 89
stop();
Symbol 518 MovieClip Frame 90
stop();
Symbol 518 MovieClip Frame 91
stop();
Symbol 518 MovieClip Frame 92
stop();
Symbol 518 MovieClip Frame 93
stop();
Symbol 518 MovieClip Frame 94
stop();
Symbol 518 MovieClip Frame 95
stop();
Symbol 518 MovieClip Frame 96
stop();
Symbol 518 MovieClip Frame 97
stop();
Symbol 518 MovieClip Frame 98
stop();
Symbol 518 MovieClip Frame 99
stop();
Symbol 518 MovieClip Frame 100
stop();
Symbol 518 MovieClip Frame 101
stop();
Symbol 518 MovieClip Frame 102
stop();
Symbol 518 MovieClip Frame 103
stop();
Symbol 518 MovieClip Frame 104
stop();
Symbol 518 MovieClip Frame 105
stop();
Symbol 518 MovieClip Frame 106
stop();
Symbol 518 MovieClip Frame 107
stop();
Symbol 518 MovieClip Frame 108
stop();
Symbol 518 MovieClip Frame 109
stop();
Symbol 518 MovieClip Frame 110
stop();
Symbol 518 MovieClip Frame 111
stop();
Symbol 518 MovieClip Frame 112
stop();
Symbol 518 MovieClip Frame 113
stop();
Symbol 518 MovieClip Frame 114
stop();
Symbol 518 MovieClip Frame 115
stop();
Symbol 518 MovieClip Frame 116
stop();
Symbol 518 MovieClip Frame 117
stop();
Symbol 518 MovieClip Frame 118
stop();
Symbol 518 MovieClip Frame 119
stop();
Symbol 518 MovieClip Frame 120
stop();
Symbol 518 MovieClip Frame 121
stop();
Symbol 518 MovieClip Frame 122
stop();
Symbol 518 MovieClip Frame 123
stop();
Symbol 518 MovieClip Frame 124
stop();
Symbol 518 MovieClip Frame 125
stop();
Symbol 518 MovieClip Frame 126
stop();
Symbol 518 MovieClip Frame 127
stop();
Symbol 518 MovieClip Frame 128
stop();
Symbol 518 MovieClip Frame 129
stop();
Symbol 518 MovieClip Frame 130
stop();
Symbol 518 MovieClip Frame 131
stop();
Symbol 518 MovieClip Frame 132
stop();
Symbol 518 MovieClip Frame 133
stop();
Symbol 518 MovieClip Frame 134
stop();
Symbol 518 MovieClip Frame 135
stop();
Symbol 518 MovieClip Frame 136
stop();
Symbol 518 MovieClip Frame 137
stop();
Symbol 518 MovieClip Frame 138
stop();
Symbol 518 MovieClip Frame 139
stop();
Symbol 518 MovieClip Frame 140
stop();
Symbol 518 MovieClip Frame 141
stop();
Symbol 518 MovieClip Frame 142
stop();
Symbol 518 MovieClip Frame 143
stop();
Symbol 518 MovieClip Frame 144
stop();
Symbol 518 MovieClip Frame 145
stop();
Symbol 518 MovieClip Frame 146
stop();
Symbol 518 MovieClip Frame 147
stop();
Symbol 518 MovieClip Frame 148
stop();
Symbol 518 MovieClip Frame 149
stop();
Symbol 518 MovieClip Frame 150
stop();
Symbol 518 MovieClip Frame 151
stop();
Symbol 518 MovieClip Frame 152
stop();
Symbol 518 MovieClip Frame 153
stop();
Symbol 518 MovieClip Frame 154
stop();
Symbol 518 MovieClip Frame 155
stop();
Symbol 518 MovieClip Frame 156
stop();
Symbol 518 MovieClip Frame 157
stop();
Symbol 518 MovieClip Frame 158
stop();
Symbol 518 MovieClip Frame 159
stop();
Symbol 518 MovieClip Frame 160
stop();
Symbol 518 MovieClip Frame 161
stop();
Symbol 518 MovieClip Frame 162
stop();
Symbol 518 MovieClip Frame 163
stop();
Symbol 518 MovieClip Frame 164
stop();
Symbol 518 MovieClip Frame 165
stop();
Symbol 518 MovieClip Frame 166
stop();
Symbol 518 MovieClip Frame 167
stop();
Symbol 518 MovieClip Frame 168
stop();
Symbol 518 MovieClip Frame 169
stop();
Symbol 518 MovieClip Frame 170
stop();
Symbol 518 MovieClip Frame 171
stop();
Symbol 518 MovieClip Frame 172
stop();
Symbol 518 MovieClip Frame 173
stop();
Symbol 518 MovieClip Frame 174
stop();
Symbol 518 MovieClip Frame 175
stop();
Symbol 518 MovieClip Frame 176
stop();
Symbol 518 MovieClip Frame 177
stop();
Symbol 518 MovieClip Frame 178
stop();
Symbol 518 MovieClip Frame 179
stop();
Symbol 518 MovieClip Frame 180
stop();
Symbol 518 MovieClip Frame 181
stop();
Symbol 518 MovieClip Frame 182
stop();
Symbol 518 MovieClip Frame 183
stop();
Symbol 518 MovieClip Frame 184
stop();
Symbol 518 MovieClip Frame 185
stop();
Symbol 518 MovieClip Frame 186
stop();
Symbol 518 MovieClip Frame 187
stop();
Symbol 518 MovieClip Frame 188
stop();
Symbol 518 MovieClip Frame 189
stop();
Symbol 518 MovieClip Frame 190
stop();
Symbol 518 MovieClip Frame 191
stop();
Symbol 518 MovieClip Frame 192
stop();
Symbol 518 MovieClip Frame 193
stop();
Symbol 518 MovieClip Frame 194
stop();
Symbol 518 MovieClip Frame 195
stop();
Symbol 518 MovieClip Frame 196
stop();
Symbol 518 MovieClip Frame 197
stop();
Symbol 518 MovieClip Frame 198
stop();
Symbol 518 MovieClip Frame 199
stop();
Symbol 518 MovieClip Frame 200
stop();
Symbol 518 MovieClip Frame 201
stop();
Symbol 518 MovieClip Frame 202
stop();
Symbol 518 MovieClip Frame 203
stop();
Symbol 518 MovieClip Frame 204
stop();
Symbol 518 MovieClip Frame 205
stop();
Symbol 518 MovieClip Frame 206
stop();
Symbol 518 MovieClip Frame 207
stop();
Symbol 518 MovieClip Frame 208
stop();
Symbol 518 MovieClip Frame 209
stop();
Symbol 518 MovieClip Frame 210
stop();
Symbol 518 MovieClip Frame 211
stop();
Symbol 518 MovieClip Frame 212
stop();
Symbol 518 MovieClip Frame 213
stop();
Symbol 518 MovieClip Frame 214
stop();
Symbol 518 MovieClip Frame 215
stop();
Symbol 518 MovieClip Frame 216
stop();
Symbol 518 MovieClip Frame 217
stop();
Symbol 518 MovieClip Frame 218
stop();
Symbol 518 MovieClip Frame 219
stop();
Symbol 518 MovieClip Frame 220
stop();
Symbol 518 MovieClip Frame 221
stop();
Symbol 518 MovieClip Frame 222
stop();
Symbol 518 MovieClip Frame 223
stop();
Symbol 518 MovieClip Frame 224
stop();
Symbol 518 MovieClip Frame 225
stop();
Symbol 518 MovieClip Frame 226
stop();
Symbol 518 MovieClip Frame 227
stop();
Symbol 518 MovieClip Frame 228
stop();
Symbol 518 MovieClip Frame 229
stop();
Symbol 518 MovieClip Frame 230
stop();
Symbol 518 MovieClip Frame 231
stop();
Symbol 518 MovieClip Frame 232
stop();
Symbol 518 MovieClip Frame 233
stop();
Symbol 518 MovieClip Frame 234
stop();
Symbol 518 MovieClip Frame 235
stop();
Symbol 518 MovieClip Frame 236
stop();
Symbol 518 MovieClip Frame 237
stop();
Symbol 518 MovieClip Frame 238
stop();
Symbol 518 MovieClip Frame 239
stop();
Symbol 518 MovieClip Frame 240
stop();
Symbol 518 MovieClip Frame 241
stop();
Symbol 518 MovieClip Frame 242
stop();
Symbol 518 MovieClip Frame 243
stop();
Symbol 518 MovieClip Frame 244
stop();
Symbol 518 MovieClip Frame 245
stop();
Symbol 518 MovieClip Frame 246
stop();
Symbol 518 MovieClip Frame 247
stop();
Symbol 518 MovieClip Frame 248
stop();
Symbol 518 MovieClip Frame 249
stop();
Symbol 518 MovieClip Frame 250
stop();
Symbol 518 MovieClip Frame 251
stop();
Symbol 518 MovieClip Frame 252
stop();
Symbol 518 MovieClip Frame 253
stop();
Symbol 518 MovieClip Frame 254
stop();
Symbol 518 MovieClip Frame 255
stop();
Symbol 518 MovieClip Frame 256
stop();
Symbol 518 MovieClip Frame 257
stop();
Symbol 518 MovieClip Frame 258
stop();
Symbol 518 MovieClip Frame 259
stop();
Symbol 518 MovieClip Frame 260
stop();
Symbol 518 MovieClip Frame 261
stop();
Symbol 518 MovieClip Frame 262
stop();
Symbol 518 MovieClip Frame 263
stop();
Symbol 518 MovieClip Frame 264
stop();
Symbol 518 MovieClip Frame 265
stop();
Symbol 518 MovieClip Frame 266
stop();
Symbol 518 MovieClip Frame 267
stop();
Symbol 518 MovieClip Frame 268
stop();
Symbol 518 MovieClip Frame 269
stop();
Symbol 518 MovieClip Frame 270
stop();
Symbol 518 MovieClip Frame 271
stop();
Symbol 518 MovieClip Frame 272
stop();
Symbol 518 MovieClip Frame 273
stop();
Symbol 518 MovieClip Frame 274
stop();
Symbol 518 MovieClip Frame 275
stop();
Symbol 518 MovieClip Frame 276
stop();
Symbol 518 MovieClip Frame 277
stop();
Symbol 518 MovieClip Frame 278
stop();
Symbol 518 MovieClip Frame 279
stop();
Symbol 518 MovieClip Frame 280
stop();
Symbol 518 MovieClip Frame 281
stop();
Symbol 518 MovieClip Frame 282
stop();
stop();
Symbol 518 MovieClip Frame 283
stop();
Symbol 518 MovieClip Frame 284
stop();
Symbol 518 MovieClip Frame 285
stop();
Symbol 518 MovieClip Frame 286
stop();
stop();
Symbol 518 MovieClip Frame 287
stop();
_root.score = _root.score + 2000;
_root.gotoAndStop("youwinw");
Symbol 521 MovieClip Frame 1
stop();
Symbol 521 MovieClip Frame 50
stop();
Symbol 521 MovieClip Frame 51
stop();
_root.gotoAndStop("youlosew");
Symbol 530 MovieClip Frame 1
_global.follow = false;
Symbol 530 MovieClip Frame 142
_root.flight.play();
_root.gotoAndStop("inship");
Symbol 533 MovieClip Frame 90
stop();
Symbol 537 MovieClip Frame 2
_global.crew = true;
Symbol 537 MovieClip Frame 3
_global.glaser = true;
_global.crew = true;
Symbol 537 MovieClip Frame 4
_global.mbullet = true;
_global.glaser = true;
_global.crew = true;
Symbol 540 MovieClip Frame 108
stop();
Symbol 541 Button
on (release) {
gotoAndStop ("inship");
}
Symbol 546 MovieClip Frame 240
_root.gotoAndStop("inship");
Symbol 581 MovieClip Frame 293
_root.gotoAndStop("menu");