Frame 1
total_bytes = _root.getBytesTotal();
loaded_bytes = _root.getBytesLoaded();
remaining_bytes = total_bytes - loaded_bytes;
percent_done = int((loaded_bytes / total_bytes) * 100);
bar.gotoAndStop(percent_done);
ifFrameLoaded ((remaining_bytes = total_bytes - loaded_bytes)) {
gotoAndPlay (3);
}
Frame 2
gotoAndPlay (1);
Frame 288
Frame 509
stop();
Frame 2497
numEnemy = 10;
numdropship = 5;
numEnemy2 = 2;
Instance of Symbol 204 MovieClip "thrust" in Frame 2497
onClipEvent (enterFrame) {
this._x = _root.spaceship._x + 0;
this._y = _root.spaceship._y + 10;
if (_root.spaceship._currentframe > 140) {
nextFrame();
}
}
Instance of Symbol 260 MovieClip "laser" in Frame 2497
onClipEvent (load) {
laserMoveSpeed = 20;
this._x = _root.spaceship._x + 32;
this._y = _root.spaceship._y + 12;
stop();
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (this._x > 600) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
}
}
Instance of Symbol 285 MovieClip "player_dam" in Frame 2497
onClipEvent (load) {
this._x = _root.spaceship._x + 0;
this._y = _root.spaceship._y + 0;
}
onClipEvent (enterFrame) {
this._x = _root.spaceship._x;
this._y = _root.spaceship._y;
if (_root.spaceship._currentframe == 2) {
nextFrame();
stop();
}
if (_root.spaceship._currentframe == 26) {
nextFrame();
stop();
}
if (_root.spaceship._currentframe == 51) {
nextFrame();
stop();
}
if (_root.spaceship._currentframe == 76) {
nextFrame();
stop();
}
if (_root.spaceship._currentframe == 101) {
nextFrame();
stop();
}
if (_root.spaceship._currentframe == 127) {
nextFrame();
stop();
}
if (_root.spaceship._currentframe == 146) {
nextFrame();
stop();
}
}
Instance of Symbol 289 MovieClip "pw_water" in Frame 2497
onClipEvent (load) {
stop();
_root.pw1.gotoAndStop(1);
}
onClipEvent (enterFrame) {
this._x = _root.spaceship._x - 30;
this._y = _root.sbar._y + 0;
if (_root.spaceship._currentframe < 180) {
if (_root.sbar.hitTest(_root.spaceship)) {
_root.pw1.gotoAndStop(2);
} else {
_root.pw1.gotoAndStop(3);
}
}
}
Instance of Symbol 292 MovieClip "image" in Frame 2497
onClipEvent (load) {
stop();
this._x = _root.spaceship._x;
this._y = _root.spaceship._y + 20;
}
Instance of Symbol 300 MovieClip "pw1" in Frame 2497
onClipEvent (load) {
stop();
_root.pw1.gotoAndStop(1);
}
onClipEvent (enterFrame) {
this._x = _root.spaceship._x - 30;
this._y = _root.sbar._y + 0;
if (_root.spaceship._currentframe < 180) {
if (_root.sbar.hitTest(_root.spaceship)) {
_root.pw1.gotoAndStop(2);
} else {
_root.pw1.gotoAndStop(3);
}
}
}
Instance of Symbol 370 MovieClip in Frame 2497
on (release) {
toggleHighQuality();
}
Instance of Symbol 372 MovieClip in Frame 2497
on (release) {
getURL ("http://invisionfree.com/forums/Adregalus_Forums", "_blank");
}
Instance of Symbol 384 MovieClip "mis0" in Frame 2516
onClipEvent (load) {
stop();
this._x = _root.spaceship._x + 5;
this._y = _root.spaceship._y + 20;
}
onClipEvent (enterFrame) {
if (Key.isDown(88)) {
if (_root.misscounter._currentframe < 6) {
if (_root.mis0._currentframe < 2) {
if (_root.spaceship._currentframe < 130) {
if (_root.mis0._currentframe == 1) {
_root.misscounter.nextFrame();
}
this._x = _root.spaceship._x + 5;
this._y = _root.spaceship._y + 20;
_root.mis0.nextFrame();
play();
}
}
}
}
if (Key.isDown(88)) {
if (_root.misscounter._currentframe > 9) {
if (_root.mis0._currentframe < 2) {
if (_root.spaceship._currentframe < 130) {
if (_root.mis0._currentframe == 1) {
this._x = _root.spaceship._x + 5;
}
this._y = _root.spaceship._y + 20;
_root.mis0.nextFrame();
play();
}
}
}
}
if (_root.mis0._currentframe == 73) {
_root.mis0.gotoAndStop(1);
}
}
Instance of Symbol 452 MovieClip "spaceship" in Frame 2526
onClipEvent (load) {
moveSpeed = 5;
_root.laser._visible = false;
_root.enemylaser._visible = false;
laserCounter = 0;
scrollx = _root.mainGround.ground._width / 1;
scrollStart = false;
maxLasers = 5;
depthCounter = 0;
var reloadtime = 6;
fired = 0;
Redge = 600 - (_width / 2);
Ledge = 50 - (_width / 2);
Uedge = 285 - (_height / 2);
Dedge = -60 + (_height / 2);
sy = _y;
ang = 0;
}
onClipEvent (enterFrame) {
if (_root.spaceship._currentframe < 130) {
if (Key.isDown(67) and (laserCounter <= maxLasers)) {
reload++;
if (reload > reloadtime) {
fired = 0;
reload = 0;
}
if (fired == 0) {
fired = 1;
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxLasers) {
depthCounter = 0;
}
}
}
}
_y = (sy + (2 * Math.cos((ang = ang + 0.092))));
if (_root.spaceship._currentframe < 140) {
if (Key.isDown(39) and (_x < Redge)) {
this._x = this._x + (moveSpeed + 1);
}
if (Key.isDown(37) and (_x > Ledge)) {
this._x = this._x - moveSpeed;
}
if (Key.isDown(40) and (_y < (Uedge - 50))) {
this._y = this._y + moveSpeed;
sy = sy + moveSpeed;
}
if (Key.isDown(38) and (_y > (Dedge + 50))) {
this._y = this._y - moveSpeed;
sy = sy - moveSpeed;
}
}
if (_root.powerbar._currentframe == 2) {
var reloadtime = 6;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 3) {
var reloadtime = 5;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 4) {
var reloadtime = 4;
maxLasers = 5;
}
if (_root.powerbar._currentframe == 5) {
var reloadtime = 5;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 6) {
var reloadtime = 5;
maxLasers = 5;
}
if (_root.powerbar._currentframe == 7) {
var reloadtime = 5;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 8) {
var reloadtime = 4;
maxLasers = 4;
}
if (_root.powerbar._currentframe == 9) {
var reloadtime = 3;
maxLasers = 5;
}
if (_root.powerbar._currentframe == 10) {
var reloadtime = 4;
maxLasers = 5;
}
}
Frame 2533
Instance of Symbol 471 MovieClip "we5" in Frame 2643
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy5._currentframe == 2) {
this._x = _root.enemy5._x + 30;
this._y = _root.enemy5._y + 20;
_root.we5.nextFrame();
stop();
}
}
Instance of Symbol 471 MovieClip "we6" in Frame 2643
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy6._currentframe == 2) {
this._x = _root.enemy6._x + 30;
this._y = _root.enemy6._y + 20;
_root.we6.nextFrame();
stop();
}
}
Instance of Symbol 471 MovieClip "we4" in Frame 2643
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy4._currentframe == 2) {
this._x = _root.enemy4._x + 30;
this._y = _root.enemy4._y + 20;
_root.we4.nextFrame();
stop();
}
}
Instance of Symbol 471 MovieClip "we2" in Frame 2643
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 2) {
this._x = _root.enemy2._x + 30;
this._y = _root.enemy2._y + 20;
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 474 MovieClip "enemy6" in Frame 2652
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 474 MovieClip "enemy4" in Frame 2671
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 474 MovieClip "enemy5" in Frame 2687
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 474 MovieClip "enemy2" in Frame 2705
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 492 MovieClip "we1" in Frame 2772
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x + 30;
this._y = _root.enemy1._y + 20;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 492 MovieClip "we2" in Frame 2772
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x + 30;
this._y = _root.enemy2._y + 20;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 492 MovieClip "we3" in Frame 2772
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x + 30;
this._y = _root.enemy3._y + 20;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 495 MovieClip "enemy1" in Frame 2773
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 495 MovieClip "enemy2" in Frame 2798
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 495 MovieClip "enemy3" in Frame 2825
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 511 MovieClip "ds1" in Frame 2874
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship1._currentframe < 16) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
stop();
}
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 16) {
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 2904
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 15) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 2919
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 15) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 2935
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 15) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 2969
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 15) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 2969
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 15) {
nextFrame();
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 2986
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 2987
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 15) {
nextFrame();
}
}
Instance of Symbol 474 MovieClip "enemy6" in Frame 3022
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 471 MovieClip "we5" in Frame 3022
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy5._currentframe == 2) {
this._x = _root.enemy5._x + 30;
this._y = _root.enemy5._y + 20;
_root.we5.nextFrame();
stop();
}
}
Instance of Symbol 471 MovieClip "we6" in Frame 3022
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy6._currentframe == 2) {
this._x = _root.enemy6._x + 30;
this._y = _root.enemy6._y + 20;
_root.we6.nextFrame();
stop();
}
}
Instance of Symbol 471 MovieClip "we4" in Frame 3022
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy4._currentframe == 2) {
this._x = _root.enemy4._x + 30;
this._y = _root.enemy4._y + 20;
_root.we4.nextFrame();
stop();
}
}
Instance of Symbol 471 MovieClip "we2" in Frame 3022
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 2) {
this._x = _root.enemy2._x + 30;
this._y = _root.enemy2._y + 20;
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 471 MovieClip "we3" in Frame 3022
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 2) {
this._x = _root.enemy3._x + 30;
this._y = _root.enemy3._y + 20;
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 471 MovieClip "we1" in Frame 3022
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 2) {
this._x = _root.enemy1._x + 30;
this._y = _root.enemy1._y + 20;
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 474 MovieClip "enemy1" in Frame 3033
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 474 MovieClip "enemy2" in Frame 3043
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 474 MovieClip "enemy3" in Frame 3054
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 474 MovieClip "enemy4" in Frame 3064
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 474 MovieClip "enemy5" in Frame 3073
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 492 MovieClip "we7" in Frame 3106
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy7._currentframe == 1) {
this._x = _root.enemy7._x + 30;
this._y = _root.enemy7._y + 20;
stop();
}
if (_root.enemy7._currentframe > 1) {
_root.we7.nextFrame();
stop();
}
}
Instance of Symbol 492 MovieClip "we8" in Frame 3106
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy8._currentframe == 1) {
this._x = _root.enemy8._x + 30;
this._y = _root.enemy8._y + 20;
stop();
}
if (_root.enemy8._currentframe > 1) {
_root.we8.nextFrame();
stop();
}
}
Instance of Symbol 492 MovieClip "we9" in Frame 3106
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy9._currentframe == 1) {
this._x = _root.enemy9._x + 30;
this._y = _root.enemy9._y + 20;
stop();
}
if (_root.enemy9._currentframe > 1) {
_root.we9.nextFrame();
stop();
}
}
Instance of Symbol 495 MovieClip "enemy7" in Frame 3107
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 495 MovieClip "enemy8" in Frame 3128
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 495 MovieClip "enemy9" in Frame 3146
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 550 MovieClip "dropship2" in Frame 3258
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 552 MovieClip "ds1" in Frame 3264
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship1._currentframe < 4) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
stop();
}
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 4) {
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 552 MovieClip "ds2" in Frame 3264
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship2._currentframe < 4) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
stop();
}
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 4) {
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 552 MovieClip "ds3" in Frame 3264
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship3._currentframe < 4) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
stop();
}
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 4) {
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 550 MovieClip "dropship3" in Frame 3265
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 550 MovieClip "dropship1" in Frame 3265
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 558 MovieClip in Frame 3313
onClipEvent (enterFrame) {
if (_root.dropship1._currentframe < 3) {
nextFrame();
}
}
Instance of Symbol 558 MovieClip in Frame 3324
onClipEvent (enterFrame) {
if (_root.dropship2._currentframe < 3) {
nextFrame();
}
}
Instance of Symbol 558 MovieClip in Frame 3334
onClipEvent (enterFrame) {
if (_root.dropship3._currentframe < 3) {
nextFrame();
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 3387
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 550 MovieClip "dropship1" in Frame 3414
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 607 MovieClip "tg1" in Frame 3557
onClipEvent (enterFrame) {
rot = Math.atan2(_root.spaceship._y - this._y, _root.spaceship._x - this._x);
rotNum = (rot * 360) / (Math.PI*2);
if (rotNum < 0) {
this._rotation = rotNum;
}
this._x = _root.dropship1._x + 5;
this._y = _root.dropship1._y - 5;
if (_root.dropship1._currentframe == 7) {
_root.tg1.nextFrame();
stop();
}
}
Instance of Symbol 609 MovieClip "dropship1" in Frame 3557
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 622 MovieClip "ds1" in Frame 3557
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe == 7) {
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 607 MovieClip "tg2" in Frame 3564
onClipEvent (enterFrame) {
rot = Math.atan2(_root.spaceship._y - this._y, _root.spaceship._x - this._x);
rotNum = (rot * 360) / (Math.PI*2);
if (rotNum < 0) {
this._rotation = rotNum;
}
this._x = _root.dropship2._x + 5;
this._y = _root.dropship2._y - 5;
if (_root.dropship2._currentframe == 7) {
_root.tg2.nextFrame();
stop();
}
}
Instance of Symbol 609 MovieClip "dropship2" in Frame 3564
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 622 MovieClip "ds2" in Frame 3564
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe == 7) {
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 624 MovieClip in Frame 3565
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 6) {
nextFrame();
}
}
Instance of Symbol 624 MovieClip in Frame 3583
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 6) {
nextFrame();
}
}
Instance of Symbol 624 MovieClip in Frame 3596
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 6) {
nextFrame();
}
}
Instance of Symbol 624 MovieClip in Frame 3605
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship2._currentframe < 6) {
nextFrame();
}
}
Instance of Symbol 626 MovieClip "we1" in Frame 3615
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x;
this._y = _root.enemy1._y;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 626 MovieClip "we2" in Frame 3615
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x;
this._y = _root.enemy2._y;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 626 MovieClip "we3" in Frame 3615
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x;
this._y = _root.enemy3._y;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 626 MovieClip "we4" in Frame 3615
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy4._currentframe == 1) {
this._x = _root.enemy4._x;
this._y = _root.enemy4._y;
stop();
}
if (_root.enemy4._currentframe > 1) {
_root.we4.nextFrame();
stop();
}
}
Instance of Symbol 624 MovieClip in Frame 3634
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship2._currentframe < 6) {
nextFrame();
}
}
Instance of Symbol 627 MovieClip "enemy1" in Frame 3644
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy2" in Frame 3663
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 624 MovieClip in Frame 3672
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship2._currentframe < 6) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 3676
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 627 MovieClip "enemy3" in Frame 3678
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy4" in Frame 3687
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 629 MovieClip in Frame 3689
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 3704
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy3._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 3717
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy4._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 609 MovieClip "dropship1" in Frame 3718
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 607 MovieClip "tg3" in Frame 3725
onClipEvent (enterFrame) {
rot = Math.atan2(_root.spaceship._y - this._y, _root.spaceship._x - this._x);
rotNum = (rot * 360) / (Math.PI*2);
if (rotNum < 0) {
this._rotation = rotNum;
}
this._x = _root.dropship3._x + 5;
this._y = _root.dropship3._y - 5;
if (_root.dropship3._currentframe == 7) {
_root.tg3.nextFrame();
stop();
}
}
Instance of Symbol 609 MovieClip "dropship3" in Frame 3725
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 622 MovieClip "ds3" in Frame 3725
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe == 7) {
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 495 MovieClip "enemy5" in Frame 3745
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 632 MovieClip "we7" in Frame 3746
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy7._currentframe == 1) {
this._x = _root.enemy7._x + 30;
this._y = _root.enemy7._y + 20;
stop();
}
if (_root.enemy7._currentframe > 1) {
_root.we7.nextFrame();
stop();
}
}
Instance of Symbol 632 MovieClip "we6" in Frame 3746
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy6._currentframe == 1) {
this._x = _root.enemy6._x + 30;
this._y = _root.enemy6._y + 20;
stop();
}
if (_root.enemy6._currentframe > 1) {
_root.we6.nextFrame();
stop();
}
}
Instance of Symbol 632 MovieClip "we5" in Frame 3746
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy5._currentframe == 1) {
this._x = _root.enemy5._x + 30;
this._y = _root.enemy5._y + 20;
stop();
}
if (_root.enemy5._currentframe > 1) {
_root.we5.nextFrame();
stop();
}
}
Instance of Symbol 495 MovieClip "enemy6" in Frame 3761
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 495 MovieClip "enemy7" in Frame 3773
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 634 MovieClip in Frame 3777
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy5._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 634 MovieClip in Frame 3792
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy6._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 634 MovieClip in Frame 3806
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy7._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 641 MovieClip "ds1" in Frame 3821
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship1._currentframe < 4) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
stop();
}
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 4) {
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 641 MovieClip "ds2" in Frame 3821
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship2._currentframe < 4) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
stop();
}
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 4) {
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 641 MovieClip "ds4" in Frame 3821
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship4._currentframe < 4) {
this._x = _root.dropship4._x + 0;
this._y = _root.dropship4._y + 0;
stop();
}
if (_root.ds4._currentframe < 2) {
if (_root.dropship4._currentframe > 4) {
_root.ds4.nextFrame();
stop();
}
}
}
Instance of Symbol 624 MovieClip in Frame 3859
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship1._currentframe < 4) {
nextFrame();
}
}
Instance of Symbol 624 MovieClip in Frame 3890
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship2._currentframe < 4) {
nextFrame();
}
}
Instance of Symbol 653 MovieClip "enemy1" in Frame 3897
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 657 MovieClip "we3" in Frame 3897
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x + 0;
this._y = _root.enemy3._y + 0;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 657 MovieClip "we2" in Frame 3897
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x + 0;
this._y = _root.enemy2._y + 0;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 657 MovieClip "we1" in Frame 3897
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x + 0;
this._y = _root.enemy1._y + 0;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 624 MovieClip in Frame 3907
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.dropship4._currentframe < 4) {
nextFrame();
}
}
Instance of Symbol 653 MovieClip "enemy2" in Frame 3920
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 653 MovieClip "enemy3" in Frame 3945
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 4051
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 669 MovieClip "ds1" in Frame 4081
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship1._currentframe < 6) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
stop();
}
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 6) {
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 669 MovieClip "ds2" in Frame 4081
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship2._currentframe < 6) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
stop();
}
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 6) {
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 669 MovieClip "ds3" in Frame 4081
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship3._currentframe < 6) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
stop();
}
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 6) {
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 669 MovieClip "ds4" in Frame 4081
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship4._currentframe < 6) {
this._x = _root.dropship4._x + 0;
this._y = _root.dropship4._y + 0;
stop();
}
if (_root.ds4._currentframe < 2) {
if (_root.dropship4._currentframe > 6) {
_root.ds4.nextFrame();
stop();
}
}
}
Instance of Symbol 669 MovieClip "ds5" in Frame 4081
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship5._currentframe < 6) {
this._x = _root.dropship5._x + 0;
this._y = _root.dropship5._y + 0;
stop();
}
if (_root.ds5._currentframe < 2) {
if (_root.dropship5._currentframe > 6) {
_root.ds5.nextFrame();
stop();
}
}
}
Instance of Symbol 673 MovieClip "dropship1" in Frame 4098
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 673 MovieClip "dropship2" in Frame 4121
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 673 MovieClip "dropship3" in Frame 4159
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 673 MovieClip "dropship4" in Frame 4201
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 673 MovieClip "dropship5" in Frame 4251
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 657 MovieClip "we3" in Frame 4353
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x + 0;
this._y = _root.enemy3._y + 0;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 657 MovieClip "we2" in Frame 4353
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x + 0;
this._y = _root.enemy2._y + 0;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 653 MovieClip "enemy3" in Frame 4354
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 653 MovieClip "enemy2" in Frame 4375
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 657 MovieClip "we1" in Frame 4770
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x + 0;
this._y = _root.enemy1._y + 0;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 657 MovieClip "we2" in Frame 4770
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x + 0;
this._y = _root.enemy2._y + 0;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 726 MovieClip "we3" in Frame 4770
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x;
this._y = _root.enemy3._y;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 726 MovieClip "we4" in Frame 4770
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy4._currentframe == 1) {
this._x = _root.enemy4._x;
this._y = _root.enemy4._y;
stop();
}
if (_root.enemy4._currentframe > 1) {
_root.we4.nextFrame();
stop();
}
}
Instance of Symbol 653 MovieClip "enemy1" in Frame 4771
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy3" in Frame 4771
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 653 MovieClip "enemy2" in Frame 4801
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy4" in Frame 4801
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 629 MovieClip in Frame 4898
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy3._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 4931
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy4._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 5035
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 735 MovieClip "healthup" in Frame 5035
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(1);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(25);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(50);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(75);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(100);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(125);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
}
Instance of Symbol 289 MovieClip "pw1" in Frame 5143
onClipEvent (load) {
stop();
_root.pw1.gotoAndStop(1);
}
onClipEvent (enterFrame) {
this._x = _root.spaceship._x - 30;
this._y = _root.sbar._y + 0;
if (_root.spaceship._currentframe < 180) {
if (_root.sbar.hitTest(_root.spaceship)) {
_root.pw1.gotoAndStop(2);
} else {
_root.pw1.gotoAndStop(3);
}
}
}
Instance of Symbol 745 MovieClip "we1" in Frame 5190
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x;
this._y = _root.enemy1._y;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 745 MovieClip "we2" in Frame 5190
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x;
this._y = _root.enemy2._y;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 745 MovieClip "we3" in Frame 5190
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x;
this._y = _root.enemy3._y;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 745 MovieClip "we4" in Frame 5190
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy4._currentframe == 1) {
this._x = _root.enemy4._x;
this._y = _root.enemy4._y;
stop();
}
if (_root.enemy4._currentframe > 1) {
_root.we4.nextFrame();
stop();
}
}
Instance of Symbol 627 MovieClip "enemy1" in Frame 5191
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy2" in Frame 5219
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy4" in Frame 5226
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy3" in Frame 5233
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 751 MovieClip "we5" in Frame 5314
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy5._currentframe == 1) {
this._x = _root.enemy5._x;
this._y = _root.enemy5._y;
stop();
}
if (_root.enemy5._currentframe > 1) {
_root.we5.nextFrame();
stop();
}
}
Instance of Symbol 751 MovieClip "we6" in Frame 5314
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy6._currentframe == 1) {
this._x = _root.enemy6._x;
this._y = _root.enemy6._y;
stop();
}
if (_root.enemy6._currentframe > 1) {
_root.we6.nextFrame();
stop();
}
}
Instance of Symbol 745 MovieClip "we7" in Frame 5314
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy7._currentframe == 1) {
this._x = _root.enemy7._x;
this._y = _root.enemy7._y;
stop();
}
if (_root.enemy7._currentframe > 1) {
_root.we7.nextFrame();
stop();
}
}
Instance of Symbol 745 MovieClip "we8" in Frame 5314
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy8._currentframe == 1) {
this._x = _root.enemy8._x;
this._y = _root.enemy8._y;
stop();
}
if (_root.enemy8._currentframe > 1) {
_root.we8.nextFrame();
stop();
}
}
Instance of Symbol 627 MovieClip "enemy7" in Frame 5315
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy8" in Frame 5331
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 754 MovieClip in Frame 5362
onClipEvent (enterFrame) {
if (_root.enemy7._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 757 MovieClip "ds5" in Frame 5371
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship5._currentframe < 6) {
this._x = _root.dropship5._x + 0;
this._y = _root.dropship5._y + 0;
stop();
}
if (_root.ds5._currentframe < 2) {
if (_root.dropship5._currentframe > 6) {
_root.ds5.nextFrame();
stop();
}
}
}
Instance of Symbol 673 MovieClip "dropship5" in Frame 5373
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 813 MovieClip "b1" in Frame 5711
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.boss._currentframe == 7) {
this._x = _root.boss._x + 30;
this._y = _root.boss._y + 20;
_root.b1.nextFrame();
stop();
}
}
Instance of Symbol 814 MovieClip "dropship1" in Frame 5712
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 629 MovieClip in Frame 5743
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 5750
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 5757
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 818 MovieClip in Frame 5791
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 818 MovieClip in Frame 5796
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 818 MovieClip in Frame 5800
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 818 MovieClip in Frame 5805
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 818 MovieClip in Frame 5811
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 818 MovieClip in Frame 5817
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 827 MovieClip in Frame 6066
onClipEvent (enterFrame) {
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Frame 6260
gotoAndPlay (5731);
Instance of Symbol 834 MovieClip "ds1" in Frame 6301
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 4) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 834 MovieClip "ds2" in Frame 6301
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 4) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 818 MovieClip in Frame 6328
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 754 MovieClip in Frame 6348
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 6355
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 818 MovieClip in Frame 6361
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 754 MovieClip in Frame 6387
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 847 MovieClip "ds3" in Frame 6395
onClipEvent (load) {
this._x = _root.boss._x + 0;
this._y = _root.boss._y + 0;
stop();
}
onClipEvent (enterFrame) {
this._x = _root.boss._x + 0;
this._y = _root.boss._y + 0;
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 17) {
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 858 MovieClip "dropship3" in Frame 6396
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 865 MovieClip "we1" in Frame 6475
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x;
this._y = _root.enemy1._y;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 865 MovieClip "we2" in Frame 6475
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x;
this._y = _root.enemy2._y;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 865 MovieClip "we3" in Frame 6475
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x;
this._y = _root.enemy3._y;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 867 MovieClip "enemy1" in Frame 6476
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 867 MovieClip "enemy2" in Frame 6481
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 867 MovieClip "enemy3" in Frame 6489
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 735 MovieClip "healthup" in Frame 6532
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(1);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(25);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(50);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(75);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(100);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(125);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
}
Instance of Symbol 883 MovieClip "ds1" in Frame 6622
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 4) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 883 MovieClip "ds2" in Frame 6622
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 4) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 876 MovieClip "dropship1" in Frame 6623
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 888 MovieClip in Frame 6643
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 735 MovieClip "healthup" in Frame 6666
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(1);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(25);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(50);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(75);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(100);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(125);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
}
Instance of Symbol 888 MovieClip in Frame 6674
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 657 MovieClip "we1" in Frame 6677
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x + 0;
this._y = _root.enemy1._y + 0;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 657 MovieClip "we2" in Frame 6677
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x + 0;
this._y = _root.enemy2._y + 0;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 657 MovieClip "we3" in Frame 6677
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x + 0;
this._y = _root.enemy3._y + 0;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 657 MovieClip "we4" in Frame 6677
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy4._currentframe == 1) {
this._x = _root.enemy4._x + 0;
this._y = _root.enemy4._y + 0;
stop();
}
if (_root.enemy4._currentframe > 1) {
_root.we4.nextFrame();
stop();
}
}
Instance of Symbol 653 MovieClip "enemy1" in Frame 6678
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 653 MovieClip "enemy2" in Frame 6694
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 891 MovieClip "ds4" in Frame 6698
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds4._currentframe < 2) {
if (_root.dropship4._currentframe > 4) {
this._x = _root.dropship4._x + 0;
this._y = _root.dropship4._y + 0;
_root.ds4.nextFrame();
stop();
}
}
}
Instance of Symbol 892 MovieClip in Frame 6700
onClipEvent (enterFrame) {
if (_root.ds4._currentframe == 2) {
nextFrame();
}
}
Instance of Symbol 653 MovieClip "enemy3" in Frame 6713
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 653 MovieClip "enemy4" in Frame 6728
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 6754
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 745 MovieClip "we5" in Frame 6772
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy5._currentframe == 1) {
this._x = _root.enemy5._x;
this._y = _root.enemy5._y;
stop();
}
if (_root.enemy5._currentframe > 1) {
_root.we5.nextFrame();
stop();
}
}
Instance of Symbol 745 MovieClip "we6" in Frame 6772
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy6._currentframe == 1) {
this._x = _root.enemy6._x;
this._y = _root.enemy6._y;
stop();
}
if (_root.enemy6._currentframe > 1) {
_root.we6.nextFrame();
stop();
}
}
Instance of Symbol 745 MovieClip "we7" in Frame 6772
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy7._currentframe == 1) {
this._x = _root.enemy7._x;
this._y = _root.enemy7._y;
stop();
}
if (_root.enemy7._currentframe > 1) {
_root.we7.nextFrame();
stop();
}
}
Instance of Symbol 745 MovieClip "we8" in Frame 6772
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy8._currentframe == 1) {
this._x = _root.enemy8._x;
this._y = _root.enemy8._y;
stop();
}
if (_root.enemy8._currentframe > 1) {
_root.we8.nextFrame();
stop();
}
}
Instance of Symbol 627 MovieClip "enemy5" in Frame 6773
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy6" in Frame 6773
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy7" in Frame 6773
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 627 MovieClip "enemy8" in Frame 6773
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 6776
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds4._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 6787
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds4._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 6795
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds4._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 6812
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy5._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 6817
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy6._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 6822
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy7._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 629 MovieClip in Frame 6826
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.enemy8._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 894 MovieClip "we1" in Frame 6842
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x;
this._y = _root.enemy1._y;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 894 MovieClip "we2" in Frame 6842
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x;
this._y = _root.enemy2._y;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 894 MovieClip "we3" in Frame 6842
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x;
this._y = _root.enemy3._y;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 894 MovieClip "we4" in Frame 6842
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy4._currentframe == 1) {
this._x = _root.enemy4._x;
this._y = _root.enemy4._y;
stop();
}
if (_root.enemy4._currentframe > 1) {
_root.we4.nextFrame();
stop();
}
}
Instance of Symbol 895 MovieClip "enemy3" in Frame 6843
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 895 MovieClip "enemy1" in Frame 6843
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 895 MovieClip "enemy4" in Frame 6869
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 895 MovieClip "enemy2" in Frame 6869
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 818 MovieClip in Frame 6934
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.we3._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 6953
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 818 MovieClip in Frame 6957
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 15;
goY = (this._y - _root.spaceship._y) / 15;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.we4._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 921 MovieClip "ds1" in Frame 6960
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 4) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 927 MovieClip in Frame 6966
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 6972
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 6978
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 6984
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 6989
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 6994
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 7000
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 7005
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 936 MovieClip "ds2" in Frame 7006
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 8) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 936 MovieClip "ds3" in Frame 7006
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 8) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 936 MovieClip "ds4" in Frame 7006
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds4._currentframe < 2) {
if (_root.dropship4._currentframe > 8) {
this._x = _root.dropship4._x + 0;
this._y = _root.dropship4._y + 0;
_root.ds4.nextFrame();
stop();
}
}
}
Instance of Symbol 937 MovieClip "dropship2" in Frame 7007
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 927 MovieClip in Frame 7016
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 7021
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 937 MovieClip "dropship3" in Frame 7025
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 927 MovieClip in Frame 7027
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 927 MovieClip in Frame 7034
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 937 MovieClip "dropship4" in Frame 7042
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 940 MovieClip in Frame 7049
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 942 MovieClip "we1" in Frame 7062
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x;
this._y = _root.enemy1._y;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 942 MovieClip "we2" in Frame 7062
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x;
this._y = _root.enemy2._y;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 942 MovieClip "we3" in Frame 7062
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x;
this._y = _root.enemy3._y;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 495 MovieClip "enemy1" in Frame 7063
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 943 MovieClip in Frame 7072
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.we1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 495 MovieClip "enemy2" in Frame 7080
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 943 MovieClip in Frame 7089
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.we2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 495 MovieClip "enemy3" in Frame 7098
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 943 MovieClip in Frame 7107
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 25;
goY = (this._y - _root.spaceship._y) / 25;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.we3._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 952 MovieClip "ds1" in Frame 7123
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 8) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 955 MovieClip "dropship1" in Frame 7124
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 959 MovieClip in Frame 7172
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 959 MovieClip in Frame 7182
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 959 MovieClip in Frame 7188
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 959 MovieClip in Frame 7202
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 962 MovieClip in Frame 7254
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 962 MovieClip in Frame 7271
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 735 MovieClip "healthup" in Frame 7276
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(1);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(25);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(50);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(75);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(100);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(125);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
}
Instance of Symbol 962 MovieClip in Frame 7288
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 963 MovieClip in Frame 7289
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 7328
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 300 MovieClip "pw1" in Frame 7502
onClipEvent (load) {
stop();
_root.pw1.gotoAndStop(1);
}
onClipEvent (enterFrame) {
this._x = _root.spaceship._x - 30;
this._y = _root.sbar._y + 0;
if (_root.spaceship._currentframe < 180) {
if (_root.sbar.hitTest(_root.spaceship)) {
_root.pw1.gotoAndStop(2);
} else {
_root.pw1.gotoAndStop(3);
}
}
}
Instance of Symbol 996 MovieClip "ds1" in Frame 7681
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship1._x - 5;
this._y = _root.dropship1._y + 0;
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe == 7) {
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 996 MovieClip "ds2" in Frame 7681
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship2._x - 5;
this._y = _root.dropship2._y + 0;
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe == 7) {
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 999 MovieClip "dropship1" in Frame 7683
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 1001 MovieClip "tg1" in Frame 7683
onClipEvent (enterFrame) {
rot = Math.atan2(_root.spaceship._y - this._y, _root.spaceship._x - this._x);
rotNum = (rot * 360) / (Math.PI*2);
if (rotNum < 0) {
this._rotation = rotNum;
}
this._x = _root.dropship1._x + 5;
this._y = _root.dropship1._y - 10;
if (_root.dropship1._currentframe == 7) {
_root.tg1.nextFrame();
stop();
}
}
Instance of Symbol 999 MovieClip "dropship2" in Frame 7683
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 1001 MovieClip "tg2" in Frame 7683
onClipEvent (enterFrame) {
rot = Math.atan2(_root.spaceship._y - this._y, _root.spaceship._x - this._x);
rotNum = (rot * 360) / (Math.PI*2);
if (rotNum < 0) {
this._rotation = rotNum;
}
this._x = _root.dropship2._x + 5;
this._y = _root.dropship2._y - 10;
if (_root.dropship2._currentframe == 7) {
_root.tg2.nextFrame();
stop();
}
}
Instance of Symbol 1009 MovieClip "ds3" in Frame 7750
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe == 8) {
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 1009 MovieClip "ds4" in Frame 7754
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship4._x + 0;
this._y = _root.dropship4._y + 0;
if (_root.ds4._currentframe < 2) {
if (_root.dropship4._currentframe == 8) {
_root.ds4.nextFrame();
stop();
}
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 7775
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 7791
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 7830
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds1._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 517 MovieClip "ball" in Frame 7843
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 1018 MovieClip "ds5" in Frame 7903
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship5._x + 0;
this._y = _root.dropship5._y + 0;
if (_root.ds5._currentframe < 2) {
if (_root.dropship5._currentframe == 7) {
_root.ds5.nextFrame();
stop();
}
}
}
Instance of Symbol 1024 MovieClip "we1" in Frame 7903
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy1._currentframe == 1) {
this._x = _root.enemy1._x;
this._y = _root.enemy1._y;
stop();
}
if (_root.enemy1._currentframe > 1) {
_root.we1.nextFrame();
stop();
}
}
Instance of Symbol 534 MovieClip "powerup3" in Frame 7915
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 1030 MovieClip "we2" in Frame 7932
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy2._currentframe == 1) {
this._x = _root.enemy2._x;
this._y = _root.enemy2._y;
stop();
}
if (_root.enemy2._currentframe > 1) {
_root.we2.nextFrame();
stop();
}
}
Instance of Symbol 1030 MovieClip "we3" in Frame 7932
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy3._currentframe == 1) {
this._x = _root.enemy3._x;
this._y = _root.enemy3._y;
stop();
}
if (_root.enemy3._currentframe > 1) {
_root.we3.nextFrame();
stop();
}
}
Instance of Symbol 1030 MovieClip "we4" in Frame 7932
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy4._currentframe == 1) {
this._x = _root.enemy4._x;
this._y = _root.enemy4._y;
stop();
}
if (_root.enemy4._currentframe > 1) {
_root.we4.nextFrame();
stop();
}
}
Instance of Symbol 735 MovieClip "healthup" in Frame 7952
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(1);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(25);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(50);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(75);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(100);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndStop(125);
nextFrame();
tellTarget ("/life") {
prevFrame();
};
tellTarget ("/player_dam") {
prevFrame();
};
}
}
}
}
Instance of Symbol 996 MovieClip "ds1" in Frame 7971
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe == 7) {
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 1038 MovieClip "ds1" in Frame 8096
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 6) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 1038 MovieClip "ds2" in Frame 8096
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 6) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 1038 MovieClip "ds3" in Frame 8096
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 6) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 1038 MovieClip "ds4" in Frame 8096
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds4._currentframe < 2) {
if (_root.dropship4._currentframe > 6) {
this._x = _root.dropship4._x + 0;
this._y = _root.dropship4._y + 0;
_root.ds4.nextFrame();
stop();
}
}
}
Instance of Symbol 1082 MovieClip "tg6" in Frame 8242
onClipEvent (enterFrame) {
rot = Math.atan2(_root.spaceship._y - this._y, _root.spaceship._x - this._x);
rotNum = (rot * 360) / (Math.PI*2);
if (rotNum < 0) {
this._rotation = rotNum;
}
this._x = _root.tank1._x + 5;
this._y = _root.tank1._y - 10;
}
Instance of Symbol 1082 MovieClip "tg7" in Frame 8242
onClipEvent (enterFrame) {
rot = Math.atan2(_root.spaceship._y - this._y, _root.spaceship._x - this._x);
rotNum = (rot * 360) / (Math.PI*2);
if (rotNum < 0) {
this._rotation = rotNum;
}
this._x = _root.tank2._x + 5;
this._y = _root.tank2._y - 10;
}
Instance of Symbol 1090 MovieClip "dropship5" in Frame 8345
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 450) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 450) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 450) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 450) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 450) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 450) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 450) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 818 MovieClip in Frame 8398
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
nextFrame();
}
Instance of Symbol 818 MovieClip in Frame 8415
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
}
Instance of Symbol 818 MovieClip in Frame 8432
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
}
Instance of Symbol 624 MovieClip in Frame 8516
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
}
Instance of Symbol 624 MovieClip in Frame 8526
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 30;
goY = (this._y - _root.spaceship._y) / 30;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
}
Instance of Symbol 1092 MovieClip in Frame 8618
onClipEvent (enterFrame) {
nextFrame();
}
Instance of Symbol 1092 MovieClip in Frame 8799
onClipEvent (enterFrame) {
nextFrame();
}
Instance of Symbol 962 MovieClip in Frame 8993
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
}
Instance of Symbol 962 MovieClip in Frame 9004
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
}
Instance of Symbol 962 MovieClip in Frame 9016
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
}
Instance of Symbol 962 MovieClip in Frame 9027
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 20;
goY = (this._y - _root.spaceship._y) / 20;
nextFrame();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
}
Frame 9177
gotoAndPlay (8346);
Instance of Symbol 370 MovieClip in Frame 9182
on (release) {
toggleHighQuality();
}
Instance of Symbol 372 MovieClip in Frame 9182
on (release) {
getURL ("http://invisionfree.com/forums/Adregalus_Forums", "_blank");
}
Frame 9289
gotoAndPlay (9462);
Frame 9296
gotoAndPlay (9297);
Frame 9461
stop();
Frame 9659
stop();
Frame 9701
stop();
Frame 9732
stop();
Frame 9765
gotoAndPlay (283);
Symbol 12 MovieClip Frame 1
bar.stop();
Symbol 48 MovieClip Frame 6
stop();
Symbol 49 Button
on (release) {
gotoAndPlay (2);
}
Symbol 59 Button
on (release) {
gotoAndPlay (20);
}
Symbol 60 Button
on (release) {
getURL ("http://invisionfree.com/forums/Adregalus_Forums", "_blank");
}
Symbol 61 Button
on (release) {
getURL ("http://omegadragon3000.sheezyart.com", "_blank");
}
Symbol 63 MovieClip Frame 1
stop();
Symbol 63 MovieClip Frame 2
if (_root.game._currentframe > 2) {
_root.game.gotoAndPlay(47);
}
Symbol 63 MovieClip Frame 14
stop();
Symbol 63 MovieClip Frame 30
gotoAndStop (1);
Symbol 65 Button
on (release) {
gotoAndPlay (2);
}
Symbol 68 Button
on (release) {
gotoAndPlay (47);
}
Symbol 69 Button
on (release) {
gotoAndPlay (31);
}
Symbol 70 Button
on (release) {
gotoAndPlay (20);
}
Symbol 71 Button
on (release) {
gotoAndPlay (40);
}
Symbol 76 Button
on (release) {
gotoAndStop (14);
}
Symbol 80 Button
on (release) {
nextFrame();
}
Symbol 82 Button
on (release) {
prevFrame();
}
Symbol 91 MovieClip Frame 1
targY = 0;
dragger._x = theMask._width - 30;
dragger.onPress = function () {
startDrag (this, false, this._x, 0, this._x, theMask._height - this._height);
};
dragger.onRelease = (dragger.onReleaseOutside = function () {
stopDrag();
});
theText.setMask(theMask);
theText.onEnterFrame = function () {
scrollAmount = (theText._height - (theMask._height / 1.1)) / (theMask._height - dragger._height);
targY = (-dragger._y) * scrollAmount;
this._y = this._y - ((this._y - targY) / 3);
};
Symbol 93 MovieClip Frame 1
stop();
Symbol 93 MovieClip Frame 2
if (_root.extras._currentframe > 2) {
_root.extras.gotoAndPlay(20);
}
Symbol 93 MovieClip Frame 14
stop();
Symbol 93 MovieClip Frame 25
stop();
Symbol 93 MovieClip Frame 35
stop();
Symbol 93 MovieClip Frame 45
stop();
Symbol 93 MovieClip Frame 59
gotoAndStop (1);
Symbol 96 Button
on (release) {
nextFrame();
play();
}
Symbol 100 Button
on (release) {
gotoAndPlay (1493);
}
Symbol 155 Button
on (release) {
gotoAndPlay (2381);
}
Symbol 197 MovieClip Frame 30
stop();
Symbol 198 MovieClip Frame 30
stop();
Symbol 199 MovieClip Frame 30
stop();
Symbol 200 MovieClip Frame 26
stop();
Symbol 201 MovieClip Frame 1
stop();
Symbol 204 MovieClip Frame 1
stop();
Symbol 207 MovieClip Frame 7
stop();
Symbol 209 MovieClip Frame 1
stop();
Symbol 210 MovieClip Frame 1
stop();
Instance of Symbol 209 MovieClip in Symbol 210 MovieClip Frame 1
onClipEvent (load) {
Set("_level:count", _level:count + 1);
duplicateMovieClip ("_level.image", "image" + _level:count, _level:count);
setProperty("_level." + ["image" + _level:count], _x , _root._spaceship);
setProperty("_level." + ["image" + _level:count], _y , _root._spaceship);
}
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Symbol 212 MovieClip Frame 1
stop();
Symbol 212 MovieClip Frame 2
stop();
Symbol 214 MovieClip Frame 2
stop();
Symbol 216 MovieClip Frame 2
stop();
Symbol 217 MovieClip Frame 1
stop();
Symbol 219 MovieClip Frame 2
stop();
Symbol 221 MovieClip Frame 1
stop();
Symbol 223 MovieClip Frame 2
stop();
Symbol 227 MovieClip Frame 1
stop();
Instance of Symbol 227 MovieClip in Symbol 228 MovieClip Frame 11
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 227 MovieClip in Symbol 228 MovieClip Frame 11
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Symbol 228 MovieClip Frame 28
stop();
Symbol 230 MovieClip Frame 2
stop();
Symbol 232 MovieClip Frame 1
stop();
Instance of Symbol 232 MovieClip in Symbol 233 MovieClip Frame 1
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Symbol 233 MovieClip Frame 19
stop();
Symbol 235 MovieClip Frame 2
stop();
Symbol 238 MovieClip Frame 1
stop();
Symbol 239 MovieClip Frame 1
stop();
Symbol 241 MovieClip Frame 1
stop();
Instance of Symbol 241 MovieClip in Symbol 242 MovieClip Frame 1
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Symbol 242 MovieClip Frame 17
stop();
Symbol 245 MovieClip Frame 17
stop();
Symbol 246 MovieClip Frame 26
stop();
Symbol 247 MovieClip Frame 2
stop();
Symbol 249 MovieClip Frame 1
stop();
Instance of Symbol 232 MovieClip in Symbol 250 MovieClip Frame 1
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Symbol 252 MovieClip Frame 2
stop();
Symbol 254 MovieClip Frame 1
stop();
Symbol 256 MovieClip Frame 1
stop();
Instance of Symbol 254 MovieClip in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 254 MovieClip in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 256 MovieClip in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 256 MovieClip in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Symbol 259 MovieClip Frame 2
stop();
Symbol 260 MovieClip Frame 1
stop();
if (_root.powerbar._currentframe == 2) {
gotoAndStop (2);
}
if (_root.powerbar._currentframe == 3) {
gotoAndStop (3);
}
if (_root.powerbar._currentframe == 4) {
gotoAndStop (4);
}
if (_root.powerbar._currentframe == 5) {
gotoAndStop (5);
}
if (_root.powerbar._currentframe == 6) {
gotoAndStop (6);
}
if (_root.powerbar._currentframe == 7) {
gotoAndStop (7);
}
if (_root.powerbar._currentframe == 8) {
gotoAndStop (8);
}
if (_root.powerbar._currentframe == 9) {
gotoAndStop (9);
}
if (_root.powerbar._currentframe == 10) {
gotoAndStop (10);
}
Instance of Symbol 212 MovieClip in Symbol 260 MovieClip Frame 1
onClipEvent (load) {
if (currentframe < 2) {
if (Key.isDown(67)) {
nextFrame();
}
stop();
}
stop();
}
onClipEvent (enterFrame) {
}
Instance of Symbol 217 MovieClip in Symbol 260 MovieClip Frame 2
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 221 MovieClip in Symbol 260 MovieClip Frame 3
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 221 MovieClip in Symbol 260 MovieClip Frame 4
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 221 MovieClip in Symbol 260 MovieClip Frame 4
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 232 MovieClip in Symbol 260 MovieClip Frame 6
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
if (_root["dropship" + n]._currentframe < 47) {
_root["dropship" + n].play();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
}
n++;
}
o++;
}
}
Instance of Symbol 239 MovieClip in Symbol 260 MovieClip Frame 7
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 239 MovieClip in Symbol 260 MovieClip Frame 7
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 239 MovieClip in Symbol 260 MovieClip Frame 7
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 249 MovieClip in Symbol 260 MovieClip Frame 9
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 249 MovieClip in Symbol 260 MovieClip Frame 9
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 249 MovieClip in Symbol 260 MovieClip Frame 9
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Symbol 265 MovieClip Frame 17
stop();
Symbol 266 MovieClip Frame 24
gotoAndPlay (8);
Symbol 267 MovieClip Frame 18
stop();
Symbol 273 MovieClip Frame 24
stop();
Symbol 274 MovieClip Frame 1
Symbol 274 MovieClip Frame 33
stop();
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 274 MovieClip "chunk" in Symbol 275 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Symbol 275 MovieClip Frame 118
stop();
Symbol 283 MovieClip Frame 65
stop();
Symbol 285 MovieClip Frame 1
stop();
Symbol 285 MovieClip Frame 7
stop();
Instance of Symbol 265 MovieClip in Symbol 285 MovieClip Frame 7
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 267 MovieClip in Symbol 285 MovieClip Frame 7
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Symbol 285 MovieClip Frame 8
stop();
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(20)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(20)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(20)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(20)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(20)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(20)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(20)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 276 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 277 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 278 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 279 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 280 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 281 MovieClip in Symbol 285 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Symbol 287 MovieClip Frame 14
gotoAndPlay (11);
Symbol 288 MovieClip Frame 16
stop();
Symbol 289 MovieClip Frame 1
stop();
Symbol 291 MovieClip Frame 22
stop();
Instance of Symbol 291 MovieClip in Symbol 292 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 50;
yvel = (-random(10)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 3));
_y = (_y + (yvel / 3));
if (_y > (300 + (_height / 0.5))) {
_y = (300 + (_height / 0.5));
}
}
Symbol 298 MovieClip Frame 24
gotoAndPlay (12);
Symbol 299 MovieClip Frame 20
stop();
Symbol 300 MovieClip Frame 1
stop();
Symbol 310 MovieClip Frame 6
stop();
Symbol 339 MovieClip Frame 1
stop();
Symbol 350 MovieClip Frame 1
stop();
Symbol 350 MovieClip Frame 10
stop();
Symbol 365 MovieClip Frame 12
stop();
Symbol 366 MovieClip Frame 1
stop();
Symbol 384 MovieClip Frame 1
stop();
Symbol 384 MovieClip Frame 2
play();
Instance of Symbol 381 MovieClip in Symbol 384 MovieClip Frame 17
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Instance of Symbol 383 MovieClip in Symbol 384 MovieClip Frame 29
onClipEvent (enterFrame) {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
if (_root["enemy" + i]._currentframe < 2) {
nextFrame();
_root["enemy" + i].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 100;
}
}
i++;
}
o = 1;
while (o <= _root.numEnemy2) {
if (this.hitTest(_root["enemy2" + o])) {
if (this._currentframe < 2) {
if (_root["enemy2" + o]._currentframe < 2) {
nextFrame();
_root["enemy2" + o].gotoAndPlay(2);
_root.spaceship.laserCounter--;
_root.score = _root.score + 200;
}
}
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
_root.score = _root.score + 150;
nextFrame();
}
n++;
}
o++;
}
}
Symbol 384 MovieClip Frame 74
gotoAndStop (1);
Symbol 389 Button
on (release) {
nextFrame();
stop();
}
Symbol 397 MovieClip Frame 6
stop();
Symbol 398 Button
on (release, keyPress "<Enter>") {
if (password eq "topgun") {
_root.powerbar.gotoAndStop(10);
gotoAndStop (3);
} else if (password eq "vimana") {
_root.spaceship.gotoAndStop(3);
gotoAndStop (4);
} else if (password eq "spitfire") {
_root.misscounter.gotoAndStop(10);
gotoAndStop (5);
} else if (password eq "sirius") {
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop (6);
} else if (password eq "thot") {
_root.spaceship.gotoAndStop(3);
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop (7);
} else {
gotoAndStop (2);
}
}
Symbol 406 Button
on (release, keyPress "<Enter>") {
if (password eq "topgun") {
_root.powerbar.gotoAndStop(10);
gotoAndStop (3);
} else if (password eq "vimana") {
_root.spaceship.gotoAndStop(3);
gotoAndStop (4);
} else if (password eq "spitfire") {
_root.misscounter.gotoAndStop(10);
gotoAndStop (5);
} else if (password eq "sirius") {
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop (6);
} else if (password eq "god") {
_root.spaceship.gotoAndPlay(12);
tellTarget ("/life") {
nextFrame();
};
gotoAndStop (1);
} else if (password eq "thot") {
_root.spaceship.gotoAndStop(3);
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop (7);
} else {
gotoAndStop (2);
}
}
Symbol 410 MovieClip Frame 84
stop();
Symbol 413 MovieClip Frame 88
stop();
Symbol 416 MovieClip Frame 79
stop();
Symbol 419 MovieClip Frame 73
stop();
Symbol 422 MovieClip Frame 85
stop();
Symbol 423 Button
on (release, keyPress "<Enter>") {
if (password eq "topgun") {
_root.powerbar.gotoAndStop(10);
gotoAndStop (3);
} else if (password eq "vimana") {
_root.spaceship.gotoAndStop(3);
gotoAndStop (4);
} else if (password eq "spitfire") {
_root.misscounter.gotoAndStop(10);
gotoAndStop (5);
} else if (password eq "sirius") {
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop (6);
} else if (password eq "god") {
_root.spaceship.gotoAndPlay(126);
tellTarget ("/life") {
nextFrame();
};
gotoAndStop (1);
} else if (password eq "thot") {
_root.spaceship.gotoAndStop(3);
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop (7);
} else {
gotoAndStop (2);
}
}
Symbol 424 MovieClip Frame 1
stop();
Symbol 426 Button
on (release) {
prevFrame();
stop();
}
Symbol 427 MovieClip Frame 1
stop();
Symbol 452 MovieClip Frame 1
stop();
Instance of Symbol 201 MovieClip "p" in Symbol 452 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p.gotoAndStop(5);
}
}
Symbol 452 MovieClip Frame 2
tellTarget ("/life") {
nextFrame();
};
Symbol 452 MovieClip Frame 25
stop();
Instance of Symbol 201 MovieClip "p1" in Symbol 452 MovieClip Frame 25
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p1.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p1.gotoAndStop(5);
}
}
Symbol 452 MovieClip Frame 26
tellTarget ("/life") {
nextFrame();
};
Symbol 452 MovieClip Frame 50
stop();
Instance of Symbol 201 MovieClip "p2" in Symbol 452 MovieClip Frame 50
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p2.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p2.gotoAndStop(5);
}
}
Symbol 452 MovieClip Frame 51
tellTarget ("/life") {
nextFrame();
};
Symbol 452 MovieClip Frame 75
stop();
Instance of Symbol 201 MovieClip "p3" in Symbol 452 MovieClip Frame 75
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p3.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p3.gotoAndStop(5);
}
}
Symbol 452 MovieClip Frame 76
tellTarget ("/life") {
nextFrame();
};
Symbol 452 MovieClip Frame 100
stop();
Instance of Symbol 201 MovieClip "p4" in Symbol 452 MovieClip Frame 100
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p4.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p4.gotoAndStop(5);
}
}
Symbol 452 MovieClip Frame 101
tellTarget ("/life") {
nextFrame();
};
Symbol 452 MovieClip Frame 125
stop();
Instance of Symbol 201 MovieClip "p5" in Symbol 452 MovieClip Frame 125
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p5.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p5.gotoAndStop(5);
}
}
Symbol 452 MovieClip Frame 126
tellTarget ("/life") {
nextFrame();
};
Symbol 452 MovieClip Frame 215
stop();
_root.gotoAndPlay("death");
Symbol 457 MovieClip Frame 58
stop();
Symbol 458 MovieClip Frame 1
stop();
Symbol 470 MovieClip Frame 27
stop();
Symbol 471 MovieClip Frame 1
stop();
Instance of Symbol 458 MovieClip "brass" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 458 MovieClip "brass" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 458 MovieClip "brass" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 458 MovieClip "brass" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 471 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 474 MovieClip Frame 1
stop();
Symbol 474 MovieClip Frame 10
stop();
Symbol 487 MovieClip Frame 26
stop();
Symbol 491 MovieClip Frame 30
stop();
Symbol 492 MovieClip Frame 1
stop();
Instance of Symbol 457 MovieClip "chunk" in Symbol 492 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 492 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 492 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 495 MovieClip Frame 1
stop();
Symbol 495 MovieClip Frame 10
stop();
Symbol 500 MovieClip Frame 6
stop();
Symbol 501 MovieClip Frame 1
stop();
Symbol 501 MovieClip Frame 16
play();
Symbol 501 MovieClip Frame 20
stop();
Symbol 510 MovieClip Frame 43
stop();
Symbol 511 MovieClip Frame 1
stop();
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 511 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 513 MovieClip Frame 1
stop();
Instance of Symbol 513 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Symbol 515 MovieClip Frame 1
stop();
Symbol 517 MovieClip Frame 1
stop();
Symbol 528 MovieClip Frame 14
stop();
Symbol 533 MovieClip Frame 33
stop();
Symbol 534 MovieClip Frame 1
stop();
Symbol 549 MovieClip Frame 6
stop();
Symbol 550 MovieClip Frame 1
stop();
Symbol 550 MovieClip Frame 4
play();
Symbol 550 MovieClip Frame 13
stop();
Symbol 551 MovieClip Frame 22
stop();
Symbol 552 MovieClip Frame 1
stop();
Instance of Symbol 457 MovieClip "chunk" in Symbol 552 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = random(20) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 552 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = random(20) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 552 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = random(20) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 552 MovieClip Frame 2
onClipEvent (load) {
xvel = random(30) - 10;
yvel = random(20) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.3;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 556 MovieClip in Symbol 557 MovieClip Frame 20
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Symbol 557 MovieClip Frame 38
stop();
Symbol 558 MovieClip Frame 1
stop();
Symbol 607 MovieClip Frame 1
stop();
Symbol 608 MovieClip Frame 6
stop();
Symbol 609 MovieClip Frame 1
stop();
Symbol 609 MovieClip Frame 7
stop();
Symbol 619 MovieClip Frame 36
stop();
Symbol 621 MovieClip Frame 29
stop();
Symbol 622 MovieClip Frame 1
stop();
Symbol 624 MovieClip Frame 1
stop();
Symbol 625 MovieClip Frame 22
stop();
Symbol 626 MovieClip Frame 1
stop();
Symbol 627 MovieClip Frame 1
stop();
Symbol 627 MovieClip Frame 2
play();
Symbol 627 MovieClip Frame 11
stop();
Symbol 629 MovieClip Frame 1
stop();
Symbol 630 MovieClip Frame 7
stop();
Symbol 631 MovieClip Frame 30
stop();
Symbol 632 MovieClip Frame 1
stop();
Symbol 634 MovieClip Frame 1
stop();
Symbol 640 MovieClip Frame 26
stop();
Symbol 641 MovieClip Frame 1
stop();
Symbol 646 MovieClip Frame 7
stop();
Symbol 647 MovieClip Frame 1
stop();
Symbol 647 MovieClip Frame 4
play();
Symbol 647 MovieClip Frame 10
stop();
Symbol 653 MovieClip Frame 1
stop();
Symbol 653 MovieClip Frame 2
play();
Symbol 653 MovieClip Frame 10
stop();
Symbol 656 MovieClip Frame 30
stop();
Symbol 657 MovieClip Frame 1
stop();
Symbol 668 MovieClip Frame 40
stop();
Symbol 669 MovieClip Frame 1
stop();
Symbol 672 MovieClip Frame 6
stop();
Symbol 673 MovieClip Frame 1
stop();
Symbol 673 MovieClip Frame 6
play();
Symbol 673 MovieClip Frame 10
stop();
Symbol 719 MovieClip Frame 38
gotoAndPlay (8);
Symbol 722 MovieClip Frame 365
stop();
Symbol 726 MovieClip Frame 1
stop();
Symbol 734 MovieClip Frame 33
stop();
Symbol 735 MovieClip Frame 1
stop();
Symbol 743 MovieClip Frame 24
stop();
Symbol 744 MovieClip Frame 1
stop();
Symbol 745 MovieClip Frame 1
stop();
Instance of Symbol 744 MovieClip "brass" in Symbol 745 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 744 MovieClip "brass" in Symbol 745 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 744 MovieClip "brass" in Symbol 745 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Symbol 750 MovieClip Frame 20
stop();
Symbol 751 MovieClip Frame 1
stop();
Instance of Symbol 744 MovieClip "brass" in Symbol 751 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 150) {
_y = (150 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 744 MovieClip "brass" in Symbol 751 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 150) {
_y = (150 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 744 MovieClip "brass" in Symbol 751 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 150) {
_y = (150 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Symbol 753 MovieClip Frame 1
stop();
Symbol 753 MovieClip Frame 2
play();
Symbol 753 MovieClip Frame 10
stop();
Symbol 754 MovieClip Frame 1
stop();
Symbol 756 MovieClip Frame 40
stop();
Symbol 757 MovieClip Frame 1
stop();
Symbol 765 MovieClip Frame 6
stop();
Symbol 766 MovieClip Frame 1
stop();
Symbol 766 MovieClip Frame 17
gotoAndStop (2);
Symbol 776 MovieClip Frame 1
stop();
Instance of Symbol 271 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 267 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 267 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 265 MovieClip in Symbol 776 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 776 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 776 MovieClip Frame 3
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 776 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 776 MovieClip Frame 4
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 776 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 271 MovieClip in Symbol 776 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(35)) + 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 0.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Symbol 776 MovieClip Frame 10
stop();
Symbol 779 MovieClip Frame 1
stop();
Symbol 793 Button
on (release) {
gotoAndStop (1);
}
Symbol 796 Button
on (release) {
play();
}
Symbol 799 Button
on (release) {
stop();
}
Symbol 812 MovieClip Frame 88
stop();
_root.gotoAndPlay("boss_dead");
Symbol 813 MovieClip Frame 1
stop();
Symbol 814 MovieClip Frame 2
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 3
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 4
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 5
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 6
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 7
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 8
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 9
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 10
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 11
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 12
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 13
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 14
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 15
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 16
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 17
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 18
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 19
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 20
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 21
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 22
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 23
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 24
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 25
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 26
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 27
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 28
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 29
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 30
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 31
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 32
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 33
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 34
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 35
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 36
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 37
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 38
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 39
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 40
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 814 MovieClip Frame 41
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 42
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 43
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 44
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 45
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 46
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 47
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 48
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 49
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 50
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 51
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 52
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 53
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 54
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 55
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 56
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 57
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 58
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 59
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 60
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 61
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 62
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 63
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 64
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 65
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 66
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 67
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 68
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 69
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 70
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 814 MovieClip Frame 71
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 72
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 73
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 74
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 75
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 76
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 77
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 78
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 79
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 80
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 81
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 82
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 83
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 84
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 85
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 86
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 87
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 88
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 89
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 90
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 91
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 92
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 93
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 94
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 95
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 96
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 97
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 98
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 99
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 100
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 814 MovieClip Frame 101
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 102
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 103
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 104
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 105
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 106
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 107
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 108
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 109
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 110
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 111
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 112
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 113
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 114
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 115
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 116
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 117
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 118
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 119
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 120
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 814 MovieClip Frame 121
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 122
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 123
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 124
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 125
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 126
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 127
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 128
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 129
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 130
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 131
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 132
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 133
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 134
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 135
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 136
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 137
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 138
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 139
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 140
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 141
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 142
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 143
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 144
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 145
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 146
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 147
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 814 MovieClip Frame 148
tellTarget ("/boss") {
nextFrame();
play();
};
tellTarget ("/boss_gun") {
nextFrame();
};
Symbol 816 MovieClip Frame 1
stop();
Instance of Symbol 816 MovieClip in Symbol 817 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Symbol 818 MovieClip Frame 1
stop();
Instance of Symbol 825 MovieClip in Symbol 826 MovieClip Frame 33
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 825 MovieClip in Symbol 826 MovieClip Frame 42
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Symbol 826 MovieClip Frame 96
stop();
Symbol 830 MovieClip Frame 26
stop();
Symbol 831 MovieClip Frame 19
stop();
Symbol 832 MovieClip Frame 30
stop();
Instance of Symbol 457 MovieClip "chunk" in Symbol 833 MovieClip Frame 1
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 832 MovieClip in Symbol 833 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 833 MovieClip Frame 4
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 832 MovieClip in Symbol 833 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 833 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 833 MovieClip Frame 6
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 832 MovieClip in Symbol 833 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 833 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 833 MovieClip Frame 10
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 833 MovieClip Frame 12
stop();
Symbol 834 MovieClip Frame 1
stop();
Symbol 836 MovieClip Frame 5
stop();
Symbol 837 MovieClip Frame 1
stop();
Symbol 837 MovieClip Frame 4
play();
Symbol 837 MovieClip Frame 10
stop();
Symbol 846 MovieClip Frame 25
stop();
Symbol 847 MovieClip Frame 1
stop();
Symbol 850 MovieClip Frame 1
stop();
Symbol 855 MovieClip Frame 15
stop();
Symbol 856 MovieClip Frame 1
stop();
Symbol 856 MovieClip Frame 3
play();
Symbol 856 MovieClip Frame 7
stop();
Symbol 858 MovieClip Frame 10
tellTarget ("/boss") {
nextFrame();
stop();
};
Symbol 858 MovieClip Frame 18
tellTarget ("/boss") {
nextFrame();
play();
};
tellTarget ("/boss_gun") {
nextFrame();
};
tellTarget ("/sub_hat") {
nextFrame();
};
Symbol 858 MovieClip Frame 19
stop();
Symbol 861 MovieClip Frame 1
stop();
Symbol 864 MovieClip Frame 20
stop();
Symbol 865 MovieClip Frame 1
stop();
Symbol 867 MovieClip Frame 1
stop();
Symbol 867 MovieClip Frame 2
play();
Symbol 867 MovieClip Frame 10
stop();
Symbol 876 MovieClip Frame 1
stop();
Symbol 876 MovieClip Frame 4
play();
Symbol 876 MovieClip Frame 10
stop();
Instance of Symbol 832 MovieClip in Symbol 881 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2.5));
_y = (_y + (yvel / 2.5));
}
Instance of Symbol 832 MovieClip in Symbol 881 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2.5));
_y = (_y + (yvel / 2.5));
}
Instance of Symbol 832 MovieClip in Symbol 881 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2.5));
_y = (_y + (yvel / 2.5));
}
Instance of Symbol 832 MovieClip in Symbol 881 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 881 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 881 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 881 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 881 MovieClip Frame 10
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 881 MovieClip Frame 12
stop();
Symbol 882 MovieClip Frame 30
stop();
Symbol 883 MovieClip Frame 1
stop();
Instance of Symbol 885 MovieClip in Symbol 886 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Symbol 887 MovieClip Frame 53
stop();
Symbol 888 MovieClip Frame 1
stop();
Symbol 890 MovieClip Frame 30
stop();
Symbol 891 MovieClip Frame 1
stop();
Instance of Symbol 744 MovieClip "brass" in Symbol 891 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2.6;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 744 MovieClip "brass" in Symbol 891 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 744 MovieClip "brass" in Symbol 891 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Symbol 892 MovieClip Frame 1
stop();
Symbol 893 MovieClip Frame 1
stop();
Symbol 894 MovieClip Frame 1
stop();
Instance of Symbol 893 MovieClip "brass" in Symbol 894 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 100) {
_y = (100 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 893 MovieClip "brass" in Symbol 894 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 100) {
_y = (100 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Symbol 895 MovieClip Frame 1
stop();
Symbol 895 MovieClip Frame 2
play();
Symbol 895 MovieClip Frame 8
stop();
Instance of Symbol 901 MovieClip in Symbol 920 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 901 MovieClip in Symbol 920 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 904 MovieClip in Symbol 920 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 907 MovieClip in Symbol 920 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 910 MovieClip in Symbol 920 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 913 MovieClip in Symbol 920 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 916 MovieClip in Symbol 920 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 920 MovieClip Frame 20
stop();
Symbol 921 MovieClip Frame 1
stop();
Symbol 923 MovieClip Frame 1
stop();
Symbol 923 MovieClip Frame 5
stop();
Symbol 923 MovieClip Frame 10
stop();
Symbol 925 MovieClip Frame 1
stop();
Instance of Symbol 924 MovieClip in Symbol 925 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Symbol 927 MovieClip Frame 1
stop();
Symbol 934 MovieClip Frame 26
stop();
Symbol 935 MovieClip Frame 18
stop();
Symbol 936 MovieClip Frame 1
stop();
Instance of Symbol 744 MovieClip "brass" in Symbol 936 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Instance of Symbol 744 MovieClip "brass" in Symbol 936 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
_xscale = (random(20) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > 120) {
_y = (120 + (_height / 2));
yvel = (-yvel) * 0;
xvel = (-xvel) * 0;
nextFrame();
}
}
Symbol 937 MovieClip Frame 1
stop();
Symbol 937 MovieClip Frame 8
play();
Symbol 937 MovieClip Frame 12
stop();
Symbol 939 MovieClip Frame 20
stop();
Symbol 940 MovieClip Frame 1
stop();
Symbol 941 MovieClip Frame 24
stop();
Symbol 942 MovieClip Frame 1
stop();
Symbol 943 MovieClip Frame 1
stop();
Instance of Symbol 457 MovieClip "chunk" in Symbol 950 MovieClip Frame 1
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 832 MovieClip in Symbol 950 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 950 MovieClip Frame 4
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 832 MovieClip in Symbol 950 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 950 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 950 MovieClip Frame 6
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 2;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 832 MovieClip in Symbol 950 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 950 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 950 MovieClip Frame 10
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 950 MovieClip Frame 12
stop();
Symbol 951 MovieClip Frame 21
stop();
Symbol 952 MovieClip Frame 1
stop();
Symbol 954 MovieClip Frame 11
stop();
Symbol 955 MovieClip Frame 1
stop();
Symbol 955 MovieClip Frame 8
play();
Symbol 955 MovieClip Frame 16
stop();
Symbol 959 MovieClip Frame 1
stop();
Instance of Symbol 958 MovieClip in Symbol 959 MovieClip Frame 2
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Symbol 962 MovieClip Frame 1
stop();
Instance of Symbol 961 MovieClip in Symbol 962 MovieClip Frame 2
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Symbol 963 MovieClip Frame 1
stop();
Symbol 995 MovieClip Frame 26
stop();
Symbol 996 MovieClip Frame 1
stop();
Symbol 998 MovieClip Frame 7
stop();
Symbol 999 MovieClip Frame 1
stop();
Symbol 1001 MovieClip Frame 1
stop();
Symbol 1007 MovieClip Frame 36
stop();
Symbol 1008 MovieClip Frame 15
stop();
Symbol 1009 MovieClip Frame 1
stop();
Symbol 1010 MovieClip Frame 6
stop();
Symbol 1011 MovieClip Frame 1
stop();
Symbol 1011 MovieClip Frame 8
stop();
Symbol 1017 MovieClip Frame 12
stop();
Symbol 1018 MovieClip Frame 1
stop();
Instance of Symbol 832 MovieClip in Symbol 1022 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2.5));
_y = (_y + (yvel / 2.5));
}
Instance of Symbol 832 MovieClip in Symbol 1022 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2.5));
_y = (_y + (yvel / 2.5));
}
Instance of Symbol 832 MovieClip in Symbol 1022 MovieClip Frame 1
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2.5));
_y = (_y + (yvel / 2.5));
}
Instance of Symbol 832 MovieClip in Symbol 1022 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 1022 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 1022 MovieClip Frame 5
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 1022 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 832 MovieClip in Symbol 1022 MovieClip Frame 8
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(30)) + 10;
}
onClipEvent (enterFrame) {
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + (xvel / 2));
_y = (_y + (yvel / 2));
}
Instance of Symbol 457 MovieClip "chunk" in Symbol 1022 MovieClip Frame 10
onClipEvent (load) {
xvel = random(30) - 10;
yvel = (-random(20)) - 10;
_xscale = (random(80) + 20);
_yscale = _xscale;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 1022 MovieClip Frame 12
stop();
Symbol 1023 MovieClip Frame 10
stop();
Symbol 1024 MovieClip Frame 1
stop();
Symbol 1025 MovieClip Frame 7
stop();
Symbol 1026 MovieClip Frame 1
stop();
Symbol 1026 MovieClip Frame 7
stop();
Symbol 1028 MovieClip Frame 1
stop();
Symbol 1028 MovieClip Frame 2
play();
Symbol 1028 MovieClip Frame 9
stop();
Symbol 1029 MovieClip Frame 10
stop();
Symbol 1030 MovieClip Frame 1
stop();
Symbol 1031 MovieClip Frame 1
stop();
Symbol 1031 MovieClip Frame 2
play();
Symbol 1031 MovieClip Frame 9
stop();
Symbol 1037 MovieClip Frame 4
stop();
Symbol 1038 MovieClip Frame 1
stop();
Symbol 1040 MovieClip Frame 6
stop();
Symbol 1041 MovieClip Frame 1
stop();
Symbol 1041 MovieClip Frame 6
play();
Symbol 1041 MovieClip Frame 10
stop();
Symbol 1042 Button
on (release) {
gotoAndStop (1);
}
Symbol 1051 MovieClip Frame 6
stop();
Symbol 1052 MovieClip Frame 1
stop();
Symbol 1052 MovieClip Frame 15
gotoAndStop (2);
Symbol 1055 MovieClip Frame 25
stop();
Symbol 1059 MovieClip Frame 25
stop();
Symbol 1062 MovieClip Frame 25
stop();
Symbol 1065 MovieClip Frame 25
stop();
Symbol 1069 MovieClip Frame 65
stop();
Symbol 1070 MovieClip Frame 25
stop();
Symbol 1071 MovieClip Frame 1
stop();
Symbol 1071 MovieClip Frame 10
stop();
Symbol 1079 MovieClip Frame 6
stop();
Symbol 1080 MovieClip Frame 1
stop();
Symbol 1080 MovieClip Frame 7
stop();
Symbol 1082 MovieClip Frame 1
stop();
Symbol 1090 MovieClip Frame 2
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 3
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 4
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 5
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 6
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 7
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 8
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 9
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 10
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 11
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 12
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 13
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 14
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 15
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 16
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 17
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 18
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 19
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 20
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 21
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 22
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 23
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 24
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 25
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 26
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 27
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 28
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 29
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 30
tellTarget ("/boss1/bblink1") {
nextFrame();
};
tellTarget ("/boss1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 31
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 32
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 33
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 34
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 35
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 36
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 37
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 38
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 39
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 40
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 41
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 42
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 43
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 44
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 45
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 46
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 47
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 48
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 49
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 50
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 51
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 52
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 53
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 54
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 55
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 56
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 57
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 58
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 59
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 60
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 61
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 62
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 63
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 64
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 65
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 66
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 67
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 68
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 69
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 70
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 71
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 72
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 73
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 74
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 75
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 76
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 77
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 78
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 79
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 80
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 81
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 82
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 83
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 84
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 85
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 86
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 87
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 88
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 89
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 90
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 91
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 92
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 93
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 94
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 95
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 96
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 97
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 98
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 99
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 100
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 101
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 102
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 103
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 104
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 105
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 106
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 107
tellTarget ("/boss1/bblink1") {
nextFrame();
};
tellTarget ("/boss1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 108
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 109
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 110
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 111
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 112
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 113
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 114
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 115
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 116
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 117
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 118
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 119
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 120
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 121
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 122
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 123
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 124
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 125
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 126
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 127
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 128
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 129
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 130
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 131
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 132
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 133
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 134
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 135
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 136
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 137
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 138
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 139
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 140
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 141
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 142
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 143
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 144
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 145
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 146
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 147
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 148
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 149
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 150
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 151
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 152
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 153
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 154
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 155
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 156
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 157
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 158
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 159
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 160
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 161
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 162
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 163
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 164
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 165
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 166
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 167
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 168
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 169
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 170
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 171
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 172
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 173
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 174
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 175
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 176
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 177
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 178
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 179
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 180
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 181
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 182
tellTarget ("/boss1/bblink1") {
nextFrame();
};
tellTarget ("/boss1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 183
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 184
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 185
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 186
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 187
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 188
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 189
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 190
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 191
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 192
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 193
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 194
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 195
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 196
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 197
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 198
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 199
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 200
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 201
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 202
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 203
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 204
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 205
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 206
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 207
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 208
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 209
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 210
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 211
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 212
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 213
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 214
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 215
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 216
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 217
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 218
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 219
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 220
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 221
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 222
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 223
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 224
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 225
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 226
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 227
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 228
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 229
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 230
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 231
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 232
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 233
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 234
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 235
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 236
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 237
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 238
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 239
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 240
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 241
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 242
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 243
tellTarget ("/boss1/bblink1") {
nextFrame();
};
tellTarget ("/boss1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 244
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 245
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 246
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 247
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 248
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 249
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 250
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 251
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 252
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 253
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 254
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 255
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 256
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 257
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 258
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 259
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 260
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 261
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 262
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 263
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 264
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 265
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 266
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 267
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 268
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 269
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 270
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 271
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 272
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 273
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 274
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 275
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 276
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 277
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 278
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 279
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 280
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 281
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 282
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 283
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 284
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 285
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 286
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 287
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 288
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 289
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 290
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 291
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 292
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 293
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 294
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 295
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 296
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 297
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 298
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 299
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 300
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 301
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 302
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 303
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 304
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 305
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 306
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 307
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 308
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 309
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 310
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 311
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 312
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 313
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 314
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 315
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 316
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 317
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 318
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 319
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 320
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 321
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 322
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 323
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 324
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 325
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 326
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 327
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 328
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 329
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 330
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 331
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 332
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 333
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 334
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 335
tellTarget ("/boss1/bblink1") {
nextFrame();
};
tellTarget ("/boss1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 336
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 337
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 338
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 339
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 340
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 341
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 342
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 343
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 344
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 345
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 346
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 347
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 348
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 349
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 350
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 351
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 352
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 353
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 354
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 355
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 356
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 357
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 358
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 359
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 360
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 361
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 362
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 363
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 364
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 365
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 366
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 367
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 368
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 369
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 370
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 371
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 372
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 373
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 374
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 375
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 376
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 377
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 378
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 379
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 380
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 381
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 382
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 383
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 384
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 385
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 386
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 387
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 388
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 389
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 390
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 391
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 392
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 393
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 394
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 395
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 396
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 397
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 398
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 399
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 400
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 401
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 402
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 403
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 404
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 405
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 406
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 407
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 408
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 409
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 410
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 411
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 412
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 413
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 414
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 415
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 416
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 417
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 418
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 419
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 420
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 421
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 422
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 423
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 424
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 425
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 426
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 427
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 428
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 429
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 430
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 431
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 432
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 433
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 434
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 435
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 436
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 437
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 438
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 439
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 440
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 441
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 442
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 443
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 444
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 445
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 446
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 447
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 448
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 449
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 450
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 451
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 452
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 453
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 454
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 455
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 456
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 457
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 458
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 459
tellTarget ("/boss1/bblink1") {
nextFrame();
};
Symbol 1090 MovieClip Frame 460
stop();
_root.gotoAndPlay("the_end");
Instance of Symbol 825 MovieClip in Symbol 1091 MovieClip Frame 33
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Instance of Symbol 825 MovieClip in Symbol 1091 MovieClip Frame 42
onClipEvent (enterFrame) {
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
}
}
}
if (_currentframe < 148) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
}
}
}
}
Symbol 1091 MovieClip Frame 124
stop();
Symbol 1097 MovieClip Frame 10
stop();
Symbol 1130 Button
on (release) {
gotoAndPlay (1747);
}
Symbol 1131 Button
on (release) {
gotoAndPlay (283);
}
Symbol 1138 MovieClip Frame 21
stop();
Symbol 1144 Button
on (release) {
play();
}
Symbol 1150 Button
on (release) {
gotoAndStop (9659);
}
Symbol 1156 Button
on (release) {
gotoAndStop (9701);
}