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

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

Starfox the Flash Version.swf

This is the info page for
Flash #42262

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


Text
Play

Go!

Go!

The Flash Version

Controls

Controls

Controls
Arrow Keys=Move
Space=Shoot
S=Spin
D=Charge Beam
F=Smart Bomb/(Loop Cockpit Only)

Credits

B

L

GameOver

Retry?

Score

You Win

Continue

Score

GameOver

YouWin

gravity

F

You Win

Use "o" to summon Crew 1 time use

Use "u" to use the G-lazer 1 time use

Use "i" to use the Charge-Bullet 1 time use

ActionScript [AS1/AS2]

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

Library Items

Symbol 1 GraphicUsed by:70  Timeline
Symbol 2 GraphicUsed by:30
Symbol 3 GraphicUsed by:5 29 51
Symbol 4 GraphicUsed by:5 29 51  Timeline
Symbol 5 MovieClipUses:3 4Used by:30
Symbol 6 ShapeTweeningUsed by:9
Symbol 7 ShapeTweeningUsed by:9
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:6 7 8Used by:11
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:9 10Used by:30
Symbol 12 GraphicUsed by:25
Symbol 13 GraphicUsed by:25
Symbol 14 GraphicUsed by:25
Symbol 15 GraphicUsed by:25
Symbol 16 GraphicUsed by:25
Symbol 17 GraphicUsed by:25
Symbol 18 GraphicUsed by:25
Symbol 19 GraphicUsed by:25
Symbol 20 GraphicUsed by:25
Symbol 21 GraphicUsed by:25
Symbol 22 GraphicUsed by:25
Symbol 23 GraphicUsed by:25
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:12 13 14 15 16 17 18 19 20 21 22 23 24Used by:30  Timeline
Symbol 26 GraphicUsed by:30
Symbol 27 FontUsed by:28 48 148 161 217 261 263 265 266 270 271 273 285 307 353 354 355 359 360 499 524 532 538 542
Symbol 28 TextUses:27Used by:29
Symbol 29 ButtonUses:3 4 28Used by:30
Symbol 30 MovieClipUses:2 5 11 25 26 29Used by:Timeline
Symbol 31 GraphicUsed by:Timeline
Symbol 32 GraphicUsed by:33 474
Symbol 33 MovieClipUses:32Used by:Timeline
Symbol 34 GraphicUsed by:46
Symbol 35 GraphicUsed by:42 46
Symbol 36 GraphicUsed by:38 46
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:36 37Used by:42 98 127 130 186 284
Symbol 39 GraphicUsed by:42 46
Symbol 40 GraphicUsed by:41 46
Symbol 41 MovieClipUses:40Used by:42 98 127 130
Symbol 42 MovieClipUses:35 38 39 41Used by:46 135 136 252 260 284 530 533 540 546  Timeline
Symbol 43 FontUsed by:44 45 49 50 54 56 534 535 536
Symbol 44 TextUses:43Used by:46
Symbol 45 TextUses:43Used by:46
Symbol 46 ButtonUses:34 42 44 45 35 36 39 40Used by:Timeline
Symbol 47 GraphicUsed by:Timeline
Symbol 48 TextUses:27Used by:Timeline
Symbol 49 TextUses:43Used by:51
Symbol 50 TextUses:43Used by:51
Symbol 51 ButtonUses:3 4 49 50Used by:Timeline
Symbol 52 SoundUsed by:Timeline
Symbol 53 GraphicUsed by:Timeline
Symbol 54 TextUses:43Used by:Timeline
Symbol 55 GraphicUsed by:57
Symbol 56 TextUses:43Used by:57
Symbol 57 ButtonUses:55 56Used by:Timeline
Symbol 58 ShapeTweeningUsed by:70
Symbol 59 ShapeTweeningUsed by:70
Symbol 60 ShapeTweeningUsed by:70
Symbol 61 ShapeTweeningUsed by:70
Symbol 62 ShapeTweeningUsed by:70
Symbol 63 ShapeTweeningUsed by:70
Symbol 64 ShapeTweeningUsed by:70
Symbol 65 ShapeTweeningUsed by:70
Symbol 66 ShapeTweeningUsed by:70
Symbol 67 ShapeTweeningUsed by:70
Symbol 68 ShapeTweeningUsed by:70
Symbol 69 ShapeTweeningUsed by:70
Symbol 70 MovieClipUses:58 59 60 61 62 63 64 65 66 67 68 69 1Used by:Timeline
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:Timeline
Symbol 73 GraphicUsed by:75 77 190 192
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:73 74Used by:78
Symbol 76 GraphicUsed by:77
Symbol 77 MovieClipUses:76 73Used by:78
Symbol 78 MovieClipUses:75 77Used by:Timeline
Symbol 79 GraphicUsed by:92
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:80Used by:92
Symbol 82 GraphicUsed by:84
Symbol 83 SoundUsed by:84 157 456
Symbol 84 MovieClipUses:82 83Used by:85 122 157 530 540  Timeline
Symbol 85 MovieClipUses:84Used by:86
Symbol 86 MovieClipUses:85Used by:92 181 296
Symbol 87 GraphicUsed by:92 398
Symbol 88 GraphicUsed by:92
Symbol 89 GraphicUsed by:92
Symbol 90 GraphicUsed by:92
Symbol 91 SoundUsed by:92 186 269 305 358 399 533
Symbol 92 MovieClipUses:79 81 86 87 88 89 90 91Used by:Timeline
Symbol 93 SoundUsed by:122
Symbol 94 SoundUsed by:122
Symbol 95 SoundUsed by:122  Timeline
Symbol 96 GraphicUsed by:98
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:41 96 38 97Used by:122
Symbol 99 SoundUsed by:122
Symbol 100 SoundUsed by:122
Symbol 101 SoundUsed by:122 157 159 165 514
Symbol 102 SoundUsed by:122
Symbol 103 SoundUsed by:122
Symbol 104 ShapeTweeningUsed by:108
Symbol 105 SoundUsed by:108 154 260 269 358
Symbol 106 ShapeTweeningUsed by:108
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:104 105 106 107Used by:122
Symbol 109 SoundUsed by:122
Symbol 110 SoundUsed by:122 146 349
Symbol 111 GraphicUsed by:113
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:111 112Used by:122 146 157
Symbol 114 SoundUsed by:122 155 349
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClipUses:115Used by:122 146 157
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:119 155
Symbol 119 MovieClipUses:118Used by:122
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:122
Symbol 122 MovieClipUses:93 94 95 98 84 99 100 101 102 103 108 109 110 113 114 116 119 121Used by:Timeline
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:123Used by:136
Symbol 125 GraphicUsed by:127
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:125 38 126 41Used by:135 136 252
Symbol 128 GraphicUsed by:130
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:128 38 129 41Used by:135 136 252
Symbol 131 GraphicUsed by:134
Symbol 132 GraphicUsed by:134
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:131 132 133Used by:135
Symbol 135 MovieClipUses:42 134 130 127Used by:136
Symbol 136 MovieClipUses:124 42 127 130 135Used by:Timeline
Symbol 137 GraphicUsed by:138
Symbol 138 MovieClipUses:137Used by:Timeline
Symbol 139 GraphicUsed by:142
Symbol 140 GraphicUsed by:142
Symbol 141 GraphicUsed by:142
Symbol 142 MovieClipUses:139 140 141Used by:Timeline
Symbol 143 GraphicUsed by:144
Symbol 144 MovieClipUses:143Used by:146
Symbol 145 SoundUsed by:146
Symbol 146 MovieClipUses:113 110 116 144 145Used by:Timeline
Symbol 147 GraphicUsed by:149
Symbol 148 TextUses:27Used by:149
Symbol 149 MovieClipUses:147 148Used by:Timeline
Symbol 150 ShapeTweeningUsed by:154
Symbol 151 ShapeTweeningUsed by:154
Symbol 152 ShapeTweeningUsed by:154
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:150 151 105 152 153Used by:Timeline
Symbol 155 MovieClipUses:118 114Used by:Timeline
Symbol 156 SoundUsed by:157
Symbol 157 MovieClipUses:113 156 116 84 101 83Used by:Timeline
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158 101Used by:Timeline
Symbol 160 GraphicUsed by:162
Symbol 161 TextUses:27Used by:162 167
Symbol 162 MovieClipUses:160 161Used by:Timeline
Symbol 163 GraphicUsed by:Timeline
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164 101Used by:Timeline
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:166 161Used by:Timeline
Symbol 168 GraphicUsed by:171
Symbol 169 GraphicUsed by:171
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:168 169 170Used by:176
Symbol 172 GraphicUsed by:176
Symbol 173 GraphicUsed by:176
Symbol 174 GraphicUsed by:176
Symbol 175 SoundUsed by:176 533
Symbol 176 MovieClipUses:171 172 173 174 175Used by:Timeline
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClipUses:177Used by:186
Symbol 179 GraphicUsed by:180
Symbol 180 MovieClipUses:179Used by:186
Symbol 181 MovieClipUses:86Used by:186
Symbol 182 GraphicUsed by:186
Symbol 183 GraphicUsed by:186
Symbol 184 GraphicUsed by:186
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:38 178 180 181 182 183 184 185 91Used by:Timeline
Symbol 187 GraphicUsed by:188 416 428
Symbol 188 MovieClipUses:187Used by:Timeline
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClipUses:189 73Used by:193 282
Symbol 191 GraphicUsed by:192
Symbol 192 MovieClipUses:191 73Used by:193 282
Symbol 193 MovieClipUses:190 192Used by:Timeline
Symbol 194 GraphicUsed by:216 306
Symbol 195 GraphicUsed by:216 306
Symbol 196 GraphicUsed by:216 306
Symbol 197 GraphicUsed by:216 306
Symbol 198 GraphicUsed by:216 306
Symbol 199 GraphicUsed by:216 306
Symbol 200 GraphicUsed by:216 306
Symbol 201 GraphicUsed by:216 306
Symbol 202 GraphicUsed by:216 306
Symbol 203 GraphicUsed by:216 306
Symbol 204 GraphicUsed by:216 306
Symbol 205 GraphicUsed by:216 306
Symbol 206 GraphicUsed by:216 306
Symbol 207 GraphicUsed by:216 306
Symbol 208 GraphicUsed by:216 306
Symbol 209 GraphicUsed by:216 306
Symbol 210 GraphicUsed by:216 306
Symbol 211 GraphicUsed by:216 306
Symbol 212 GraphicUsed by:216 306
Symbol 213 GraphicUsed by:216 306
Symbol 214 GraphicUsed by:216 306
Symbol 215 GraphicUsed by:216 250 306 351 518
Symbol 216 MovieClipUses:194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215Used by:Timeline
Symbol 217 EditableTextUses:27Used by:Timeline
Symbol 218 SoundUsed by:Timeline
Symbol 219 GraphicUsed by:222
Symbol 220 GraphicUsed by:222
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:219 220 221Used by:223 269
Symbol 223 MovieClipUses:222Used by:Timeline
Symbol 224 GraphicUsed by:227
Symbol 225 GraphicUsed by:227
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:224 225 226Used by:228
Symbol 228 MovieClipUses:227Used by:Timeline
Symbol 229 GraphicUsed by:250 351
Symbol 230 GraphicUsed by:250 351
Symbol 231 GraphicUsed by:250 351
Symbol 232 GraphicUsed by:250 351
Symbol 233 GraphicUsed by:250 351
Symbol 234 GraphicUsed by:250 351
Symbol 235 GraphicUsed by:250 351
Symbol 236 GraphicUsed by:250 351
Symbol 237 GraphicUsed by:250 351
Symbol 238 GraphicUsed by:250 351
Symbol 239 GraphicUsed by:250 351
Symbol 240 GraphicUsed by:250 351
Symbol 241 GraphicUsed by:250 351
Symbol 242 GraphicUsed by:250 351
Symbol 243 GraphicUsed by:250 351
Symbol 244 GraphicUsed by:250 351
Symbol 245 GraphicUsed by:250 351
Symbol 246 GraphicUsed by:250 351
Symbol 247 GraphicUsed by:250 351
Symbol 248 GraphicUsed by:250 351
Symbol 249 GraphicUsed by:250 351 518
Symbol 250 MovieClipUses:229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 215Used by:Timeline
Symbol 251 SoundUsed by:Timeline
Symbol 252 MovieClipUses:42 130 127Used by:260
Symbol 253 GraphicUsed by:255
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:253 254Used by:260 533
Symbol 256 ShapeTweeningUsed by:259
Symbol 257 ShapeTweeningUsed by:259
Symbol 258 GraphicUsed by:259
Symbol 259 MovieClipUses:256 257 258Used by:260 269 358 399
Symbol 260 MovieClipUses:42 252 255 259 105Used by:540  Timeline
Symbol 261 TextUses:27Used by:Timeline
Symbol 262 GraphicUsed by:264 356 541
Symbol 263 TextUses:27Used by:264 356 541
Symbol 264 ButtonUses:262 263Used by:Timeline
Symbol 265 TextUses:27Used by:Timeline
Symbol 266 EditableTextUses:27Used by:Timeline
Symbol 267 SoundUsed by:Timeline
Symbol 268 SoundUsed by:Timeline
Symbol 269 MovieClipUses:222 259 91 105Used by:Timeline
Symbol 270 TextUses:27Used by:Timeline
Symbol 271 EditableTextUses:27Used by:Timeline
Symbol 272 GraphicUsed by:274 361
Symbol 273 TextUses:27Used by:274 361
Symbol 274 ButtonUses:272 273Used by:Timeline
Symbol 275 SoundUsed by:Timeline
Symbol 276 SoundUsed by:Timeline
Symbol 277 GraphicUsed by:284
Symbol 278 GraphicUsed by:279
Symbol 279 MovieClipUses:278Used by:284  Timeline
Symbol 280 GraphicUsed by:281
Symbol 281 MovieClipUses:280Used by:284 289
Symbol 282 MovieClipUses:190 192Used by:284
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:277 279 281 282 38 42 283Used by:Timeline
Symbol 285 EditableTextUses:27Used by:Timeline
Symbol 286 SoundUsed by:Timeline
Symbol 287 GraphicUsed by:288
Symbol 288 MovieClipUses:287Used by:289
Symbol 289 MovieClipUses:281 288Used by:Timeline
Symbol 290 GraphicUsed by:296
Symbol 291 GraphicUsed by:292
Symbol 292 MovieClipUses:291Used by:296
Symbol 293 GraphicUsed by:296
Symbol 294 GraphicUsed by:296
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:290 292 293 294 86 295Used by:305
Symbol 297 GraphicUsed by:305
Symbol 298 GraphicUsed by:305
Symbol 299 GraphicUsed by:305
Symbol 300 GraphicUsed by:305
Symbol 301 GraphicUsed by:305
Symbol 302 GraphicUsed by:305
Symbol 303 GraphicUsed by:305
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:296 297 298 299 300 301 91 302 303 304Used by:Timeline
Symbol 306 MovieClipUses:194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215Used by:Timeline
Symbol 307 EditableTextUses:27Used by:Timeline
Symbol 308 GraphicUsed by:309
Symbol 309 MovieClipUses:308Used by:349 358
Symbol 310 GraphicUsed by:311
Symbol 311 MovieClipUses:310Used by:349 358
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:349 358
Symbol 314 SoundUsed by:349
Symbol 315 GraphicUsed by:349
Symbol 316 GraphicUsed by:349
Symbol 317 GraphicUsed by:349
Symbol 318 GraphicUsed by:349
Symbol 319 GraphicUsed by:349
Symbol 320 SoundUsed by:349
Symbol 321 GraphicUsed by:326
Symbol 322 GraphicUsed by:326
Symbol 323 GraphicUsed by:326
Symbol 324 GraphicUsed by:326
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:321 322 323 324 325Used by:349
Symbol 327 GraphicUsed by:329 347
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:327 328Used by:349
Symbol 330 GraphicUsed by:344
Symbol 331 GraphicUsed by:336
Symbol 332 GraphicUsed by:336
Symbol 333 GraphicUsed by:336
Symbol 334 GraphicUsed by:336
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:331 332 333 334 335Used by:344
Symbol 337 GraphicUsed by:344
Symbol 338 GraphicUsed by:343
Symbol 339 GraphicUsed by:343
Symbol 340 GraphicUsed by:343
Symbol 341 GraphicUsed by:343
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:338 339 340 341 342Used by:344
Symbol 344 MovieClipUses:330 336 337 343Used by:348
Symbol 345 GraphicUsed by:347
Symbol 346 GraphicUsed by:347
Symbol 347 MovieClipUses:327 345 346Used by:348
Symbol 348 MovieClipUses:344 347Used by:349
Symbol 349 MovieClipUses:309 311 313 314 315 316 317 318 319 320 326 329 114 110 348Used by:Timeline
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:229 350 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 215Used by:Timeline
Symbol 352 SoundUsed by:Timeline
Symbol 353 TextUses:27Used by:Timeline
Symbol 354 EditableTextUses:27Used by:Timeline
Symbol 355 TextUses:27Used by:Timeline
Symbol 356 ButtonUses:262 263Used by:Timeline
Symbol 357 SoundUsed by:Timeline
Symbol 358 MovieClipUses:309 311 313 259 91 105Used by:Timeline
Symbol 359 TextUses:27Used by:Timeline
Symbol 360 EditableTextUses:27Used by:Timeline
Symbol 361 ButtonUses:272 273Used by:Timeline
Symbol 362 SoundUsed by:Timeline
Symbol 363 BitmapUsed by:364
Symbol 364 GraphicUses:363Used by:365
Symbol 365 MovieClipUses:364Used by:Timeline
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:366Used by:Timeline
Symbol 368 GraphicUsed by:401
Symbol 369 GraphicUsed by:370
Symbol 370 MovieClipUses:369Used by:371
Symbol 371 MovieClipUses:370Used by:401 406 413 417
Symbol 372 GraphicUsed by:401
Symbol 373 GraphicUsed by:401
Symbol 374 GraphicUsed by:401
Symbol 375 GraphicUsed by:401
Symbol 376 GraphicUsed by:377
Symbol 377 MovieClipUses:376Used by:378
Symbol 378 MovieClipUses:377Used by:401 415
Symbol 379 GraphicUsed by:401
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:380Used by:399
Symbol 382 GraphicUsed by:383
Symbol 383 MovieClipUses:382Used by:394
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClipUses:384Used by:394
Symbol 386 GraphicUsed by:387
Symbol 387 MovieClipUses:386Used by:394
Symbol 388 GraphicUsed by:389
Symbol 389 MovieClipUses:388Used by:394
Symbol 390 GraphicUsed by:391
Symbol 391 MovieClipUses:390Used by:394
Symbol 392 GraphicUsed by:393
Symbol 393 MovieClipUses:392Used by:394
Symbol 394 MovieClipUses:383 385 387 389 391 393Used by:399
Symbol 395 GraphicUsed by:398
Symbol 396 GraphicUsed by:398
Symbol 397 GraphicUsed by:398
Symbol 398 MovieClipUses:395 87 396 397Used by:399
Symbol 399 MovieClipUses:381 394 398 259 91Used by:400
Symbol 400 MovieClipUses:399Used by:401 406 417
Symbol 401 MovieClipUses:368 371 372 373 374 375 378 379 400Used by:418
Symbol 402 GraphicUsed by:406
Symbol 403 GraphicUsed by:406
Symbol 404 GraphicUsed by:406 413 417
Symbol 405 GraphicUsed by:406
Symbol 406 MovieClipUses:371 402 403 404 405 400Used by:418
Symbol 407 GraphicUsed by:413
Symbol 408 GraphicUsed by:413 417
Symbol 409 GraphicUsed by:413
Symbol 410 GraphicUsed by:413
Symbol 411 GraphicUsed by:413
Symbol 412 GraphicUsed by:413
Symbol 413 MovieClipUses:371 407 408 409 410 411 412 404Used by:418
Symbol 414 GraphicUsed by:415
Symbol 415 MovieClipUses:414 378Used by:416 417
Symbol 416 MovieClipUses:415 187Used by:417
Symbol 417 MovieClipUses:371 408 404 416 415 400Used by:418
Symbol 418 MovieClipUses:401 406 413 417Used by:Timeline
Symbol 419 GraphicUsed by:423 424
Symbol 420 GraphicUsed by:423 424
Symbol 421 SoundUsed by:423
Symbol 422 GraphicUsed by:423 424
Symbol 423 MovieClipUses:419 420 421 422Used by:Timeline
Symbol 424 MovieClipUses:419 420 422Used by:Timeline
Symbol 425 FontUsed by:426
Symbol 426 TextUses:425Used by:427
Symbol 427 MovieClipUses:426Used by:Timeline
Symbol 428 MovieClipUses:187Used by:473
Symbol 429 GraphicUsed by:430
Symbol 430 MovieClipUses:429Used by:448 455 457 458 460 466 472
Symbol 431 GraphicUsed by:448 455 457 458 460 466 472
Symbol 432 GraphicUsed by:448 455 457 458 460 466 472
Symbol 433 GraphicUsed by:434
Symbol 434 MovieClipUses:433Used by:448 455 457 458 460 466 472
Symbol 435 GraphicUsed by:436
Symbol 436 MovieClipUses:435Used by:448 455 457 458 460 466 472
Symbol 437 GraphicUsed by:438
Symbol 438 MovieClipUses:437Used by:448 455 457 458 460 466 472
Symbol 439 GraphicUsed by:448
Symbol 440 GraphicUsed by:448 455 457 458 460 466 472
Symbol 441 GraphicUsed by:448 455 457 458 460 466 472
Symbol 442 GraphicUsed by:443
Symbol 443 MovieClipUses:442Used by:448 455 457 458 460 466 472
Symbol 444 GraphicUsed by:445
Symbol 445 MovieClipUses:444Used by:448 455 457 458 472
Symbol 446 GraphicUsed by:448
Symbol 447 GraphicUsed by:448
Symbol 448 MovieClipUses:430 431 432 434 436 438 439 440 441 443 445 446 447Used by:456 474
Symbol 449 GraphicUsed by:451
Symbol 450 GraphicUsed by:451
Symbol 451 MovieClipUses:449 450Used by:455 457 458
Symbol 452 GraphicUsed by:455 457 458
Symbol 453 GraphicUsed by:454
Symbol 454 MovieClipUses:453Used by:455
Symbol 455 MovieClipUses:431 432 438 430 434 445 451 452 436 443 440 441 454Used by:456
Symbol 456 MovieClipUses:448 455 83Used by:473
Symbol 457 MovieClipUses:431 432 438 430 434 445 451 452 436 443 440 441Used by:473
Symbol 458 MovieClipUses:431 432 438 430 434 445 451 452 436 443 440 441Used by:473
Symbol 459 GraphicUsed by:460
Symbol 460 MovieClipUses:430 431 432 434 438 459 436 440 443 441Used by:461
Symbol 461 MovieClipUses:460Used by:473 474
Symbol 462 GraphicUsed by:466
Symbol 463 GraphicUsed by:466
Symbol 464 GraphicUsed by:466
Symbol 465 GraphicUsed by:466
Symbol 466 MovieClipUses:430 431 432 434 438 462 436 463 440 443 441 464 465Used by:473
Symbol 467 GraphicUsed by:472
Symbol 468 GraphicUsed by:469
Symbol 469 MovieClipUses:468Used by:472
Symbol 470 GraphicUsed by:472
Symbol 471 GraphicUsed by:472
Symbol 472 MovieClipUses:430 431 432 434 436 438 467 469 440 441 443 445 470 471Used by:473
Symbol 473 MovieClipUses:428 456 457 458 461 466 472Used by:Timeline
Symbol 474 MovieClipUses:32 461 448Used by:Timeline
Symbol 475 GraphicUsed by:504  Timeline
Symbol 476 GraphicUsed by:477
Symbol 477 MovieClipUses:476Used by:478 479 528
Symbol 478 MovieClipUses:477Used by:504  Timeline
Symbol 479 MovieClipUses:477Used by:504  Timeline
Symbol 480 GraphicUsed by:485
Symbol 481 GraphicUsed by:483
Symbol 482 GraphicUsed by:483
Symbol 483 MovieClipUses:481 482Used by:485
Symbol 484 GraphicUsed by:485
Symbol 485 MovieClipUses:480 483 484Used by:504
Symbol 486 GraphicUsed by:488
Symbol 487 GraphicUsed by:488
Symbol 488 MovieClipUses:486 487Used by:490
Symbol 489 GraphicUsed by:490
Symbol 490 MovieClipUses:488 489Used by:504 530 533 540 546
Symbol 491 GraphicUsed by:492
Symbol 492 MovieClipUses:491Used by:504
Symbol 493 SoundUsed by:504
Symbol 494 GraphicUsed by:495
Symbol 495 MovieClipUses:494Used by:496
Symbol 496 MovieClipUses:495Used by:504
Symbol 497 SoundUsed by:504
Symbol 498 GraphicUsed by:500
Symbol 499 TextUses:27Used by:500
Symbol 500 MovieClipUses:498 499Used by:501
Symbol 501 MovieClipUses:500Used by:504
Symbol 502 SoundUsed by:504
Symbol 503 SoundUsed by:504  Timeline
Symbol 504 MovieClipUses:475 478 479 485 490 492 493 496 497 501 502 503Used by:Timeline
Symbol 505 GraphicUsed by:507
Symbol 506 GraphicUsed by:507
Symbol 507 MovieClipUses:505 506Used by:516
Symbol 508 GraphicUsed by:509
Symbol 509 MovieClipUses:508Used by:512 516
Symbol 510 GraphicUsed by:516
Symbol 511 GraphicUsed by:512
Symbol 512 MovieClipUses:509 511Used by:516
Symbol 513 GraphicUsed by:514
Symbol 514 MovieClipUses:513 101Used by:516
Symbol 515 GraphicUsed by:516
Symbol 516 MovieClipUses:507 509 510 512 514 515Used by:Timeline
Symbol 517 ShapeTweeningUsed by:518
Symbol 518 MovieClipUses:517 249 215Used by:Timeline
Symbol 519 ShapeTweeningUsed by:521
Symbol 520 GraphicUsed by:521
Symbol 521 MovieClipUses:519 520Used by:Timeline
Symbol 522 GraphicUsed by:523
Symbol 523 MovieClipUses:522Used by:Timeline
Symbol 524 EditableTextUses:27Used by:Timeline
Symbol 525 SoundUsed by:Timeline
Symbol 526 SoundUsed by:Timeline
Symbol 527 GraphicUsed by:530
Symbol 528 MovieClipUses:477Used by:529
Symbol 529 MovieClipUses:528Used by:530  Timeline
Symbol 530 MovieClipUses:527 529 490 42 84Used by:Timeline
Symbol 531 GraphicUsed by:Timeline
Symbol 532 TextUses:27Used by:Timeline
Symbol 533 MovieClipUses:490 255 175 91 42Used by:Timeline
Symbol 534 TextUses:43Used by:537
Symbol 535 TextUses:43Used by:537
Symbol 536 TextUses:43Used by:537
Symbol 537 MovieClipUses:534 535 536Used by:Timeline
Symbol 538 EditableTextUses:27Used by:Timeline
Symbol 539 SoundUsed by:Timeline
Symbol 540 MovieClipUses:490 42 84 260Used by:Timeline
Symbol 541 ButtonUses:262 263Used by:Timeline
Symbol 542 EditableTextUses:27Used by:Timeline
Symbol 543 SoundUsed by:546
Symbol 544 SoundUsed by:546
Symbol 545 GraphicUsed by:546
Symbol 546 MovieClipUses:490 42 543 544 545Used by:Timeline
Symbol 547 SoundUsed by:Timeline
Symbol 548 GraphicUsed by:Timeline
Symbol 549 BitmapUsed by:550
Symbol 550 GraphicUses:549Used by:551
Symbol 551 MovieClipUses:550Used by:552
Symbol 552 MovieClipUses:551Used by:581
Symbol 553 BitmapUsed by:554
Symbol 554 GraphicUses:553Used by:555
Symbol 555 MovieClipUses:554Used by:559
Symbol 556 BitmapUsed by:557
Symbol 557 GraphicUses:556Used by:558
Symbol 558 MovieClipUses:557Used by:559 563
Symbol 559 MovieClipUses:555 558Used by:581
Symbol 560 BitmapUsed by:561
Symbol 561 GraphicUses:560Used by:562
Symbol 562 MovieClipUses:561Used by:563
Symbol 563 MovieClipUses:558 562Used by:581
Symbol 564 BitmapUsed by:565
Symbol 565 GraphicUses:564Used by:566
Symbol 566 MovieClipUses:565Used by:570
Symbol 567 BitmapUsed by:568
Symbol 568 GraphicUses:567Used by:569
Symbol 569 MovieClipUses:568Used by:570
Symbol 570 MovieClipUses:566 569Used by:581
Symbol 571 BitmapUsed by:572
Symbol 572 GraphicUses:571Used by:573
Symbol 573 MovieClipUses:572Used by:581
Symbol 574 BitmapUsed by:575
Symbol 575 GraphicUses:574Used by:576
Symbol 576 MovieClipUses:575Used by:577
Symbol 577 MovieClipUses:576Used by:581
Symbol 578 SoundUsed by:581
Symbol 579 ShapeTweeningUsed by:581
Symbol 580 GraphicUsed by:581
Symbol 581 MovieClipUses:552 559 563 570 573 577 578 579 580Used by:Timeline

