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 318
Mouse.show();
Frame 450
stop();
Frame 509
Mouse.show();
Frame 1920
Mouse.show();
Frame 1931
numEnemy = 10;
numdropship = 5;
Instance of Symbol 198 MovieClip "thrust" in Frame 1932
onClipEvent (enterFrame) {
this._x = _root.spaceship._x + 0;
this._y = _root.spaceship._y + 10;
if (_root.spaceship._currentframe > 140) {
nextFrame();
}
}
Instance of Symbol 247 MovieClip "laser" in Frame 1932
onClipEvent (load) {
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 295 MovieClip "player_dam" in Frame 1932
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 299 MovieClip "pw1" in Frame 1932
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 303 MovieClip "pw2" in Frame 1932
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 408 MovieClip "mis0" in Frame 1932
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);
}
}
Frame 1965
Instance of Symbol 333 MovieClip "spaceship" in Frame 1973
onClipEvent (load) {
moveSpeed = 6;
_root.laser._visible = false;
_root.enemylaser._visible = false;
laserCounter = 0;
scrollx = _root.mainGround.ground._width / 1;
scrollStart = false;
maxLasers = 5;
depthCounter = 0;
var reloadtime = 5;
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 + 1);
}
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 = 4;
}
if (_root.powerbar._currentframe == 3) {
var reloadtime = 5;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 4) {
var reloadtime = 6;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 5) {
var reloadtime = 6;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 6) {
var reloadtime = 6;
maxLasers = 4;
}
if (_root.powerbar._currentframe == 7) {
var reloadtime = 6;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 8) {
var reloadtime = 7;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 9) {
var reloadtime = 8;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 10) {
var reloadtime = 5;
maxLasers = 4;
}
}
Instance of Symbol 543 MovieClip "enemy1" in Frame 2513
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 "we1" in Frame 2513
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 550 MovieClip "we2" in Frame 2513
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 550 MovieClip "we3" in Frame 2513
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 550 MovieClip "we4" in Frame 2513
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 550 MovieClip "we5" in Frame 2513
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 543 MovieClip "enemy2" in Frame 2535
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 543 MovieClip "enemy3" in Frame 2563
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 543 MovieClip "enemy4" in Frame 2582
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 543 MovieClip "enemy5" in Frame 2604
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 "we1" in Frame 2654
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 550 MovieClip "we2" in Frame 2654
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 550 MovieClip "we3" in Frame 2654
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 550 MovieClip "we6" in Frame 2654
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 550 MovieClip "we7" in Frame 2654
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 543 MovieClip "enemy1" in Frame 2654
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 543 MovieClip "enemy2" in Frame 2669
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 543 MovieClip "enemy3" in Frame 2682
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 543 MovieClip "enemy6" in Frame 2697
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 543 MovieClip "enemy7" in Frame 2711
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 553 MovieClip "enemy1" in Frame 2784
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 557 MovieClip "we1" in Frame 2784
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 550 MovieClip "we2" in Frame 2784
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 557 MovieClip "we3" in Frame 2784
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 543 MovieClip "enemy2" in Frame 2800
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 553 MovieClip "enemy3" in Frame 2815
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 557 MovieClip "we4" in Frame 2821
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 550 MovieClip "we5" in Frame 2821
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 557 MovieClip "we6" in Frame 2821
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.enemy6._currentframe == 1) {
this._x = _root.enemy6._x + 0;
this._y = _root.enemy6._y + 0;
stop();
}
if (_root.enemy6._currentframe > 1) {
_root.we6.nextFrame();
stop();
}
}
Instance of Symbol 553 MovieClip "enemy4" in Frame 2821
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 566 MovieClip in Frame 2826
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 35;
goY = (this._y - _root.spaceship._y) / 35;
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
if (_root.we2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 543 MovieClip "enemy5" in Frame 2842
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 553 MovieClip "enemy6" in Frame 2857
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 583 MovieClip "powerup3" in Frame 2878
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 591 MovieClip "ds1" in Frame 2928
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 594 MovieClip "dropship1" in Frame 2928
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 598 MovieClip in Frame 2971
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 598 MovieClip in Frame 2988
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 598 MovieClip in Frame 3005
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 607 MovieClip "we1" in Frame 3033
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 607 MovieClip "we2" in Frame 3033
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 607 MovieClip "we3" in Frame 3033
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 609 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 609 MovieClip "enemy2" in Frame 3056
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 609 MovieClip "enemy3" in Frame 3081
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 "ds1" in Frame 3145
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds1._currentframe < 2) {
if (_root.dropship1._currentframe > 3) {
this._x = _root.dropship1._x + 0;
this._y = _root.dropship1._y + 0;
_root.ds1.nextFrame();
stop();
}
}
}
Instance of Symbol 635 MovieClip in Frame 3145
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 2) {
nextFrame();
}
}
Instance of Symbol 648 MovieClip "ww1" in Frame 3201
onClipEvent (load) {
stop();
_root.ww1.gotoAndStop(1);
}
onClipEvent (enterFrame) {
this._x = _root.spaceship._x - 30;
this._y = _root.wbar._y + 0;
if (_root.spaceship._currentframe < 180) {
if (_root.wbar.hitTest(_root.spaceship)) {
_root.ww1.gotoAndStop(2);
} else {
_root.ww1.gotoAndStop(3);
}
}
}
Instance of Symbol 653 MovieClip in Frame 3233
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 653 MovieClip in Frame 3250
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 663 MovieClip "ds2" in Frame 3285
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship2._currentframe < 16) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
stop();
}
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 16) {
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 583 MovieClip "powerup3" in Frame 3289
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 675 MovieClip "healthup" in Frame 3289
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 685 MovieClip "we1" in Frame 3295
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 685 MovieClip "we2" in Frame 3295
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 688 MovieClip "enemy1" in Frame 3297
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 688 MovieClip "enemy2" in Frame 3301
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 303 MovieClip "pw1" in Frame 3307
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 693 MovieClip in Frame 3350
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 693 MovieClip in Frame 3364
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 693 MovieClip in Frame 3378
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 700 MovieClip "we6" in Frame 3407
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 700 MovieClip "we7" in Frame 3407
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 700 MovieClip "we8" in Frame 3407
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 693 MovieClip in Frame 3440
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 711 MovieClip "ds4" in Frame 3534
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 711 MovieClip "ds5" in Frame 3534
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds5._currentframe < 2) {
if (_root.dropship5._currentframe > 8) {
this._x = _root.dropship5._x + 0;
this._y = _root.dropship5._y + 0;
_root.ds5.nextFrame();
stop();
}
}
}
Instance of Symbol 711 MovieClip "ds1" in Frame 3534
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 712 MovieClip "dropship4" in Frame 3534
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 712 MovieClip "dropship5" in Frame 3560
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 712 MovieClip "dropship1" in Frame 3582
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 716 MovieClip "ds3" in Frame 3643
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 4) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 717 MovieClip "we1" in Frame 3643
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 717 MovieClip "we2" in Frame 3643
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 553 MovieClip "enemy1" in Frame 3665
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 740 MovieClip "ds2" in Frame 3671
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe == 7) {
_root.ds2.nextFrame();
stop();
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
}
}
}
Instance of Symbol 743 MovieClip "dropship2" in Frame 3671
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 722 MovieClip "tg2" in Frame 3671
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 553 MovieClip "enemy2" in Frame 3689
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 583 MovieClip "powerup3" in Frame 3720
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 716 MovieClip "ds3" in Frame 3800
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 4) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 716 MovieClip "ds4" in Frame 3800
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 748 MovieClip in Frame 3805
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 685 MovieClip "we2" in Frame 3823
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 685 MovieClip "we1" in Frame 3823
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 685 MovieClip "we3" in Frame 3823
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 688 MovieClip "enemy1" in Frame 3823
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 688 MovieClip "enemy2" in Frame 3834
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 688 MovieClip "enemy3" in Frame 3844
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 583 MovieClip "powerup3" in Frame 3847
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 771 MovieClip "we2" in Frame 3992
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 771 MovieClip "we1" in Frame 3992
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 773 MovieClip "enemy1" in Frame 3994
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 773 MovieClip "enemy2" in Frame 4005
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 711 MovieClip "ds1" in Frame 4011
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 712 MovieClip "dropship1" in Frame 4014
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 716 MovieClip "ds3" in Frame 4039
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 4) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 716 MovieClip "ds2" in Frame 4039
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 719 MovieClip "dropship3" in Frame 4039
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 719 MovieClip "dropship2" in Frame 4066
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 719 MovieClip "dropship3" in Frame 4129
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 778 MovieClip "we3" in Frame 4130
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 778 MovieClip "we2" in Frame 4130
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 778 MovieClip "we1" in Frame 4130
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 783 MovieClip "enemy3" in Frame 4130
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 50;
goY = (this._y - _root.spaceship._y) / 50;
stop();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
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 675 MovieClip "healthup" in Frame 4135
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 583 MovieClip "powerup3" in Frame 4135
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 783 MovieClip "enemy2" in Frame 4165
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 50;
goY = (this._y - _root.spaceship._y) / 50;
stop();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
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 783 MovieClip "enemy1" in Frame 4195
onClipEvent (load) {
goX = (this._x - _root.spaceship._x) / 50;
goY = (this._y - _root.spaceship._y) / 50;
stop();
}
onClipEvent (enterFrame) {
this._x = this._x - goX;
this._y = this._y - goY;
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 663 MovieClip "ds2" in Frame 4201
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.dropship2._currentframe < 16) {
this._x = _root.dropship2._x + 0;
this._y = _root.dropship2._y + 0;
stop();
}
if (_root.ds2._currentframe < 2) {
if (_root.dropship2._currentframe > 16) {
_root.ds2.nextFrame();
stop();
}
}
}
Instance of Symbol 791 MovieClip in Frame 4251
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 791 MovieClip in Frame 4251
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 792 MovieClip "we1" in Frame 4265
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 792 MovieClip "we2" in Frame 4265
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 792 MovieClip "we3" in Frame 4265
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 543 MovieClip "enemy1" in Frame 4265
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 543 MovieClip "enemy2" in Frame 4278
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 791 MovieClip in Frame 4283
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 791 MovieClip in Frame 4283
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 543 MovieClip "enemy3" in Frame 4287
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 693 MovieClip in Frame 4333
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 685 MovieClip "we2" in Frame 4356
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 685 MovieClip "we1" in Frame 4356
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 685 MovieClip "we3" in Frame 4356
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 688 MovieClip "enemy1" in Frame 4356
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 688 MovieClip "enemy3" in Frame 4356
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 688 MovieClip "enemy2" in Frame 4356
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 693 MovieClip in Frame 4357
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 685 MovieClip "we5" in Frame 4392
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 685 MovieClip "we4" in Frame 4392
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 685 MovieClip "we6" in Frame 4392
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 688 MovieClip "enemy6" in Frame 4392
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 688 MovieClip "enemy5" in Frame 4392
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 688 MovieClip "enemy4" in Frame 4392
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 716 MovieClip "ds3" in Frame 4411
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.ds3._currentframe < 2) {
if (_root.dropship3._currentframe > 4) {
this._x = _root.dropship3._x + 0;
this._y = _root.dropship3._y + 0;
_root.ds3.nextFrame();
stop();
}
}
}
Instance of Symbol 716 MovieClip "ds4" in Frame 4411
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 716 MovieClip "ds1" in Frame 4411
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 719 MovieClip "dropship3" in Frame 4411
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 719 MovieClip "dropship1" in Frame 4411
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 719 MovieClip "dropship4" in Frame 4411
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();
}
}
}
}
Frame 4665
gotoAndPlay (4705);
Frame 4679
gotoAndPlay (6389);
Frame 4680
prevFrame();
Instance of Symbol 871 MovieClip "flashlight" in Frame 4887
onClipEvent (enterFrame) {
_x = (_x + (((_parent._xmouse - _x) + 10) * 0.4));
_y = (_y + (((_parent._ymouse - _y) + 10) * 0.4));
}
on (keyPress "f") {
if (_root.flashlight._currentframe < 3) {
nextFrame();
}
}
Instance of Symbol 853 MovieClip "hand" in Frame 4887
onClipEvent (enterFrame) {
if (_root.hand._currentframe < 61) {
_x = (_x + (((_parent._xmouse - _x) + 120) * 0.2));
_y = (_y + (((_parent._ymouse - _y) + 140) * 0.2));
}
if (_root.hand._currentframe > 65) {
_x = (_x + (((_parent._xmouse - _x) + 170) * 0.07));
_y = (_y + (((_parent._ymouse - _y) + 195) * 0.07));
}
}
Instance of Symbol 874 MovieClip "flashy" in Frame 4887
onClipEvent (enterFrame) {
_x = (_x + (((_parent._xmouse - _x) + 70) * 0.2));
_y = (_y + (((_parent._ymouse - _y) + 70) * 0.2));
}
Instance of Symbol 905 MovieClip "gun" in Frame 4887
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
if (_root.ammo._currentframe > 31) {
_root.gun.nextFrame();
}
}
onClipEvent (mouseMove) {
setProperty(this, _x , _root._xmouse);
setProperty(this, _y , _root._ymouse);
updateAfterEvent(load);
}
Frame 4912
stop();
Frame 4918
gotoAndPlay (4919);
Instance of Symbol 871 MovieClip "flashlight" in Frame 4919
onClipEvent (enterFrame) {
_x = (_x + (((_parent._xmouse - _x) + 10) * 0.4));
_y = (_y + (((_parent._ymouse - _y) + 10) * 0.4));
}
on (keyPress "f") {
if (_root.flashlight._currentframe < 3) {
nextFrame();
}
}
Instance of Symbol 853 MovieClip "hand" in Frame 4919
onClipEvent (enterFrame) {
if (_root.hand._currentframe < 61) {
_x = (_x + (((_parent._xmouse - _x) + 120) * 0.2));
_y = (_y + (((_parent._ymouse - _y) + 140) * 0.2));
}
if (_root.hand._currentframe > 65) {
_x = (_x + (((_parent._xmouse - _x) + 170) * 0.07));
_y = (_y + (((_parent._ymouse - _y) + 195) * 0.07));
}
}
Instance of Symbol 874 MovieClip "flashy" in Frame 4919
onClipEvent (enterFrame) {
_x = (_x + (((_parent._xmouse - _x) + 70) * 0.2));
_y = (_y + (((_parent._ymouse - _y) + 70) * 0.2));
}
Instance of Symbol 905 MovieClip "gun" in Frame 4919
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
if (_root.ammo._currentframe > 31) {
_root.gun.nextFrame();
}
}
onClipEvent (mouseMove) {
setProperty(this, _x , _root._xmouse);
setProperty(this, _y , _root._ymouse);
updateAfterEvent(load);
}
Instance of Symbol 1085 MovieClip "sd1" in Frame 5004
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 45) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(2);
stop();
}
}
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 55) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(3);
stop();
}
}
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 65) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(4);
stop();
}
}
}
Instance of Symbol 1085 MovieClip "sd2" in Frame 5004
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.sd2._currentframe == 1) {
if (_root.sol2._currentframe == 45) {
this._x = _root.sol2._x + 0;
this._y = _root.sol2._y + 0;
_root.sd2.gotoAndStop(2);
stop();
}
}
if (_root.sd2._currentframe == 1) {
if (_root.sol2._currentframe == 55) {
this._x = _root.sol2._x + 0;
this._y = _root.sol2._y + 0;
_root.sd2.gotoAndStop(3);
stop();
}
}
if (_root.sd2._currentframe == 1) {
if (_root.sol2._currentframe == 65) {
this._x = _root.sol2._x + 0;
this._y = _root.sol2._y + 0;
_root.sd2.gotoAndStop(4);
stop();
}
}
}
Frame 5043
stop();
Instance of Symbol 1085 MovieClip "sd1" in Frame 5077
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 45) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(2);
stop();
}
}
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 55) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(3);
stop();
}
}
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 65) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(4);
stop();
}
}
}
Frame 5104
stop();
Instance of Symbol 1120 MovieClip in Frame 5180
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
if (_currentframe < 5) {
nextFrame();
}
}
}
Instance of Symbol 1128 MovieClip in Frame 5180
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
if (_currentframe < 5) {
nextFrame();
}
}
}
Instance of Symbol 1173 MovieClip in Frame 5193
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
if (_currentframe < 10) {
nextFrame();
}
}
}
Instance of Symbol 1256 MovieClip "sd3" in Frame 5195
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.sd3._currentframe == 1) {
if (_root.sol3._currentframe == 23) {
this._x = _root.sol3._x + 0;
this._y = _root.sol3._y + 0;
_root.sd3.gotoAndStop(2);
stop();
}
}
if (_root.sd3._currentframe == 1) {
if (_root.sol3._currentframe == 33) {
this._x = _root.sol3._x + 0;
this._y = _root.sol3._y + 0;
_root.sd3.gotoAndStop(3);
stop();
}
}
if (_root.sd3._currentframe == 1) {
if (_root.sol3._currentframe == 43) {
this._x = _root.sol3._x + 0;
this._y = _root.sol3._y + 0;
_root.sd3.gotoAndStop(4);
stop();
}
}
}
Frame 5237
stop();
Instance of Symbol 1260 MovieClip "sd4" in Frame 5251
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.sd4._currentframe == 1) {
if (_root.sol4._currentframe == 23) {
this._x = _root.sol4._x + 0;
this._y = _root.sol4._y + 0;
_root.sd4.gotoAndStop(2);
stop();
}
}
if (_root.sd4._currentframe == 1) {
if (_root.sol4._currentframe == 33) {
this._x = _root.sol4._x + 0;
this._y = _root.sol4._y + 0;
_root.sd4.gotoAndStop(3);
stop();
}
}
if (_root.sd4._currentframe == 1) {
if (_root.sol4._currentframe == 43) {
this._x = _root.sol4._x + 0;
this._y = _root.sol4._y + 0;
_root.sd4.gotoAndStop(4);
stop();
}
}
}
Instance of Symbol 1261 MovieClip "sd5" in Frame 5262
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.sd5._currentframe == 1) {
if (_root.sol5._currentframe == 23) {
this._x = _root.sol5._x + 0;
this._y = _root.sol5._y + 0;
_root.sd5.gotoAndStop(2);
stop();
}
}
if (_root.sd5._currentframe == 1) {
if (_root.sol5._currentframe == 33) {
this._x = _root.sol5._x + 0;
this._y = _root.sol5._y + 0;
_root.sd5.gotoAndStop(3);
stop();
}
}
if (_root.sd5._currentframe == 1) {
if (_root.sol5._currentframe == 43) {
this._x = _root.sol5._x + 0;
this._y = _root.sol5._y + 0;
_root.sd5.gotoAndStop(4);
stop();
}
}
}
Frame 5279
stop();
Instance of Symbol 1085 MovieClip "sd1" in Frame 5356
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 45) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(2);
stop();
}
}
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 55) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(3);
stop();
}
}
if (_root.sd1._currentframe == 1) {
if (_root.sol1._currentframe == 65) {
this._x = _root.sol1._x + 0;
this._y = _root.sol1._y + 0;
_root.sd1.gotoAndStop(4);
stop();
}
}
}
Instance of Symbol 1261 MovieClip "sd5" in Frame 5356
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_root.sd5._currentframe == 1) {
if (_root.sol5._currentframe == 23) {
this._x = _root.sol5._x + 0;
this._y = _root.sol5._y + 0;
_root.sd5.gotoAndStop(2);
stop();
}
}
if (_root.sd5._currentframe == 1) {
if (_root.sol5._currentframe == 33) {
this._x = _root.sol5._x + 0;
this._y = _root.sol5._y + 0;
_root.sd5.gotoAndStop(3);
stop();
}
}
if (_root.sd5._currentframe == 1) {
if (_root.sol5._currentframe == 43) {
this._x = _root.sol5._x + 0;
this._y = _root.sol5._y + 0;
_root.sd5.gotoAndStop(4);
stop();
}
}
}
Frame 5384
stop();
Frame 5437
stop();
Frame 5449
gotoAndPlay (5480);
Instance of Symbol 198 MovieClip "thrust" in Frame 5480
onClipEvent (enterFrame) {
this._x = _root.spaceship._x + 0;
this._y = _root.spaceship._y + 10;
if (_root.spaceship._currentframe > 140) {
nextFrame();
}
}
Instance of Symbol 247 MovieClip "laser" in Frame 5480
onClipEvent (load) {
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 295 MovieClip "player_dam" in Frame 5480
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 299 MovieClip "pw1" in Frame 5480
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 303 MovieClip "pw2" in Frame 5480
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 408 MovieClip "mis0" in Frame 5480
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);
}
}
Frame 5487
numEnemy = 10;
numdropship = 5;
Instance of Symbol 333 MovieClip "spaceship" in Frame 5537
onClipEvent (load) {
moveSpeed = 6;
_root.laser._visible = false;
_root.enemylaser._visible = false;
laserCounter = 0;
scrollx = _root.mainGround.ground._width / 1;
scrollStart = false;
maxLasers = 5;
depthCounter = 0;
var reloadtime = 5;
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 + 1);
}
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 = 4;
}
if (_root.powerbar._currentframe == 3) {
var reloadtime = 5;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 4) {
var reloadtime = 6;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 5) {
var reloadtime = 6;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 6) {
var reloadtime = 6;
maxLasers = 4;
}
if (_root.powerbar._currentframe == 7) {
var reloadtime = 6;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 8) {
var reloadtime = 7;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 9) {
var reloadtime = 8;
maxLasers = 3;
}
if (_root.powerbar._currentframe == 10) {
var reloadtime = 5;
maxLasers = 4;
}
}
Instance of Symbol 1365 MovieClip "b1" in Frame 5697
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 1366 MovieClip "dropship1" in Frame 5698
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 1368 MovieClip in Frame 5729
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 1368 MovieClip in Frame 5736
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 1368 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 598 MovieClip in Frame 5777
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.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 598 MovieClip in Frame 5782
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.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 598 MovieClip in Frame 5786
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.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 598 MovieClip in Frame 5791
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.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 598 MovieClip in Frame 5797
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.boss_gun._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 1377 MovieClip in Frame 6052
onClipEvent (enterFrame) {
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Frame 6242
gotoAndPlay (5701);
Frame 6281
gotoAndPlay (6307);
Frame 6304
gotoAndPlay (6554);
Frame 6305
prevFrame();
Frame 6388
gotoAndPlay (318);
Frame 6553
stop();
Frame 6718
stop();
Symbol 12 MovieClip Frame 1
bar.stop();
Symbol 19 Button
on (release) {
getURL ("http://www.gamesofgondor.com", "_blank");
}
Symbol 37 MovieClip Frame 177
stop();
Symbol 72 MovieClip Frame 6
stop();
Symbol 73 Button
on (release) {
gotoAndPlay (2);
}
Symbol 83 Button
on (release) {
gotoAndPlay (20);
}
Symbol 84 Button
on (release) {
getURL ("http://invisionfree.com/forums/Adregalus_Forums", "_blank");
}
Symbol 85 Button
on (release) {
getURL ("http://omegadragon3000.sheezyart.com", "_blank");
}
Symbol 87 MovieClip Frame 1
stop();
Symbol 87 MovieClip Frame 2
if (_root.game._currentframe > 2) {
_root.game.gotoAndPlay(47);
}
Symbol 87 MovieClip Frame 14
stop();
Symbol 87 MovieClip Frame 30
gotoAndStop (1);
Symbol 89 Button
on (release) {
gotoAndPlay (2);
}
Symbol 92 Button
on (release) {
gotoAndPlay (47);
}
Symbol 93 Button
on (release) {
gotoAndPlay (31);
}
Symbol 94 Button
on (release) {
gotoAndPlay (20);
}
Symbol 95 Button
on (release) {
gotoAndPlay (40);
}
Symbol 107 Button
on (release) {
gotoAndStop (14);
}
Symbol 111 Button
on (release) {
nextFrame();
}
Symbol 113 Button
on (release) {
prevFrame();
}
Symbol 121 MovieClip Frame 1
targY = 0;
dragger._x = theMask._width - 30;
dragger.onPress = function () {
var _local1 = this;
startDrag (_local1, false, _local1._x, 0, _local1._x, theMask._height - _local1._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 123 MovieClip Frame 1
stop();
Symbol 123 MovieClip Frame 2
if (_root.extras._currentframe > 2) {
_root.extras.gotoAndPlay(20);
}
Symbol 123 MovieClip Frame 14
stop();
Symbol 123 MovieClip Frame 25
stop();
Symbol 123 MovieClip Frame 35
stop();
Symbol 123 MovieClip Frame 45
stop();
Symbol 123 MovieClip Frame 59
gotoAndStop (1);
Symbol 126 Button
on (release) {
nextFrame();
play();
}
Symbol 129 Button
on (release) {
getURL ("http://www.gamesofgondor.com", "_blank");
}
Symbol 134 Button
on (release) {
gotoAndPlay (1731);
}
Symbol 136 Button
on (release) {
stop();
}
Symbol 138 Button
on (release) {
play();
}
Symbol 156 MovieClip Frame 24
gotoAndPlay (12);
Symbol 198 MovieClip Frame 1
stop();
Symbol 202 MovieClip Frame 2
stop();
Symbol 204 MovieClip Frame 2
stop();
Symbol 205 MovieClip Frame 1
stop();
Symbol 207 MovieClip Frame 2
stop();
Symbol 209 MovieClip Frame 1
stop();
Symbol 211 MovieClip Frame 2
stop();
Symbol 213 MovieClip Frame 1
stop();
Symbol 215 MovieClip Frame 2
stop();
Symbol 219 MovieClip Frame 1
stop();
Instance of Symbol 219 MovieClip in Symbol 220 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 219 MovieClip in Symbol 220 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 220 MovieClip Frame 28
stop();
Symbol 222 MovieClip Frame 2
stop();
Symbol 225 MovieClip Frame 1
stop();
Symbol 226 MovieClip Frame 1
stop();
Symbol 228 MovieClip Frame 1
stop();
Instance of Symbol 228 MovieClip in Symbol 229 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 229 MovieClip Frame 16
stop();
Symbol 231 MovieClip Frame 1
stop();
Symbol 233 MovieClip Frame 1
stop();
Instance of Symbol 233 MovieClip in Symbol 234 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 236 MovieClip Frame 2
stop();
Symbol 238 MovieClip Frame 1
stop();
Symbol 240 MovieClip Frame 1
stop();
Instance of Symbol 238 MovieClip in Symbol 241 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 238 MovieClip in Symbol 241 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 240 MovieClip in Symbol 241 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 240 MovieClip in Symbol 241 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 243 MovieClip Frame 2
stop();
Instance of Symbol 238 MovieClip in Symbol 246 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 238 MovieClip in Symbol 246 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 247 MovieClip Frame 1
laserMoveSpeed = 20;
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 205 MovieClip in Symbol 247 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 207 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (load) {
if (currentframe < 2) {
if (Key.isDown(67)) {
nextFrame();
}
stop();
}
stop();
}
onClipEvent (enterFrame) {
}
Symbol 247 MovieClip Frame 2
laserMoveSpeed = 25;
Instance of Symbol 209 MovieClip in Symbol 247 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 247 MovieClip Frame 3
laserMoveSpeed = 30;
Instance of Symbol 213 MovieClip in Symbol 247 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 213 MovieClip in Symbol 247 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 247 MovieClip Frame 5
laserMoveSpeed = 20;
Instance of Symbol 226 MovieClip in Symbol 247 MovieClip Frame 5
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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 226 MovieClip in Symbol 247 MovieClip Frame 5
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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 226 MovieClip in Symbol 247 MovieClip Frame 5
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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 247 MovieClip Frame 6
laserMoveSpeed = 30;
Instance of Symbol 231 MovieClip in Symbol 247 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 231 MovieClip in Symbol 247 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Instance of Symbol 231 MovieClip in Symbol 247 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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 247 MovieClip Frame 7
laserMoveSpeed = 35;
Symbol 247 MovieClip Frame 8
laserMoveSpeed = 50;
Symbol 252 MovieClip Frame 17
stop();
Symbol 255 MovieClip Frame 24
gotoAndPlay (8);
Symbol 256 MovieClip Frame 18
stop();
Symbol 268 MovieClip Frame 65
stop();
Symbol 281 MovieClip Frame 13
stop();
Symbol 284 MovieClip Frame 58
stop();
Symbol 292 MovieClip Frame 30
stop();
Instance of Symbol 284 MovieClip "chunk" in Symbol 293 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 292 MovieClip in Symbol 293 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 284 MovieClip "chunk" in Symbol 293 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 292 MovieClip in Symbol 293 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 292 MovieClip in Symbol 293 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 284 MovieClip "chunk" in Symbol 293 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 292 MovieClip in Symbol 293 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 292 MovieClip in Symbol 293 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 284 MovieClip "chunk" in Symbol 293 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 293 MovieClip Frame 12
stop();
Symbol 295 MovieClip Frame 1
stop();
Symbol 295 MovieClip Frame 7
stop();
Instance of Symbol 252 MovieClip in Symbol 295 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 256 MovieClip in Symbol 295 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 295 MovieClip Frame 8
stop();
Instance of Symbol 257 MovieClip in Symbol 295 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 258 MovieClip in Symbol 295 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 259 MovieClip in Symbol 295 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 260 MovieClip in Symbol 295 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 265 MovieClip in Symbol 295 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 266 MovieClip in Symbol 295 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 297 MovieClip Frame 14
gotoAndPlay (11);
Symbol 298 MovieClip Frame 16
stop();
Symbol 299 MovieClip Frame 1
stop();
Symbol 302 MovieClip Frame 20
stop();
Symbol 303 MovieClip Frame 1
stop();
Symbol 304 MovieClip Frame 30
stop();
Symbol 305 MovieClip Frame 30
stop();
Symbol 306 MovieClip Frame 30
stop();
Symbol 307 MovieClip Frame 26
stop();
Symbol 308 MovieClip Frame 1
stop();
Symbol 333 MovieClip Frame 1
stop();
Instance of Symbol 308 MovieClip "p" in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p.gotoAndStop(5);
}
}
Symbol 333 MovieClip Frame 2
tellTarget ("/life") {
nextFrame();
};
Symbol 333 MovieClip Frame 25
stop();
Instance of Symbol 308 MovieClip "p1" in Symbol 333 MovieClip Frame 25
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p1.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p1.gotoAndStop(5);
}
}
Symbol 333 MovieClip Frame 26
tellTarget ("/life") {
nextFrame();
};
Symbol 333 MovieClip Frame 50
stop();
Instance of Symbol 308 MovieClip "p2" in Symbol 333 MovieClip Frame 50
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p2.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p2.gotoAndStop(5);
}
}
Symbol 333 MovieClip Frame 51
tellTarget ("/life") {
nextFrame();
};
Symbol 333 MovieClip Frame 75
stop();
Instance of Symbol 308 MovieClip "p3" in Symbol 333 MovieClip Frame 75
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p3.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p3.gotoAndStop(5);
}
}
Symbol 333 MovieClip Frame 76
tellTarget ("/life") {
nextFrame();
};
Symbol 333 MovieClip Frame 100
stop();
Instance of Symbol 308 MovieClip "p4" in Symbol 333 MovieClip Frame 100
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p4.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p4.gotoAndStop(5);
}
}
Symbol 333 MovieClip Frame 101
tellTarget ("/life") {
nextFrame();
};
Symbol 333 MovieClip Frame 125
stop();
Instance of Symbol 308 MovieClip "p5" in Symbol 333 MovieClip Frame 125
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p5.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p5.gotoAndStop(5);
}
}
Symbol 333 MovieClip Frame 126
tellTarget ("/life") {
nextFrame();
};
Symbol 333 MovieClip Frame 215
stop();
_root.gotoAndPlay("death");
Symbol 343 MovieClip Frame 6
stop();
Symbol 366 MovieClip Frame 1
stop();
Symbol 378 MovieClip Frame 1
stop();
Symbol 378 MovieClip Frame 10
stop();
Symbol 393 MovieClip Frame 12
stop();
Symbol 394 MovieClip Frame 1
stop();
Symbol 408 MovieClip Frame 1
stop();
Symbol 408 MovieClip Frame 2
play();
Instance of Symbol 404 MovieClip in Symbol 408 MovieClip Frame 35
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--;
}
}
i++;
}
n = 1;
while (n <= _root.numdropship) {
if (this.hitTest(_root["dropship" + n])) {
_root["dropship" + n].nextFrame();
_root.spaceship.laserCounter--;
nextFrame();
}
n++;
}
}
Symbol 408 MovieClip Frame 67
gotoAndStop (1);
Symbol 413 Button
on (release) {
nextFrame();
stop();
}
Symbol 421 MovieClip Frame 6
stop();
Symbol 422 Button
on (release, keyPress "<Enter>") {
if (password eq "topgun") {
_root.powerbar.gotoAndStop(10);
gotoAndStop ("topgun");
} else if (password eq "vimana") {
_root.spaceship.gotoAndStop(3);
gotoAndStop ("vimana");
} else if (password eq "spitfire") {
_root.misscounter.gotoAndStop(10);
gotoAndStop ("spitfire");
} else if (password eq "sirius") {
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop ("sirius");
} else if (password eq "thot") {
_root.spaceship.gotoAndStop(3);
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop ("thot");
} else {
gotoAndStop ("error");
}
}
Symbol 430 Button
on (release, keyPress "<Enter>") {
if (password eq "topgun") {
_root.powerbar.gotoAndStop(10);
gotoAndStop ("topgun");
} else if (password eq "vimana") {
_root.spaceship.gotoAndStop(3);
gotoAndStop ("vimana");
} else if (password eq "spitfire") {
_root.misscounter.gotoAndStop(10);
gotoAndStop ("spitfire");
} else if (password eq "sirius") {
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop ("sirius");
} else if (password eq "god") {
_root.spaceship.gotoAndPlay(12);
tellTarget ("/life") {
nextFrame();
};
gotoAndStop ("god");
} else if (password eq "thot") {
_root.spaceship.gotoAndStop(3);
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop ("thot");
} else {
gotoAndStop ("error");
}
}
Symbol 434 MovieClip Frame 84
stop();
Symbol 437 MovieClip Frame 88
stop();
Symbol 440 MovieClip Frame 79
stop();
Symbol 443 MovieClip Frame 73
stop();
Symbol 446 MovieClip Frame 85
stop();
Symbol 447 Button
on (release, keyPress "<Enter>") {
if (password eq "topgun") {
_root.powerbar.gotoAndStop(10);
gotoAndStop ("topgun");
} else if (password eq "vimana") {
_root.spaceship.gotoAndStop(3);
gotoAndStop ("vimana");
} else if (password eq "spitfire") {
_root.misscounter.gotoAndStop(10);
gotoAndStop ("spitfire");
} else if (password eq "sirius") {
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop ("sirius");
} else if (password eq "god") {
_root.spaceship.gotoAndPlay(126);
tellTarget ("/life") {
nextFrame();
};
gotoAndStop ("god");
} else if (password eq "thot") {
_root.spaceship.gotoAndStop(3);
_root.misscounter.gotoAndStop(10);
_root.powerbar.gotoAndStop(10);
gotoAndStop ("thot");
} else {
gotoAndStop ("error");
}
}
Symbol 448 MovieClip Frame 1
stop();
Symbol 450 Button
on (release) {
prevFrame();
stop();
}
Symbol 451 MovieClip Frame 1
stop();
Symbol 517 MovieClip Frame 21
stop();
Symbol 543 MovieClip Frame 1
stop();
Symbol 543 MovieClip Frame 2
play();
Symbol 543 MovieClip Frame 11
stop();
Symbol 547 MovieClip Frame 8
stop();
Symbol 548 MovieClip Frame 24
stop();
Symbol 549 MovieClip Frame 1
stop();
Symbol 550 MovieClip Frame 1
stop();
Instance of Symbol 549 MovieClip "brass" in Symbol 550 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 549 MovieClip "brass" in Symbol 550 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 549 MovieClip "brass" in Symbol 550 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 553 MovieClip Frame 1
stop();
Symbol 553 MovieClip Frame 2
play();
Symbol 553 MovieClip Frame 10
stop();
Symbol 556 MovieClip Frame 11
stop();
Symbol 557 MovieClip Frame 1
stop();
Instance of Symbol 549 MovieClip "brass" in Symbol 557 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 549 MovieClip "brass" in Symbol 557 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 562 MovieClip Frame 1
stop();
Instance of Symbol 562 MovieClip in Symbol 563 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 564 MovieClip Frame 1
stop();
Symbol 566 MovieClip Frame 1
stop();
Symbol 577 MovieClip Frame 14
stop();
Symbol 582 MovieClip Frame 33
stop();
Symbol 583 MovieClip Frame 1
stop();
Symbol 587 MovieClip Frame 26
stop();
Instance of Symbol 284 MovieClip "chunk" in Symbol 588 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 292 MovieClip in Symbol 588 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 284 MovieClip "chunk" in Symbol 588 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 292 MovieClip in Symbol 588 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 292 MovieClip in Symbol 588 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 284 MovieClip "chunk" in Symbol 588 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 292 MovieClip in Symbol 588 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 292 MovieClip in Symbol 588 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 284 MovieClip "chunk" in Symbol 588 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 588 MovieClip Frame 12
stop();
Symbol 590 MovieClip Frame 21
stop();
Symbol 591 MovieClip Frame 1
stop();
Symbol 593 MovieClip Frame 11
stop();
Symbol 594 MovieClip Frame 1
stop();
Symbol 594 MovieClip Frame 8
play();
Symbol 594 MovieClip Frame 16
stop();
Symbol 596 MovieClip Frame 1
stop();
Instance of Symbol 596 MovieClip in Symbol 597 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 598 MovieClip Frame 1
stop();
Symbol 604 MovieClip Frame 13
stop();
Symbol 606 MovieClip Frame 1
stop();
Symbol 607 MovieClip Frame 1
stop();
Instance of Symbol 606 MovieClip "brass" in Symbol 607 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 606 MovieClip "brass" in Symbol 607 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 606 MovieClip "brass" in Symbol 607 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 609 MovieClip Frame 1
stop();
Symbol 609 MovieClip Frame 2
play();
Symbol 609 MovieClip Frame 8
stop();
Symbol 632 MovieClip Frame 26
stop();
Symbol 633 MovieClip Frame 15
stop();
Symbol 634 MovieClip Frame 1
stop();
Symbol 635 MovieClip Frame 1
stop();
Symbol 637 MovieClip Frame 1
stop();
Symbol 637 MovieClip Frame 4
stop();
Symbol 637 MovieClip Frame 9
stop();
Symbol 647 MovieClip Frame 24
gotoAndPlay (4);
Symbol 648 MovieClip Frame 1
stop();
Symbol 653 MovieClip Frame 1
stop();
Instance of Symbol 652 MovieClip in Symbol 653 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 662 MovieClip Frame 33
stop();
Symbol 663 MovieClip Frame 1
stop();
Symbol 668 MovieClip Frame 6
stop();
Symbol 669 MovieClip Frame 1
stop();
Symbol 669 MovieClip Frame 16
play();
Symbol 669 MovieClip Frame 20
stop();
Symbol 674 MovieClip Frame 33
stop();
Symbol 675 MovieClip Frame 1
stop();
Symbol 684 MovieClip Frame 14
stop();
Symbol 685 MovieClip Frame 1
stop();
Instance of Symbol 549 MovieClip "brass" in Symbol 685 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Instance of Symbol 549 MovieClip "brass" in Symbol 685 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Symbol 688 MovieClip Frame 1
stop();
Symbol 688 MovieClip Frame 10
stop();
Symbol 691 MovieClip Frame 1
stop();
Instance of Symbol 691 MovieClip in Symbol 692 MovieClip Frame 1
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 691 MovieClip in Symbol 692 MovieClip Frame 1
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 692 MovieClip Frame 59
stop();
Symbol 693 MovieClip Frame 1
stop();
Symbol 699 MovieClip Frame 14
stop();
Symbol 700 MovieClip Frame 1
stop();
Instance of Symbol 549 MovieClip "brass" in Symbol 700 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Instance of Symbol 549 MovieClip "brass" in Symbol 700 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Instance of Symbol 549 MovieClip "brass" in Symbol 700 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Symbol 702 MovieClip Frame 1
stop();
Symbol 702 MovieClip Frame 2
play();
Symbol 702 MovieClip Frame 10
stop();
Symbol 710 MovieClip Frame 18
stop();
Symbol 711 MovieClip Frame 1
stop();
Instance of Symbol 549 MovieClip "brass" in Symbol 711 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Instance of Symbol 549 MovieClip "brass" in Symbol 711 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Instance of Symbol 549 MovieClip "brass" in Symbol 711 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Symbol 712 MovieClip Frame 1
stop();
Symbol 712 MovieClip Frame 8
play();
Symbol 712 MovieClip Frame 12
stop();
Symbol 716 MovieClip Frame 1
stop();
Symbol 717 MovieClip Frame 1
stop();
Instance of Symbol 549 MovieClip "brass" in Symbol 717 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 549 MovieClip "brass" in Symbol 717 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 549 MovieClip "brass" in Symbol 717 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Instance of Symbol 549 MovieClip "brass" in Symbol 717 MovieClip Frame 2
onClipEvent (load) {
xvel = random(20) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
if (_y > (170 + (_height / 1.5))) {
_y = (170 + (_height / 1.5));
yvel = (-yvel) * 0.8;
xvel = xvel * 1;
}
}
Symbol 718 MovieClip Frame 5
stop();
Symbol 719 MovieClip Frame 1
stop();
Symbol 719 MovieClip Frame 4
play();
Symbol 719 MovieClip Frame 10
stop();
Symbol 722 MovieClip Frame 1
stop();
Symbol 738 MovieClip Frame 36
stop();
Symbol 739 MovieClip Frame 29
stop();
Symbol 740 MovieClip Frame 1
stop();
Symbol 742 MovieClip Frame 6
stop();
Symbol 743 MovieClip Frame 1
stop();
Symbol 743 MovieClip Frame 7
stop();
Symbol 748 MovieClip Frame 1
stop();
Instance of Symbol 761 MovieClip in Symbol 763 MovieClip Frame 4
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 763 MovieClip Frame 29
stop();
Symbol 769 MovieClip Frame 26
stop();
Symbol 770 MovieClip Frame 9
stop();
Symbol 771 MovieClip Frame 1
stop();
Symbol 773 MovieClip Frame 1
stop();
Symbol 773 MovieClip Frame 10
stop();
Symbol 778 MovieClip Frame 1
stop();
Symbol 783 MovieClip Frame 1
stop();
Symbol 783 MovieClip Frame 2
play();
Symbol 783 MovieClip Frame 10
stop();
Symbol 788 MovieClip Frame 1
stop();
Instance of Symbol 788 MovieClip in Symbol 789 MovieClip Frame 1
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 790 MovieClip Frame 36
stop();
Symbol 791 MovieClip Frame 1
stop();
Symbol 792 MovieClip Frame 1
stop();
Symbol 847 MovieClip Frame 10
stop();
Symbol 852 MovieClip Frame 1
stop();
Symbol 852 MovieClip Frame 10
gotoAndStop (1);
Symbol 853 MovieClip Frame 1
stop();
Symbol 853 MovieClip Frame 2
Symbol 853 MovieClip Frame 4
gotoAndStop (1);
Symbol 853 MovieClip Frame 60
gotoAndStop (1);
tellTarget ("/ammo") {
gotoAndStop (1);
};
Symbol 853 MovieClip Frame 75
stop();
Symbol 863 MovieClip Frame 1
stop();
Symbol 863 MovieClip Frame 7
gotoAndStop (1);
Symbol 871 MovieClip Frame 1
stop();
Symbol 871 MovieClip Frame 3
gotoAndStop (1);
Symbol 874 MovieClip Frame 1
stop();
Symbol 874 MovieClip Frame 4
gotoAndStop (1);
Symbol 876 Button
on (press) {
if (_root.hand._currentframe == 1) {
tellTarget ("fire") {
nextFrame();
};
tellTarget ("/hand") {
gotoAndPlay (2);
};
}
}
on (release) {
tellTarget ("fire") {
prevFrame();
};
}
Symbol 894 MovieClip Frame 18
stop();
Symbol 897 MovieClip Frame 1
play();
Symbol 897 MovieClip Frame 2
tellTarget ("/ammo") {
nextFrame();
};
tellTarget ("/hand") {
play();
};
tellTarget ("/ws") {
nextFrame();
};
tellTarget ("/flashy") {
gotoAndPlay (2);
};
Symbol 898 MovieClip Frame 1
stop();
Symbol 898 MovieClip Frame 2
stop();
Symbol 900 Button
on (keyPress "r") {
if (_root.ammo._currentframe < 32) {
if (_root.ammo._currentframe > 1) {
if (_root.hand._currentframe < 61) {
tellTarget ("/ammo") {
gotoAndStop (32);
};
tellTarget ("/hand") {
gotoAndPlay (6);
};
}
}
}
}
Symbol 901 Button
on (keyPress "s") {
if (_root.hand._currentframe < 4) {
tellTarget ("/hand") {
gotoAndPlay (65);
};
}
if (_root.hand._currentframe == 75) {
tellTarget ("/hand") {
gotoAndPlay (76);
};
}
}
Symbol 905 MovieClip Frame 1
stop();
Symbol 911 MovieClip Frame 22
stop();
Symbol 915 MovieClip Frame 1
stop();
Symbol 942 MovieClip Frame 1
stop();
tellTarget ("/gun") {
gotoAndStop (1);
};
Symbol 942 MovieClip Frame 31
tellTarget ("/gun") {
nextFrame();
};
stop();
Symbol 942 MovieClip Frame 32
tellTarget ("/gun") {
nextFrame();
};
stop();
Symbol 946 MovieClip Frame 1
stop();
Symbol 946 MovieClip Frame 8
tellTarget ("/HUD") {
nextFrame();
};
Symbol 946 MovieClip Frame 16
tellTarget ("/HUD") {
nextFrame();
};
Symbol 946 MovieClip Frame 25
tellTarget ("/HUD") {
nextFrame();
};
Symbol 946 MovieClip Frame 35
tellTarget ("/HUD") {
nextFrame();
};
Symbol 946 MovieClip Frame 46
tellTarget ("/HUD") {
nextFrame();
};
Symbol 949 MovieClip Frame 4
stop();
Symbol 950 Button
on (release) {
nextFrame();
}
Symbol 1001 MovieClip Frame 16
if (_root.hand._currentframe < 61) {
if (_root.health._currentframe < 55) {
_root.health.nextFrame();
}
}
if (_root.hand._currentframe > 70) {
_root.hand.gunshield.nextFrame();
}
Symbol 1001 MovieClip Frame 17
if (_root.hand._currentframe < 61) {
if (_root.health._currentframe < 55) {
_root.health.nextFrame();
}
}
if (_root.hand._currentframe > 70) {
_root.hand.gunshield.nextFrame();
}
Symbol 1001 MovieClip Frame 18
if (_root.hand._currentframe < 61) {
if (_root.health._currentframe < 55) {
_root.health.nextFrame();
}
}
if (_root.hand._currentframe > 70) {
_root.hand.gunshield.nextFrame();
}
Symbol 1002 MovieClip Frame 48
stop();
Symbol 1004 MovieClip Frame 11
stop();
Instance of Symbol 1004 MovieClip in Symbol 1005 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 / 1.5));
_y = (_y + (yvel / 1.5));
}
Instance of Symbol 1004 MovieClip in Symbol 1005 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 / 1.5));
_y = (_y + (yvel / 1.5));
}
Instance of Symbol 1004 MovieClip in Symbol 1005 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 / 1.5));
_y = (_y + (yvel / 1.5));
}
Instance of Symbol 1004 MovieClip in Symbol 1005 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 / 1.5));
_y = (_y + (yvel / 1.5));
}
Symbol 1005 MovieClip Frame 14
stop();
Symbol 1006 MovieClip Frame 33
stop();
Instance of Symbol 1003 MovieClip in Symbol 1006 MovieClip Frame 33
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol1") {
nextFrame();
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1006 MovieClip Frame 35
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol1") {
gotoAndStop (45);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1006 MovieClip Frame 37
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol1") {
gotoAndStop (55);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1006 MovieClip Frame 37
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol1") {
gotoAndStop (65);
};
}
}
Symbol 1006 MovieClip Frame 45
play();
Symbol 1006 MovieClip Frame 54
stop();
Symbol 1006 MovieClip Frame 55
play();
Symbol 1006 MovieClip Frame 64
stop();
Symbol 1006 MovieClip Frame 65
play();
Symbol 1006 MovieClip Frame 75
stop();
Symbol 1028 MovieClip Frame 44
stop();
_root.trigger.nextFrame();
Symbol 1063 MovieClip Frame 53
stop();
_root.trigger.nextFrame();
Symbol 1083 MovieClip Frame 48
stop();
_root.trigger.nextFrame();
Symbol 1086 MovieClip Frame 33
stop();
Instance of Symbol 1003 MovieClip in Symbol 1086 MovieClip Frame 33
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol2") {
nextFrame();
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1086 MovieClip Frame 39
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol2") {
gotoAndStop (45);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1086 MovieClip Frame 39
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol2") {
gotoAndStop (55);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1086 MovieClip Frame 39
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol2") {
gotoAndStop (65);
};
}
}
Symbol 1086 MovieClip Frame 45
play();
Symbol 1086 MovieClip Frame 54
stop();
Symbol 1086 MovieClip Frame 55
play();
Symbol 1086 MovieClip Frame 64
stop();
Symbol 1086 MovieClip Frame 65
play();
Symbol 1086 MovieClip Frame 75
stop();
Symbol 1088 MovieClip Frame 1
stop();
Symbol 1088 MovieClip Frame 3
_root.gotoAndPlay("move1");
Symbol 1093 MovieClip Frame 1
stop();
Symbol 1093 MovieClip Frame 2
_root.gotoAndPlay("move2");
Symbol 1112 MovieClip Frame 16
stop();
Symbol 1120 MovieClip Frame 1
stop();
Symbol 1128 MovieClip Frame 1
stop();
Symbol 1138 MovieClip Frame 6
stop();
Symbol 1142 MovieClip Frame 31
stop();
Symbol 1144 MovieClip Frame 1
stop();
Instance of Symbol 1003 MovieClip in Symbol 1144 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/lamp3") {
nextFrame();
};
}
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1144 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 1145 MovieClip Frame 1
stop();
Instance of Symbol 1003 MovieClip in Symbol 1145 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/lamp1") {
nextFrame();
};
}
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1145 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 1146 MovieClip Frame 1
stop();
Instance of Symbol 1003 MovieClip in Symbol 1146 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/lamp4") {
nextFrame();
};
}
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1146 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 1147 MovieClip Frame 1
stop();
Instance of Symbol 1003 MovieClip in Symbol 1147 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/lamp2") {
nextFrame();
};
}
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1142 MovieClip in Symbol 1147 MovieClip Frame 2
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 1168 MovieClip Frame 34
stop();
Symbol 1172 MovieClip Frame 31
stop();
Symbol 1173 MovieClip Frame 1
stop();
Symbol 1173 MovieClip Frame 10
stop();
Instance of Symbol 1168 MovieClip in Symbol 1173 MovieClip Frame 10
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1168 MovieClip in Symbol 1173 MovieClip Frame 10
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1168 MovieClip in Symbol 1173 MovieClip Frame 10
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1168 MovieClip in Symbol 1173 MovieClip Frame 10
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1172 MovieClip in Symbol 1173 MovieClip Frame 10
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1172 MovieClip in Symbol 1173 MovieClip Frame 10
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Instance of Symbol 1172 MovieClip in Symbol 1173 MovieClip Frame 10
onClipEvent (load) {
xvel = random(15) - 10;
yvel = (-random(50)) + 10;
}
onClipEvent (enterFrame) {
yvel = yvel + 1.5;
_rotation = ((Math.atan2(yvel, xvel) * 180) / Math.PI);
_x = (_x + xvel);
_y = (_y + yvel);
}
Symbol 1176 MovieClip Frame 28
if (_root.hand._currentframe < 61) {
if (_root.health._currentframe < 55) {
_root.health.nextFrame();
}
}
if (_root.hand._currentframe > 70) {
_root.hand.gunshield.nextFrame();
}
Symbol 1176 MovieClip Frame 36
if (_root.hand._currentframe < 61) {
if (_root.health._currentframe < 55) {
_root.health.nextFrame();
}
}
if (_root.hand._currentframe > 70) {
_root.hand.gunshield.nextFrame();
}
Symbol 1177 MovieClip Frame 1
stop();
Symbol 1178 MovieClip Frame 11
stop();
Instance of Symbol 1003 MovieClip in Symbol 1178 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
nextFrame();
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1178 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
gotoAndStop (23);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1178 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
gotoAndStop (33);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1178 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
gotoAndStop (43);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1178 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
gotoAndStop (43);
};
}
}
Symbol 1178 MovieClip Frame 23
play();
Symbol 1178 MovieClip Frame 32
stop();
Symbol 1178 MovieClip Frame 33
play();
Symbol 1178 MovieClip Frame 42
stop();
Symbol 1178 MovieClip Frame 43
play();
Symbol 1178 MovieClip Frame 53
stop();
Symbol 1205 MovieClip Frame 54
stop();
_root.trigger.nextFrame();
Symbol 1241 MovieClip Frame 49
stop();
_root.trigger.nextFrame();
Symbol 1255 MovieClip Frame 36
stop();
_root.trigger.nextFrame();
Symbol 1256 MovieClip Frame 1
stop();
Symbol 1257 MovieClip Frame 1
stop();
Symbol 1257 MovieClip Frame 2
_root.gotoAndPlay("move3");
Symbol 1258 MovieClip Frame 40
if (_root.hand._currentframe < 61) {
if (_root.health._currentframe < 55) {
_root.health.nextFrame();
}
}
if (_root.hand._currentframe > 70) {
_root.hand.gunshield.nextFrame();
}
Symbol 1258 MovieClip Frame 72
gotoAndPlay (18);
Symbol 1259 MovieClip Frame 11
stop();
Instance of Symbol 1003 MovieClip in Symbol 1259 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
nextFrame();
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1259 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
gotoAndStop (23);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1259 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
gotoAndStop (33);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1259 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
gotoAndStop (43);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1259 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
gotoAndStop (43);
};
}
}
Symbol 1259 MovieClip Frame 23
play();
Symbol 1259 MovieClip Frame 32
stop();
Symbol 1259 MovieClip Frame 33
play();
Symbol 1259 MovieClip Frame 42
stop();
Symbol 1259 MovieClip Frame 43
play();
Symbol 1259 MovieClip Frame 53
stop();
Symbol 1260 MovieClip Frame 1
stop();
Symbol 1261 MovieClip Frame 1
stop();
Symbol 1262 MovieClip Frame 11
stop();
Instance of Symbol 1003 MovieClip in Symbol 1262 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
nextFrame();
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1262 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
gotoAndStop (23);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1262 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
gotoAndStop (33);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1262 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
gotoAndStop (43);
};
}
}
Instance of Symbol 1003 MovieClip in Symbol 1262 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
gotoAndStop (43);
};
}
}
Symbol 1262 MovieClip Frame 23
play();
Symbol 1262 MovieClip Frame 32
stop();
Symbol 1262 MovieClip Frame 33
play();
Symbol 1262 MovieClip Frame 42
stop();
Symbol 1262 MovieClip Frame 43
play();
Symbol 1262 MovieClip Frame 53
stop();
Symbol 1263 MovieClip Frame 1
stop();
Symbol 1263 MovieClip Frame 3
_root.gotoAndPlay("move4");
Symbol 1264 MovieClip Frame 1
stop();
Symbol 1264 MovieClip Frame 3
_root.gotoAndPlay("move5");
Symbol 1266 Button
on (release) {
gotoAndPlay (4705);
}
Symbol 1267 Button
on (release) {
nextFrame();
play();
}
Symbol 1268 Button
on (release) {
gotoAndPlay (1920);
}
Symbol 1275 MovieClip Frame 414
stop();
Symbol 1317 Button
on (release) {
gotoAndStop (1);
}
Symbol 1320 Button
on (release) {
play();
}
Symbol 1323 Button
on (release) {
stop();
}
Symbol 1337 MovieClip Frame 6
stop();
Symbol 1338 MovieClip Frame 1
stop();
Symbol 1338 MovieClip Frame 17
gotoAndStop (2);
Symbol 1348 MovieClip Frame 1
stop();
Instance of Symbol 264 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 256 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 256 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 252 MovieClip in Symbol 1348 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 264 MovieClip in Symbol 1348 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 264 MovieClip in Symbol 1348 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 264 MovieClip in Symbol 1348 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 264 MovieClip in Symbol 1348 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 264 MovieClip in Symbol 1348 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 264 MovieClip in Symbol 1348 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 1348 MovieClip Frame 10
stop();
Symbol 1351 MovieClip Frame 1
stop();
Symbol 1364 MovieClip Frame 88
stop();
_root.gotoAndPlay("boss_dead");
Symbol 1365 MovieClip Frame 1
stop();
Symbol 1366 MovieClip Frame 2
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 3
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 4
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 5
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 6
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 7
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 8
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 9
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 10
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 11
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 12
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 13
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 14
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 15
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 16
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 17
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 18
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 19
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 20
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 21
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 22
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 23
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 24
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 25
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 26
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 27
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 28
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 29
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 30
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 31
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 32
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 33
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 34
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 35
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 36
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 37
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 38
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 39
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 40
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 1366 MovieClip Frame 41
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 42
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 43
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 44
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 45
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 46
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 47
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 48
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 49
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 50
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 51
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 52
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 53
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 54
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 55
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 56
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 57
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 58
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 59
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 60
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 61
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 62
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 63
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 64
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 65
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 66
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 67
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 68
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 69
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 70
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 1366 MovieClip Frame 71
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 72
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 73
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 74
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 75
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 76
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 77
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 78
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 79
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 80
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 81
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 82
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 83
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 84
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 85
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 86
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 87
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 88
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 89
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 90
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 91
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 92
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 93
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 94
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 95
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 96
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 97
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 98
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 99
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 100
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 1366 MovieClip Frame 101
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 102
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 103
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 104
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 105
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 106
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 107
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 108
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 109
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 110
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 111
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 112
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 113
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 114
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 115
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 116
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 117
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 118
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 119
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 120
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 1366 MovieClip Frame 121
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 122
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 123
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 124
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 125
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 126
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 127
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 128
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 129
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 130
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 131
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 132
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 133
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 134
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 135
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 136
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 137
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 138
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 139
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 140
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 141
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 142
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 143
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 144
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 145
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 146
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 147
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1366 MovieClip Frame 148
tellTarget ("/boss") {
nextFrame();
play();
};
tellTarget ("/boss_gun") {
nextFrame();
};
Symbol 1368 MovieClip Frame 1
stop();
Instance of Symbol 1375 MovieClip in Symbol 1376 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 1375 MovieClip in Symbol 1376 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 1376 MovieClip Frame 96
stop();
Instance of Symbol 292 MovieClip in Symbol 1394 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 292 MovieClip in Symbol 1394 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 292 MovieClip in Symbol 1394 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 292 MovieClip in Symbol 1394 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 292 MovieClip in Symbol 1394 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 292 MovieClip in Symbol 1394 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 292 MovieClip in Symbol 1394 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 284 MovieClip "chunk" in Symbol 1394 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 1394 MovieClip Frame 12
stop();
Symbol 1408 Button
on (release) {
gotoAndPlay (1920);
}
Symbol 1409 Button
on (release) {
gotoAndPlay (318);
}
Symbol 1411 Button
on (release) {
gotoAndPlay (5480);
}