Instance Names

"loadingscreen"Frame 1Symbol 30 MovieClip
"mainStars"Frame 4Symbol 78 MovieClip
"ship1"Frame 4Symbol 92 MovieClip
"crew"Frame 4Symbol 122 MovieClip
"spaceship"Frame 4Symbol 136 MovieClip
"energybar"Frame 4Symbol 142 MovieClip
"chargebeam"Frame 4Symbol 146 MovieClip
"explosion"Frame 4Symbol 154 MovieClip
"laser"Frame 4Symbol 84 MovieClip
"doublelaser"Frame 4Symbol 159 MovieClip
"bluelaser"Frame 4Symbol 165 MovieClip
"enemy1"Frame 4Symbol 176 MovieClip
"enemy2"Frame 4Symbol 176 MovieClip
"enemy3"Frame 4Symbol 176 MovieClip
"enemy4"Frame 4Symbol 176 MovieClip
"enemy5"Frame 4Symbol 176 MovieClip
"enemy6"Frame 4Symbol 176 MovieClip
"enemy7"Frame 4Symbol 176 MovieClip
"enemy8"Frame 4Symbol 176 MovieClip
"wheelenemy1"Frame 4Symbol 186 MovieClip
"mainGround"Frame 4Symbol 193 MovieClip
"healthbar"Frame 4Symbol 216 MovieClip
"score"Frame 4Symbol 217 EditableText
"drillboss"Frame 5Symbol 223 MovieClip
"drillbosshealthbar"Frame 5Symbol 250 MovieClip
"score"Frame 6Symbol 266 EditableText
"score"Frame 7Symbol 271 EditableText
"score"Frame 8Symbol 285 EditableText
"astroidenemy1"Frame 10Symbol 305 MovieClip
"wheelenemy1"Frame 10Symbol 186 MovieClip
"ship1"Frame 10Symbol 92 MovieClip
"crew"Frame 10Symbol 122 MovieClip
"spaceship"Frame 10Symbol 136 MovieClip
"energybar"Frame 10Symbol 142 MovieClip
"chargebeam"Frame 10Symbol 146 MovieClip
"explosion"Frame 10Symbol 154 MovieClip
"laser"Frame 10Symbol 84 MovieClip
"doublelaser"Frame 10Symbol 159 MovieClip
"bluelaser"Frame 10Symbol 165 MovieClip
"enemy1"Frame 10Symbol 176 MovieClip
"enemy2"Frame 10Symbol 176 MovieClip
"enemy3"Frame 10Symbol 176 MovieClip
"enemy4"Frame 10Symbol 176 MovieClip
"enemy5"Frame 10Symbol 176 MovieClip
"enemy6"Frame 10Symbol 176 MovieClip
"enemy7"Frame 10Symbol 176 MovieClip
"mainGround"Frame 10Symbol 193 MovieClip
"healthbar"Frame 10Symbol 306 MovieClip
"score"Frame 10Symbol 307 EditableText
"android"Frame 11Symbol 349 MovieClip
"androidhealthbar"Frame 11Symbol 351 MovieClip
"score"Frame 12Symbol 354 EditableText
"spaceship"Frame 13Symbol 136 MovieClip
"energybar"Frame 13Symbol 142 MovieClip
"chargebeam"Frame 13Symbol 146 MovieClip
"score"Frame 13Symbol 360 EditableText
"bg"Frame 15Symbol 418 MovieClip
"jump_meter"Frame 15Symbol 423 MovieClip
"fly_meter"Frame 15Symbol 424 MovieClip
"fox"Frame 16Symbol 473 MovieClip
"flight"Frame 18Symbol 504 MovieClip
"inship"Frame 18Symbol 516 MovieClip
"wolfhealth"Frame 18Symbol 518 MovieClip
"healthbar"Frame 18Symbol 521 MovieClip
"score"Frame 18Symbol 524 EditableText
"unlock"Frame 20Symbol 537 MovieClip
"score"Frame 20Symbol 538 EditableText
"score"Frame 21Symbol 542 EditableText
"bar"Symbol 11 MovieClip Frame 1Symbol 9 MovieClip
"Circle"Symbol 30 MovieClip Frame 1Symbol 5 MovieClip
"stars"Symbol 78 MovieClip Frame 1Symbol 75 MovieClip
"stars2"Symbol 78 MovieClip Frame 1Symbol 77 MovieClip
"ship"Symbol 92 MovieClip Frame 1Symbol 81 MovieClip
"laseraction"Symbol 92 MovieClip Frame 1Symbol 86 MovieClip
"spacehit"Symbol 136 MovieClip Frame 1Symbol 124 MovieClip
"spaceroll"Symbol 136 MovieClip Frame 4Symbol 124 MovieClip
"chargehit"Symbol 146 MovieClip Frame 47Symbol 144 MovieClip
"laseraction"Symbol 181 MovieClip Frame 50Symbol 86 MovieClip
"laseraction"Symbol 181 MovieClip Frame 150Symbol 86 MovieClip
"wheelenemy"Symbol 186 MovieClip Frame 1Symbol 180 MovieClip
"ground"Symbol 193 MovieClip Frame 1Symbol 190 MovieClip
"ground2"Symbol 193 MovieClip Frame 1Symbol 192 MovieClip
"ground"Symbol 282 MovieClip Frame 1Symbol 190 MovieClip
"ground2"Symbol 282 MovieClip Frame 1Symbol 192 MovieClip
"stars"Symbol 284 MovieClip Frame 1Symbol 281 MovieClip
"stars"Symbol 284 MovieClip Frame 1Symbol 281 MovieClip
"stars"Symbol 284 MovieClip Frame 257Symbol 281 MovieClip
"stars"Symbol 284 MovieClip Frame 257Symbol 281 MovieClip
"stars"Symbol 289 MovieClip Frame 1Symbol 281 MovieClip
"stars2"Symbol 289 MovieClip Frame 1Symbol 288 MovieClip
"astroidenemyhit1"Symbol 296 MovieClip Frame 2Symbol 292 MovieClip
"laseraction"Symbol 296 MovieClip Frame 10Symbol 86 MovieClip
"laseraction"Symbol 296 MovieClip Frame 20Symbol 86 MovieClip
"laseraction"Symbol 296 MovieClip Frame 30Symbol 86 MovieClip
"astroidenemymove"Symbol 305 MovieClip Frame 1Symbol 296 MovieClip
"beam2"Symbol 344 MovieClip Frame 50Symbol 343 MovieClip
"beam"Symbol 348 MovieClip Frame 1Symbol 344 MovieClip
"right"Symbol 349 MovieClip Frame 1Symbol 309 MovieClip
"head"Symbol 349 MovieClip Frame 1Symbol 311 MovieClip
"left"Symbol 349 MovieClip Frame 1Symbol 313 MovieClip
"right"Symbol 349 MovieClip Frame 169Symbol 326 MovieClip
"right"Symbol 349 MovieClip Frame 187Symbol 309 MovieClip
"head"Symbol 349 MovieClip Frame 205Symbol 329 MovieClip
"head"Symbol 349 MovieClip Frame 206Symbol 311 MovieClip
"right"Symbol 349 MovieClip Frame 253Symbol 326 MovieClip
"right"Symbol 349 MovieClip Frame 264Symbol 309 MovieClip
"beam0"Symbol 349 MovieClip Frame 275Symbol 348 MovieClip
"head"Symbol 349 MovieClip Frame 465Symbol 311 MovieClip
"right"Symbol 358 MovieClip Frame 1Symbol 309 MovieClip
"head"Symbol 358 MovieClip Frame 1Symbol 311 MovieClip
"left"Symbol 358 MovieClip Frame 1Symbol 313 MovieClip
"health"Symbol 399 MovieClip Frame 1Symbol 398 MovieClip
"segment1"Symbol 418 MovieClip Frame 1Symbol 401 MovieClip
"segment2"Symbol 418 MovieClip Frame 1Symbol 406 MovieClip
"segment3"Symbol 418 MovieClip Frame 1Symbol 413 MovieClip
"segment4"Symbol 418 MovieClip Frame 1Symbol 417 MovieClip
"fox_shoot"Symbol 456 MovieClip Frame 2Symbol 455 MovieClip
"fox_hit"Symbol 473 MovieClip Frame 1Symbol 428 MovieClip
"fox2"Symbol 473 MovieClip Frame 1Symbol 456 MovieClip
"wolfen"Symbol 504 MovieClip Frame 2Symbol 485 MovieClip
"wolfen"Symbol 504 MovieClip Frame 288Symbol 490 MovieClip
"wolfen"Symbol 504 MovieClip Frame 309Symbol 492 MovieClip
"wolfen"Symbol 504 MovieClip Frame 382Symbol 485 MovieClip
"wolfen"Symbol 504 MovieClip Frame 526Symbol 490 MovieClip
"wolfen"Symbol 504 MovieClip Frame 673Symbol 492 MovieClip
"wolfen"Symbol 504 MovieClip Frame 700Symbol 485 MovieClip
"wolfen"Symbol 504 MovieClip Frame 857Symbol 490 MovieClip
"wolfen"Symbol 504 MovieClip Frame 871Symbol 492 MovieClip

Labels

"menu"Frame 2
"controls"Frame 3
"start"Frame 4
"boss"Frame 5
"gameover"Frame 6
"youwin1"Frame 7
"takeoff"Frame 8
"retry"Frame 9
"level_2"Frame 10
"boss2"Frame 11
"gameover2"Frame 12
"youwin2"Frame 13
"retry2"Frame 14
"ground_1"Frame 15
"ground_lvl1"Frame 16
"retry3"Frame 17
"inship"Frame 18
"loop"Frame 19
"youwinw"Frame 20
"youlosew"Frame 21
"findw"Frame 22
"credits"Frame 23
"stop"Symbol 122 MovieClip Frame 660
"stop"Symbol 154 MovieClip Frame 61
"stop"Symbol 155 MovieClip Frame 102
"loop"Symbol 157 MovieClip Frame 67
"shoot"Symbol 157 MovieClip Frame 69
"stop"Symbol 157 MovieClip Frame 184
"dead"Symbol 399 MovieClip Frame 8
"up"Symbol 423 MovieClip Frame 2
"backdown"Symbol 423 MovieClip Frame 11
"falling"Symbol 423 MovieClip Frame 25
"up"Symbol 424 MovieClip Frame 2
"backdown"Symbol 424 MovieClip Frame 11
"falling"Symbol 424 MovieClip Frame 27
"standing"Symbol 473 MovieClip Frame 1
"standing2"Symbol 473 MovieClip Frame 2
"walking2"Symbol 473 MovieClip Frame 3
"walking"Symbol 473 MovieClip Frame 4
"running2"Symbol 473 MovieClip Frame 5
"running"Symbol 473 MovieClip Frame 6
"jumping2"Symbol 473 MovieClip Frame 7
"jumping"Symbol 473 MovieClip Frame 8
"flying"Symbol 473 MovieClip Frame 9
"flying2"Symbol 473 MovieClip Frame 10
"falling"Symbol 473 MovieClip Frame 11
"withdraw"Symbol 473 MovieClip Frame 12
"loop1"Symbol 504 MovieClip Frame 379
"stop1"Symbol 504 MovieClip Frame 381
"wolfdie"Symbol 504 MovieClip Frame 699
"damage"Symbol 516 MovieClip Frame 2

Dynamic Text Variables

scoreSymbol 217 EditableText""
scoreSymbol 266 EditableText""
scoreSymbol 271 EditableText""
scoreSymbol 285 EditableText""
scoreSymbol 307 EditableText""
scoreSymbol 354 EditableText""
scoreSymbol 360 EditableText""
scoreSymbol 524 EditableText""
scoreSymbol 538 EditableText""
scoreSymbol 542 EditableText""




http://swfchan.com/9/42262/info.shtml
Created: 10/5 -2019 00:53:57 Last modified: 10/5 -2019 00:53:57 Server time: 13/05 -2024 20:00:54