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 3
stop();
Frame 143
Mouse.show();
Frame 275
stop();
Frame 334
Mouse.show();
Frame 1745
Mouse.show();
Frame 1756
numEnemy = 10;
numdropship = 5;
Instance of Symbol 225 MovieClip "thrust" in Frame 1757
onClipEvent (enterFrame) {
this._x = _root.spaceship._x + 0;
this._y = _root.spaceship._y + 10;
if (_root.spaceship._currentframe > 140) {
nextFrame();
}
}
Instance of Symbol 274 MovieClip "laser" in Frame 1757
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 322 MovieClip "player_dam" in Frame 1757
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 326 MovieClip "pw1" in Frame 1757
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 330 MovieClip "pw2" in Frame 1757
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 435 MovieClip "mis0" in Frame 1757
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 1790
Instance of Symbol 360 MovieClip "spaceship" in Frame 1798
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 570 MovieClip "enemy1" in Frame 2338
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 577 MovieClip "we1" in Frame 2338
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 577 MovieClip "we2" in Frame 2338
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 577 MovieClip "we3" in Frame 2338
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 577 MovieClip "we4" in Frame 2338
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 577 MovieClip "we5" in Frame 2338
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 570 MovieClip "enemy2" in Frame 2360
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 570 MovieClip "enemy3" in Frame 2388
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 570 MovieClip "enemy4" in Frame 2407
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 570 MovieClip "enemy5" in Frame 2429
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 577 MovieClip "we1" in Frame 2479
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 577 MovieClip "we2" in Frame 2479
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 577 MovieClip "we3" in Frame 2479
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 577 MovieClip "we6" in Frame 2479
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 577 MovieClip "we7" in Frame 2479
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 570 MovieClip "enemy1" in Frame 2479
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 570 MovieClip "enemy2" in Frame 2494
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 570 MovieClip "enemy3" in Frame 2507
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 570 MovieClip "enemy6" in Frame 2522
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 570 MovieClip "enemy7" in Frame 2536
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 580 MovieClip "enemy1" in Frame 2609
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 584 MovieClip "we1" in Frame 2609
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 577 MovieClip "we2" in Frame 2609
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 584 MovieClip "we3" in Frame 2609
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 570 MovieClip "enemy2" in Frame 2625
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 580 MovieClip "enemy3" in Frame 2640
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 584 MovieClip "we4" in Frame 2646
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 577 MovieClip "we5" in Frame 2646
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 584 MovieClip "we6" in Frame 2646
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 580 MovieClip "enemy4" in Frame 2646
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 593 MovieClip in Frame 2651
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 570 MovieClip "enemy5" in Frame 2667
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 580 MovieClip "enemy6" 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 610 MovieClip "powerup3" in Frame 2703
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 618 MovieClip "ds1" in Frame 2753
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 621 MovieClip "dropship1" in Frame 2753
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 625 MovieClip in Frame 2796
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 625 MovieClip in Frame 2813
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 625 MovieClip in Frame 2830
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 634 MovieClip "we1" in Frame 2858
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 634 MovieClip "we2" in Frame 2858
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 634 MovieClip "we3" in Frame 2858
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 636 MovieClip "enemy1" in Frame 2858
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 636 MovieClip "enemy2" in Frame 2881
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 636 MovieClip "enemy3" in Frame 2906
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 661 MovieClip "ds1" in Frame 2970
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 662 MovieClip in Frame 2970
onClipEvent (enterFrame) {
if (_root.ds1._currentframe == 2) {
nextFrame();
}
}
Instance of Symbol 675 MovieClip "ww1" in Frame 3026
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 680 MovieClip in Frame 3058
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 680 MovieClip in Frame 3075
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 690 MovieClip "ds2" in Frame 3110
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 610 MovieClip "powerup3" in Frame 3114
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 702 MovieClip "healthup" in Frame 3114
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 712 MovieClip "we1" in Frame 3120
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 712 MovieClip "we2" in Frame 3120
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 715 MovieClip "enemy1" in Frame 3122
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 715 MovieClip "enemy2" in Frame 3126
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 330 MovieClip "pw1" in Frame 3132
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 720 MovieClip in Frame 3175
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 720 MovieClip in Frame 3189
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 720 MovieClip in Frame 3203
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 727 MovieClip "we6" in Frame 3232
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 727 MovieClip "we7" in Frame 3232
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 727 MovieClip "we8" in Frame 3232
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 720 MovieClip in Frame 3265
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 738 MovieClip "ds4" in Frame 3359
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 738 MovieClip "ds5" in Frame 3359
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 738 MovieClip "ds1" in Frame 3359
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 739 MovieClip "dropship4" in Frame 3359
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 739 MovieClip "dropship5" in Frame 3385
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 739 MovieClip "dropship1" in Frame 3407
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 743 MovieClip "ds3" in Frame 3468
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 744 MovieClip "we1" in Frame 3468
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 744 MovieClip "we2" in Frame 3468
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 580 MovieClip "enemy1" in Frame 3490
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 767 MovieClip "ds2" in Frame 3496
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 770 MovieClip "dropship2" in Frame 3496
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 749 MovieClip "tg2" in Frame 3496
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 580 MovieClip "enemy2" in Frame 3514
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 610 MovieClip "powerup3" in Frame 3545
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 743 MovieClip "ds3" in Frame 3625
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 743 MovieClip "ds4" in Frame 3625
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 775 MovieClip in Frame 3630
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 712 MovieClip "we2" in Frame 3648
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 712 MovieClip "we1" in Frame 3648
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 712 MovieClip "we3" in Frame 3648
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 715 MovieClip "enemy1" in Frame 3648
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 715 MovieClip "enemy2" in Frame 3659
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 715 MovieClip "enemy3" in Frame 3669
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 610 MovieClip "powerup3" in Frame 3672
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 798 MovieClip "we2" in Frame 3817
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 798 MovieClip "we1" in Frame 3817
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 800 MovieClip "enemy1" in Frame 3819
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 800 MovieClip "enemy2" in Frame 3830
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 738 MovieClip "ds1" in Frame 3836
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 739 MovieClip "dropship1" in Frame 3839
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 743 MovieClip "ds3" in Frame 3864
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 743 MovieClip "ds2" in Frame 3864
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 746 MovieClip "dropship3" in Frame 3864
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 746 MovieClip "dropship2" in Frame 3891
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 746 MovieClip "dropship3" in Frame 3954
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 805 MovieClip "we3" in Frame 3955
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 805 MovieClip "we2" in Frame 3955
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 805 MovieClip "we1" in Frame 3955
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 810 MovieClip "enemy3" in Frame 3955
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 702 MovieClip "healthup" in Frame 3960
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 610 MovieClip "powerup3" in Frame 3960
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (this.hitTest(_root.spaceship)) {
nextFrame();
_root.powerbar.nextFrame();
}
}
}
Instance of Symbol 810 MovieClip "enemy2" in Frame 3990
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 810 MovieClip "enemy1" in Frame 4020
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 690 MovieClip "ds2" in Frame 4026
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 818 MovieClip in Frame 4076
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 818 MovieClip in Frame 4076
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 819 MovieClip "we1" in Frame 4090
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 819 MovieClip "we2" in Frame 4090
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 819 MovieClip "we3" in Frame 4090
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 570 MovieClip "enemy1" in Frame 4090
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 570 MovieClip "enemy2" in Frame 4103
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 1) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(1);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 25) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(25);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 50) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(50);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 75) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(75);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 100) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(100);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 125) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(125);
nextFrame();
}
}
}
if (_currentframe < 2) {
if (_root.spaceship._currentframe == 147) {
if (this.hitTest(_root.spaceship)) {
_root.spaceship.gotoAndPlay(147);
nextFrame();
}
}
}
}
Instance of Symbol 818 MovieClip in Frame 4108
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 818 MovieClip in Frame 4108
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 570 MovieClip "enemy3" in Frame 4112
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 720 MovieClip in Frame 4158
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 712 MovieClip "we2" in Frame 4181
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 712 MovieClip "we1" in Frame 4181
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 712 MovieClip "we3" in Frame 4181
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 715 MovieClip "enemy1" in Frame 4181
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 715 MovieClip "enemy3" in Frame 4181
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 715 MovieClip "enemy2" in Frame 4181
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 720 MovieClip in Frame 4182
onClipEvent (enterFrame) {
if (_root.ds2._currentframe == 1) {
nextFrame();
}
}
Instance of Symbol 712 MovieClip "we5" in Frame 4217
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 712 MovieClip "we4" in Frame 4217
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 712 MovieClip "we6" in Frame 4217
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 715 MovieClip "enemy6" in Frame 4217
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 715 MovieClip "enemy5" in Frame 4217
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 715 MovieClip "enemy4" in Frame 4217
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 743 MovieClip "ds3" in Frame 4236
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 743 MovieClip "ds4" in Frame 4236
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 743 MovieClip "ds1" in Frame 4236
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 746 MovieClip "dropship3" in Frame 4236
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 746 MovieClip "dropship1" in Frame 4236
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 746 MovieClip "dropship4" in Frame 4236
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 4490
gotoAndPlay (4530);
Frame 4504
gotoAndPlay (6214);
Frame 4505
prevFrame();
Instance of Symbol 898 MovieClip "flashlight" in Frame 4712
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 880 MovieClip "hand" in Frame 4712
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 901 MovieClip "flashy" in Frame 4712
onClipEvent (enterFrame) {
_x = (_x + (((_parent._xmouse - _x) + 70) * 0.2));
_y = (_y + (((_parent._ymouse - _y) + 70) * 0.2));
}
Instance of Symbol 932 MovieClip "gun" in Frame 4712
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 4737
stop();
Frame 4743
gotoAndPlay (4744);
Instance of Symbol 898 MovieClip "flashlight" in Frame 4744
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 880 MovieClip "hand" in Frame 4744
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 901 MovieClip "flashy" in Frame 4744
onClipEvent (enterFrame) {
_x = (_x + (((_parent._xmouse - _x) + 70) * 0.2));
_y = (_y + (((_parent._ymouse - _y) + 70) * 0.2));
}
Instance of Symbol 932 MovieClip "gun" in Frame 4744
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 1112 MovieClip "sd1" in Frame 4829
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 1112 MovieClip "sd2" in Frame 4829
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 4868
stop();
Instance of Symbol 1112 MovieClip "sd1" in Frame 4902
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 4929
stop();
Instance of Symbol 1147 MovieClip in Frame 5005
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
if (_currentframe < 5) {
nextFrame();
}
}
}
Instance of Symbol 1155 MovieClip in Frame 5005
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
if (_currentframe < 5) {
nextFrame();
}
}
}
Instance of Symbol 1200 MovieClip in Frame 5018
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
if (_currentframe < 10) {
nextFrame();
}
}
}
Instance of Symbol 1283 MovieClip "sd3" in Frame 5020
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 5062
stop();
Instance of Symbol 1287 MovieClip "sd4" in Frame 5076
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 1288 MovieClip "sd5" in Frame 5087
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 5104
stop();
Instance of Symbol 1112 MovieClip "sd1" in Frame 5181
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 1288 MovieClip "sd5" in Frame 5181
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 5209
stop();
Frame 5262
stop();
Frame 5274
gotoAndPlay (5305);
Instance of Symbol 225 MovieClip "thrust" in Frame 5305
onClipEvent (enterFrame) {
this._x = _root.spaceship._x + 0;
this._y = _root.spaceship._y + 10;
if (_root.spaceship._currentframe > 140) {
nextFrame();
}
}
Instance of Symbol 274 MovieClip "laser" in Frame 5305
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 322 MovieClip "player_dam" in Frame 5305
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 326 MovieClip "pw1" in Frame 5305
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 330 MovieClip "pw2" in Frame 5305
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 435 MovieClip "mis0" in Frame 5305
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 5312
numEnemy = 10;
numdropship = 5;
Instance of Symbol 360 MovieClip "spaceship" in Frame 5362
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 1392 MovieClip "b1" in Frame 5522
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 1393 MovieClip "dropship1" in Frame 5523
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 1395 MovieClip in Frame 5554
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 1395 MovieClip in Frame 5561
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 1395 MovieClip in Frame 5568
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 625 MovieClip in Frame 5602
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 625 MovieClip in Frame 5607
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 625 MovieClip in Frame 5611
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 625 MovieClip in Frame 5616
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 625 MovieClip in Frame 5622
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 1404 MovieClip in Frame 5877
onClipEvent (enterFrame) {
if (_root.boss_gun._currentframe == 1) {
nextFrame();
}
}
Frame 6067
gotoAndPlay (5526);
Frame 6106
gotoAndPlay (6132);
Frame 6129
gotoAndPlay (6379);
Frame 6130
prevFrame();
Frame 6213
gotoAndPlay (143);
Frame 6378
stop();
Frame 6543
stop();
Symbol 12 MovieClip Frame 1
bar.stop();
Symbol 19 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 63 Button
on (release) {
_root.play();
}
Symbol 64 MovieClip Frame 143
_root.play();
stop();
Symbol 97 MovieClip Frame 6
stop();
Symbol 98 Button
on (release) {
gotoAndPlay (2);
}
Symbol 108 Button
on (release) {
gotoAndPlay (20);
}
Symbol 109 Button
on (release) {
getURL ("http://invisionfree.com/forums/Adregalus_Forums", "_blank");
}
Symbol 110 Button
on (release) {
getURL ("http://omegadragon3000.sheezyart.com", "_blank");
}
Symbol 112 MovieClip Frame 1
stop();
Symbol 112 MovieClip Frame 2
if (_root.game._currentframe > 2) {
_root.game.gotoAndPlay(47);
}
Symbol 112 MovieClip Frame 14
stop();
Symbol 112 MovieClip Frame 30
gotoAndStop (1);
Symbol 114 Button
on (release) {
gotoAndPlay (2);
}
Symbol 117 Button
on (release) {
gotoAndPlay (47);
}
Symbol 118 Button
on (release) {
gotoAndPlay (31);
}
Symbol 119 Button
on (release) {
gotoAndPlay (20);
}
Symbol 120 Button
on (release) {
gotoAndPlay (40);
}
Symbol 132 Button
on (release) {
gotoAndStop (14);
}
Symbol 136 Button
on (release) {
nextFrame();
}
Symbol 138 Button
on (release) {
prevFrame();
}
Symbol 147 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 149 MovieClip Frame 1
stop();
Symbol 149 MovieClip Frame 2
if (_root.extras._currentframe > 2) {
_root.extras.gotoAndPlay(20);
}
Symbol 149 MovieClip Frame 14
stop();
Symbol 149 MovieClip Frame 25
stop();
Symbol 149 MovieClip Frame 35
stop();
Symbol 149 MovieClip Frame 45
stop();
Symbol 149 MovieClip Frame 59
gotoAndStop (1);
Symbol 152 Button
on (release) {
nextFrame();
play();
}
Symbol 155 Button
on (release) {
getURL ("http://www.gamesofgondor.com", "_blank");
}
Symbol 156 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 161 Button
on (release) {
gotoAndPlay (1556);
}
Symbol 163 Button
on (release) {
stop();
}
Symbol 165 Button
on (release) {
play();
}
Symbol 183 MovieClip Frame 24
gotoAndPlay (12);
Symbol 225 MovieClip Frame 1
stop();
Symbol 229 MovieClip Frame 2
stop();
Symbol 231 MovieClip Frame 2
stop();
Symbol 232 MovieClip Frame 1
stop();
Symbol 234 MovieClip Frame 2
stop();
Symbol 236 MovieClip Frame 1
stop();
Symbol 238 MovieClip Frame 2
stop();
Symbol 240 MovieClip Frame 1
stop();
Symbol 242 MovieClip Frame 2
stop();
Symbol 246 MovieClip Frame 1
stop();
Instance of Symbol 246 MovieClip in Symbol 247 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 246 MovieClip in Symbol 247 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 247 MovieClip Frame 28
stop();
Symbol 249 MovieClip Frame 2
stop();
Symbol 252 MovieClip Frame 1
stop();
Symbol 253 MovieClip Frame 1
stop();
Symbol 255 MovieClip Frame 1
stop();
Instance of Symbol 255 MovieClip in Symbol 256 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 256 MovieClip Frame 16
stop();
Symbol 258 MovieClip Frame 1
stop();
Symbol 260 MovieClip Frame 1
stop();
Instance of Symbol 260 MovieClip in Symbol 261 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 263 MovieClip Frame 2
stop();
Symbol 265 MovieClip Frame 1
stop();
Symbol 267 MovieClip Frame 1
stop();
Instance of Symbol 265 MovieClip in Symbol 268 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 265 MovieClip in Symbol 268 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 267 MovieClip in Symbol 268 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 267 MovieClip in Symbol 268 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 270 MovieClip Frame 2
stop();
Instance of Symbol 265 MovieClip in Symbol 273 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 265 MovieClip in Symbol 273 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 274 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 232 MovieClip in Symbol 274 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 234 MovieClip in Symbol 274 MovieClip Frame 1
onClipEvent (load) {
if (currentframe < 2) {
if (Key.isDown(67)) {
nextFrame();
}
stop();
}
stop();
}
onClipEvent (enterFrame) {
}
Symbol 274 MovieClip Frame 2
laserMoveSpeed = 25;
Instance of Symbol 236 MovieClip in Symbol 274 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 274 MovieClip Frame 3
laserMoveSpeed = 30;
Instance of Symbol 240 MovieClip in Symbol 274 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 240 MovieClip in Symbol 274 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 274 MovieClip Frame 5
laserMoveSpeed = 20;
Instance of Symbol 253 MovieClip in Symbol 274 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 253 MovieClip in Symbol 274 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 253 MovieClip in Symbol 274 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 274 MovieClip Frame 6
laserMoveSpeed = 30;
Instance of Symbol 258 MovieClip in Symbol 274 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 258 MovieClip in Symbol 274 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 258 MovieClip in Symbol 274 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 274 MovieClip Frame 7
laserMoveSpeed = 35;
Symbol 274 MovieClip Frame 8
laserMoveSpeed = 50;
Symbol 279 MovieClip Frame 17
stop();
Symbol 282 MovieClip Frame 24
gotoAndPlay (8);
Symbol 283 MovieClip Frame 18
stop();
Symbol 295 MovieClip Frame 65
stop();
Symbol 308 MovieClip Frame 13
stop();
Symbol 311 MovieClip Frame 58
stop();
Symbol 319 MovieClip Frame 30
stop();
Instance of Symbol 311 MovieClip "chunk" in Symbol 320 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 319 MovieClip in Symbol 320 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 311 MovieClip "chunk" in Symbol 320 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 319 MovieClip in Symbol 320 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 319 MovieClip in Symbol 320 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 311 MovieClip "chunk" in Symbol 320 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 319 MovieClip in Symbol 320 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 319 MovieClip in Symbol 320 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 311 MovieClip "chunk" in Symbol 320 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 320 MovieClip Frame 12
stop();
Symbol 322 MovieClip Frame 1
stop();
Symbol 322 MovieClip Frame 7
stop();
Instance of Symbol 279 MovieClip in Symbol 322 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 283 MovieClip in Symbol 322 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 322 MovieClip Frame 8
stop();
Instance of Symbol 284 MovieClip in Symbol 322 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 285 MovieClip in Symbol 322 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 286 MovieClip in Symbol 322 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 287 MovieClip in Symbol 322 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 292 MovieClip in Symbol 322 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 293 MovieClip in Symbol 322 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 324 MovieClip Frame 14
gotoAndPlay (11);
Symbol 325 MovieClip Frame 16
stop();
Symbol 326 MovieClip Frame 1
stop();
Symbol 329 MovieClip Frame 20
stop();
Symbol 330 MovieClip Frame 1
stop();
Symbol 331 MovieClip Frame 30
stop();
Symbol 332 MovieClip Frame 30
stop();
Symbol 333 MovieClip Frame 30
stop();
Symbol 334 MovieClip Frame 26
stop();
Symbol 335 MovieClip Frame 1
stop();
Symbol 360 MovieClip Frame 1
stop();
Instance of Symbol 335 MovieClip "p" in Symbol 360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p.gotoAndStop(5);
}
}
Symbol 360 MovieClip Frame 2
tellTarget ("/life") {
nextFrame();
};
Symbol 360 MovieClip Frame 25
stop();
Instance of Symbol 335 MovieClip "p1" in Symbol 360 MovieClip Frame 25
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p1.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p1.gotoAndStop(5);
}
}
Symbol 360 MovieClip Frame 26
tellTarget ("/life") {
nextFrame();
};
Symbol 360 MovieClip Frame 50
stop();
Instance of Symbol 335 MovieClip "p2" in Symbol 360 MovieClip Frame 50
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p2.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p2.gotoAndStop(5);
}
}
Symbol 360 MovieClip Frame 51
tellTarget ("/life") {
nextFrame();
};
Symbol 360 MovieClip Frame 75
stop();
Instance of Symbol 335 MovieClip "p3" in Symbol 360 MovieClip Frame 75
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p3.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p3.gotoAndStop(5);
}
}
Symbol 360 MovieClip Frame 76
tellTarget ("/life") {
nextFrame();
};
Symbol 360 MovieClip Frame 100
stop();
Instance of Symbol 335 MovieClip "p4" in Symbol 360 MovieClip Frame 100
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p4.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p4.gotoAndStop(5);
}
}
Symbol 360 MovieClip Frame 101
tellTarget ("/life") {
nextFrame();
};
Symbol 360 MovieClip Frame 125
stop();
Instance of Symbol 335 MovieClip "p5" in Symbol 360 MovieClip Frame 125
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.spaceship.p5.gotoAndStop(4);
}
if (Key.isDown(38)) {
_root.spaceship.p5.gotoAndStop(5);
}
}
Symbol 360 MovieClip Frame 126
tellTarget ("/life") {
nextFrame();
};
Symbol 360 MovieClip Frame 215
stop();
_root.gotoAndPlay("death");
Symbol 370 MovieClip Frame 6
stop();
Symbol 393 MovieClip Frame 1
stop();
Symbol 405 MovieClip Frame 1
stop();
Symbol 405 MovieClip Frame 10
stop();
Symbol 420 MovieClip Frame 12
stop();
Symbol 421 MovieClip Frame 1
stop();
Symbol 435 MovieClip Frame 1
stop();
Symbol 435 MovieClip Frame 2
play();
Instance of Symbol 431 MovieClip in Symbol 435 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 435 MovieClip Frame 67
gotoAndStop (1);
Symbol 440 Button
on (release) {
nextFrame();
stop();
}
Symbol 448 MovieClip Frame 6
stop();
Symbol 449 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 457 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 461 MovieClip Frame 84
stop();
Symbol 464 MovieClip Frame 88
stop();
Symbol 467 MovieClip Frame 79
stop();
Symbol 470 MovieClip Frame 73
stop();
Symbol 473 MovieClip Frame 85
stop();
Symbol 474 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 475 MovieClip Frame 1
stop();
Symbol 477 Button
on (release) {
prevFrame();
stop();
}
Symbol 478 MovieClip Frame 1
stop();
Symbol 544 MovieClip Frame 21
stop();
Symbol 570 MovieClip Frame 1
stop();
Symbol 570 MovieClip Frame 2
play();
Symbol 570 MovieClip Frame 11
stop();
Symbol 574 MovieClip Frame 8
stop();
Symbol 575 MovieClip Frame 24
stop();
Symbol 576 MovieClip Frame 1
stop();
Symbol 577 MovieClip Frame 1
stop();
Instance of Symbol 576 MovieClip "brass" in Symbol 577 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 576 MovieClip "brass" in Symbol 577 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 576 MovieClip "brass" in Symbol 577 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 580 MovieClip Frame 1
stop();
Symbol 580 MovieClip Frame 2
play();
Symbol 580 MovieClip Frame 10
stop();
Symbol 583 MovieClip Frame 11
stop();
Symbol 584 MovieClip Frame 1
stop();
Instance of Symbol 576 MovieClip "brass" in Symbol 584 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 576 MovieClip "brass" in Symbol 584 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 589 MovieClip Frame 1
stop();
Instance of Symbol 589 MovieClip in Symbol 590 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 591 MovieClip Frame 1
stop();
Symbol 593 MovieClip Frame 1
stop();
Symbol 604 MovieClip Frame 14
stop();
Symbol 609 MovieClip Frame 33
stop();
Symbol 610 MovieClip Frame 1
stop();
Symbol 614 MovieClip Frame 26
stop();
Instance of Symbol 311 MovieClip "chunk" in Symbol 615 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 319 MovieClip in Symbol 615 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 311 MovieClip "chunk" in Symbol 615 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 319 MovieClip in Symbol 615 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 319 MovieClip in Symbol 615 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 311 MovieClip "chunk" in Symbol 615 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 319 MovieClip in Symbol 615 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 319 MovieClip in Symbol 615 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 311 MovieClip "chunk" in Symbol 615 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 615 MovieClip Frame 12
stop();
Symbol 617 MovieClip Frame 21
stop();
Symbol 618 MovieClip Frame 1
stop();
Symbol 620 MovieClip Frame 11
stop();
Symbol 621 MovieClip Frame 1
stop();
Symbol 621 MovieClip Frame 8
play();
Symbol 621 MovieClip Frame 16
stop();
Symbol 623 MovieClip Frame 1
stop();
Instance of Symbol 623 MovieClip in Symbol 624 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 625 MovieClip Frame 1
stop();
Symbol 631 MovieClip Frame 13
stop();
Symbol 633 MovieClip Frame 1
stop();
Symbol 634 MovieClip Frame 1
stop();
Instance of Symbol 633 MovieClip "brass" in Symbol 634 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 633 MovieClip "brass" in Symbol 634 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 633 MovieClip "brass" in Symbol 634 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 636 MovieClip Frame 1
stop();
Symbol 636 MovieClip Frame 2
play();
Symbol 636 MovieClip Frame 8
stop();
Symbol 659 MovieClip Frame 26
stop();
Symbol 660 MovieClip Frame 15
stop();
Symbol 661 MovieClip Frame 1
stop();
Symbol 662 MovieClip Frame 1
stop();
Symbol 664 MovieClip Frame 1
stop();
Symbol 664 MovieClip Frame 4
stop();
Symbol 664 MovieClip Frame 9
stop();
Symbol 674 MovieClip Frame 24
gotoAndPlay (4);
Symbol 675 MovieClip Frame 1
stop();
Symbol 680 MovieClip Frame 1
stop();
Instance of Symbol 679 MovieClip in Symbol 680 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 689 MovieClip Frame 33
stop();
Symbol 690 MovieClip Frame 1
stop();
Symbol 695 MovieClip Frame 6
stop();
Symbol 696 MovieClip Frame 1
stop();
Symbol 696 MovieClip Frame 16
play();
Symbol 696 MovieClip Frame 20
stop();
Symbol 701 MovieClip Frame 33
stop();
Symbol 702 MovieClip Frame 1
stop();
Symbol 711 MovieClip Frame 14
stop();
Symbol 712 MovieClip Frame 1
stop();
Instance of Symbol 576 MovieClip "brass" in Symbol 712 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 576 MovieClip "brass" in Symbol 712 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 715 MovieClip Frame 1
stop();
Symbol 715 MovieClip Frame 10
stop();
Symbol 718 MovieClip Frame 1
stop();
Instance of Symbol 718 MovieClip in Symbol 719 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 718 MovieClip in Symbol 719 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 719 MovieClip Frame 59
stop();
Symbol 720 MovieClip Frame 1
stop();
Symbol 726 MovieClip Frame 14
stop();
Symbol 727 MovieClip Frame 1
stop();
Instance of Symbol 576 MovieClip "brass" in Symbol 727 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 576 MovieClip "brass" in Symbol 727 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 576 MovieClip "brass" in Symbol 727 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 729 MovieClip Frame 1
stop();
Symbol 729 MovieClip Frame 2
play();
Symbol 729 MovieClip Frame 10
stop();
Symbol 737 MovieClip Frame 18
stop();
Symbol 738 MovieClip Frame 1
stop();
Instance of Symbol 576 MovieClip "brass" in Symbol 738 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 576 MovieClip "brass" in Symbol 738 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 576 MovieClip "brass" in Symbol 738 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 739 MovieClip Frame 1
stop();
Symbol 739 MovieClip Frame 8
play();
Symbol 739 MovieClip Frame 12
stop();
Symbol 743 MovieClip Frame 1
stop();
Symbol 744 MovieClip Frame 1
stop();
Instance of Symbol 576 MovieClip "brass" in Symbol 744 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 576 MovieClip "brass" in Symbol 744 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 576 MovieClip "brass" in Symbol 744 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 576 MovieClip "brass" in Symbol 744 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 745 MovieClip Frame 5
stop();
Symbol 746 MovieClip Frame 1
stop();
Symbol 746 MovieClip Frame 4
play();
Symbol 746 MovieClip Frame 10
stop();
Symbol 749 MovieClip Frame 1
stop();
Symbol 765 MovieClip Frame 36
stop();
Symbol 766 MovieClip Frame 29
stop();
Symbol 767 MovieClip Frame 1
stop();
Symbol 769 MovieClip Frame 6
stop();
Symbol 770 MovieClip Frame 1
stop();
Symbol 770 MovieClip Frame 7
stop();
Symbol 775 MovieClip Frame 1
stop();
Instance of Symbol 788 MovieClip in Symbol 790 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 790 MovieClip Frame 29
stop();
Symbol 796 MovieClip Frame 26
stop();
Symbol 797 MovieClip Frame 9
stop();
Symbol 798 MovieClip Frame 1
stop();
Symbol 800 MovieClip Frame 1
stop();
Symbol 800 MovieClip Frame 10
stop();
Symbol 805 MovieClip Frame 1
stop();
Symbol 810 MovieClip Frame 1
stop();
Symbol 810 MovieClip Frame 2
play();
Symbol 810 MovieClip Frame 10
stop();
Symbol 815 MovieClip Frame 1
stop();
Instance of Symbol 815 MovieClip in Symbol 816 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 817 MovieClip Frame 36
stop();
Symbol 818 MovieClip Frame 1
stop();
Symbol 819 MovieClip Frame 1
stop();
Symbol 874 MovieClip Frame 10
stop();
Symbol 879 MovieClip Frame 1
stop();
Symbol 879 MovieClip Frame 10
gotoAndStop (1);
Symbol 880 MovieClip Frame 1
stop();
Symbol 880 MovieClip Frame 2
Symbol 880 MovieClip Frame 4
gotoAndStop (1);
Symbol 880 MovieClip Frame 60
gotoAndStop (1);
tellTarget ("/ammo") {
gotoAndStop (1);
};
Symbol 880 MovieClip Frame 75
stop();
Symbol 890 MovieClip Frame 1
stop();
Symbol 890 MovieClip Frame 7
gotoAndStop (1);
Symbol 898 MovieClip Frame 1
stop();
Symbol 898 MovieClip Frame 3
gotoAndStop (1);
Symbol 901 MovieClip Frame 1
stop();
Symbol 901 MovieClip Frame 4
gotoAndStop (1);
Symbol 903 Button
on (press) {
if (_root.hand._currentframe == 1) {
tellTarget ("fire") {
nextFrame();
};
tellTarget ("/hand") {
gotoAndPlay (2);
};
}
}
on (release) {
tellTarget ("fire") {
prevFrame();
};
}
Symbol 921 MovieClip Frame 18
stop();
Symbol 924 MovieClip Frame 1
play();
Symbol 924 MovieClip Frame 2
tellTarget ("/ammo") {
nextFrame();
};
tellTarget ("/hand") {
play();
};
tellTarget ("/ws") {
nextFrame();
};
tellTarget ("/flashy") {
gotoAndPlay (2);
};
Symbol 925 MovieClip Frame 1
stop();
Symbol 925 MovieClip Frame 2
stop();
Symbol 927 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 928 Button
on (keyPress "s") {
if (_root.hand._currentframe < 4) {
tellTarget ("/hand") {
gotoAndPlay (65);
};
}
if (_root.hand._currentframe == 75) {
tellTarget ("/hand") {
gotoAndPlay (76);
};
}
}
Symbol 932 MovieClip Frame 1
stop();
Symbol 938 MovieClip Frame 22
stop();
Symbol 942 MovieClip Frame 1
stop();
Symbol 969 MovieClip Frame 1
stop();
tellTarget ("/gun") {
gotoAndStop (1);
};
Symbol 969 MovieClip Frame 31
tellTarget ("/gun") {
nextFrame();
};
stop();
Symbol 969 MovieClip Frame 32
tellTarget ("/gun") {
nextFrame();
};
stop();
Symbol 973 MovieClip Frame 1
stop();
Symbol 973 MovieClip Frame 8
tellTarget ("/HUD") {
nextFrame();
};
Symbol 973 MovieClip Frame 16
tellTarget ("/HUD") {
nextFrame();
};
Symbol 973 MovieClip Frame 25
tellTarget ("/HUD") {
nextFrame();
};
Symbol 973 MovieClip Frame 35
tellTarget ("/HUD") {
nextFrame();
};
Symbol 973 MovieClip Frame 46
tellTarget ("/HUD") {
nextFrame();
};
Symbol 976 MovieClip Frame 4
stop();
Symbol 977 Button
on (release) {
nextFrame();
}
Symbol 1028 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 1028 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 1028 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 1029 MovieClip Frame 48
stop();
Symbol 1031 MovieClip Frame 11
stop();
Instance of Symbol 1031 MovieClip in Symbol 1032 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 1031 MovieClip in Symbol 1032 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 1031 MovieClip in Symbol 1032 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 1031 MovieClip in Symbol 1032 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 1032 MovieClip Frame 14
stop();
Symbol 1033 MovieClip Frame 33
stop();
Instance of Symbol 1030 MovieClip in Symbol 1033 MovieClip Frame 33
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol1") {
nextFrame();
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1033 MovieClip Frame 35
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol1") {
gotoAndStop (45);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1033 MovieClip Frame 37
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol1") {
gotoAndStop (55);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1033 MovieClip Frame 37
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol1") {
gotoAndStop (65);
};
}
}
Symbol 1033 MovieClip Frame 45
play();
Symbol 1033 MovieClip Frame 54
stop();
Symbol 1033 MovieClip Frame 55
play();
Symbol 1033 MovieClip Frame 64
stop();
Symbol 1033 MovieClip Frame 65
play();
Symbol 1033 MovieClip Frame 75
stop();
Symbol 1055 MovieClip Frame 44
stop();
_root.trigger.nextFrame();
Symbol 1090 MovieClip Frame 53
stop();
_root.trigger.nextFrame();
Symbol 1110 MovieClip Frame 48
stop();
_root.trigger.nextFrame();
Symbol 1113 MovieClip Frame 33
stop();
Instance of Symbol 1030 MovieClip in Symbol 1113 MovieClip Frame 33
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol2") {
nextFrame();
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1113 MovieClip Frame 39
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol2") {
gotoAndStop (45);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1113 MovieClip Frame 39
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol2") {
gotoAndStop (55);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1113 MovieClip Frame 39
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol2") {
gotoAndStop (65);
};
}
}
Symbol 1113 MovieClip Frame 45
play();
Symbol 1113 MovieClip Frame 54
stop();
Symbol 1113 MovieClip Frame 55
play();
Symbol 1113 MovieClip Frame 64
stop();
Symbol 1113 MovieClip Frame 65
play();
Symbol 1113 MovieClip Frame 75
stop();
Symbol 1115 MovieClip Frame 1
stop();
Symbol 1115 MovieClip Frame 3
_root.gotoAndPlay("move1");
Symbol 1120 MovieClip Frame 1
stop();
Symbol 1120 MovieClip Frame 2
_root.gotoAndPlay("move2");
Symbol 1139 MovieClip Frame 16
stop();
Symbol 1147 MovieClip Frame 1
stop();
Symbol 1155 MovieClip Frame 1
stop();
Symbol 1165 MovieClip Frame 6
stop();
Symbol 1169 MovieClip Frame 31
stop();
Symbol 1171 MovieClip Frame 1
stop();
Instance of Symbol 1030 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/lamp3") {
nextFrame();
};
}
}
Instance of Symbol 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1169 MovieClip in Symbol 1171 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 1172 MovieClip Frame 1
stop();
Instance of Symbol 1030 MovieClip in Symbol 1172 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/lamp1") {
nextFrame();
};
}
}
Instance of Symbol 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1169 MovieClip in Symbol 1172 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 1173 MovieClip Frame 1
stop();
Instance of Symbol 1030 MovieClip in Symbol 1173 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/lamp4") {
nextFrame();
};
}
}
Instance of Symbol 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1169 MovieClip in Symbol 1173 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 1174 MovieClip Frame 1
stop();
Instance of Symbol 1030 MovieClip in Symbol 1174 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/lamp2") {
nextFrame();
};
}
}
Instance of Symbol 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1169 MovieClip in Symbol 1174 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 1195 MovieClip Frame 34
stop();
Symbol 1199 MovieClip Frame 31
stop();
Symbol 1200 MovieClip Frame 1
stop();
Symbol 1200 MovieClip Frame 10
stop();
Instance of Symbol 1195 MovieClip in Symbol 1200 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 1195 MovieClip in Symbol 1200 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 1195 MovieClip in Symbol 1200 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 1195 MovieClip in Symbol 1200 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 1199 MovieClip in Symbol 1200 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 1199 MovieClip in Symbol 1200 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 1199 MovieClip in Symbol 1200 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 1203 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 1203 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 1204 MovieClip Frame 1
stop();
Symbol 1205 MovieClip Frame 11
stop();
Instance of Symbol 1030 MovieClip in Symbol 1205 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
nextFrame();
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1205 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
gotoAndStop (23);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1205 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
gotoAndStop (33);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1205 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
gotoAndStop (43);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1205 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol3") {
gotoAndStop (43);
};
}
}
Symbol 1205 MovieClip Frame 23
play();
Symbol 1205 MovieClip Frame 32
stop();
Symbol 1205 MovieClip Frame 33
play();
Symbol 1205 MovieClip Frame 42
stop();
Symbol 1205 MovieClip Frame 43
play();
Symbol 1205 MovieClip Frame 53
stop();
Symbol 1232 MovieClip Frame 54
stop();
_root.trigger.nextFrame();
Symbol 1268 MovieClip Frame 49
stop();
_root.trigger.nextFrame();
Symbol 1282 MovieClip Frame 36
stop();
_root.trigger.nextFrame();
Symbol 1283 MovieClip Frame 1
stop();
Symbol 1284 MovieClip Frame 1
stop();
Symbol 1284 MovieClip Frame 2
_root.gotoAndPlay("move3");
Symbol 1285 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 1285 MovieClip Frame 72
gotoAndPlay (18);
Symbol 1286 MovieClip Frame 11
stop();
Instance of Symbol 1030 MovieClip in Symbol 1286 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
nextFrame();
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1286 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
gotoAndStop (23);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1286 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
gotoAndStop (33);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1286 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
gotoAndStop (43);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1286 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol4") {
gotoAndStop (43);
};
}
}
Symbol 1286 MovieClip Frame 23
play();
Symbol 1286 MovieClip Frame 32
stop();
Symbol 1286 MovieClip Frame 33
play();
Symbol 1286 MovieClip Frame 42
stop();
Symbol 1286 MovieClip Frame 43
play();
Symbol 1286 MovieClip Frame 53
stop();
Symbol 1287 MovieClip Frame 1
stop();
Symbol 1288 MovieClip Frame 1
stop();
Symbol 1289 MovieClip Frame 11
stop();
Instance of Symbol 1030 MovieClip in Symbol 1289 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
nextFrame();
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1289 MovieClip Frame 13
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
gotoAndStop (23);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1289 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
gotoAndStop (33);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1289 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
gotoAndStop (43);
};
}
}
Instance of Symbol 1030 MovieClip in Symbol 1289 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hittest(_root.gun.fire.flare.damage)) {
tellTarget ("/sol5") {
gotoAndStop (43);
};
}
}
Symbol 1289 MovieClip Frame 23
play();
Symbol 1289 MovieClip Frame 32
stop();
Symbol 1289 MovieClip Frame 33
play();
Symbol 1289 MovieClip Frame 42
stop();
Symbol 1289 MovieClip Frame 43
play();
Symbol 1289 MovieClip Frame 53
stop();
Symbol 1290 MovieClip Frame 1
stop();
Symbol 1290 MovieClip Frame 3
_root.gotoAndPlay("move4");
Symbol 1291 MovieClip Frame 1
stop();
Symbol 1291 MovieClip Frame 3
_root.gotoAndPlay("move5");
Symbol 1293 Button
on (release) {
gotoAndPlay (4530);
}
Symbol 1294 Button
on (release) {
nextFrame();
play();
}
Symbol 1295 Button
on (release) {
gotoAndPlay (1745);
}
Symbol 1302 MovieClip Frame 414
stop();
Symbol 1344 Button
on (release) {
gotoAndStop (1);
}
Symbol 1347 Button
on (release) {
play();
}
Symbol 1350 Button
on (release) {
stop();
}
Symbol 1364 MovieClip Frame 6
stop();
Symbol 1365 MovieClip Frame 1
stop();
Symbol 1365 MovieClip Frame 17
gotoAndStop (2);
Symbol 1375 MovieClip Frame 1
stop();
Instance of Symbol 291 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 283 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 283 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 279 MovieClip in Symbol 1375 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 291 MovieClip in Symbol 1375 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 291 MovieClip in Symbol 1375 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 291 MovieClip in Symbol 1375 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 291 MovieClip in Symbol 1375 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 291 MovieClip in Symbol 1375 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 291 MovieClip in Symbol 1375 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 1375 MovieClip Frame 10
stop();
Symbol 1378 MovieClip Frame 1
stop();
Symbol 1391 MovieClip Frame 88
stop();
_root.gotoAndPlay("boss_dead");
Symbol 1392 MovieClip Frame 1
stop();
Symbol 1393 MovieClip Frame 2
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 3
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 4
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 5
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 6
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 7
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 8
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 9
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 10
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 11
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 12
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 13
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 14
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 15
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 16
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 17
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 18
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 19
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 20
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 21
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 22
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 23
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 24
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 25
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 26
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 27
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 28
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 29
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 30
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 31
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 32
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 33
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 34
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 35
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 36
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 37
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 38
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 39
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 40
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 1393 MovieClip Frame 41
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 42
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 43
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 44
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 45
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 46
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 47
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 48
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 49
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 50
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 51
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 52
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 53
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 54
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 55
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 56
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 57
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 58
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 59
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 60
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 61
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 62
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 63
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 64
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 65
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 66
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 67
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 68
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 69
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 70
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 1393 MovieClip Frame 71
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 72
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 73
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 74
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 75
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 76
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 77
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 78
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 79
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 80
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 81
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 82
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 83
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 84
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 85
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 86
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 87
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 88
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 89
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 90
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 91
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 92
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 93
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 94
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 95
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 96
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 97
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 98
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 99
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 100
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 1393 MovieClip Frame 101
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 102
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 103
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 104
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 105
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 106
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 107
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 108
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 109
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 110
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 111
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 112
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 113
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 114
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 115
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 116
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 117
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 118
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 119
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 120
tellTarget ("/boss/bblink") {
nextFrame();
};
tellTarget ("/boss") {
nextFrame();
};
Symbol 1393 MovieClip Frame 121
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 122
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 123
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 124
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 125
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 126
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 127
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 128
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 129
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 130
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 131
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 132
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 133
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 134
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 135
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 136
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 137
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 138
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 139
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 140
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 141
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 142
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 143
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 144
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 145
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 146
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 147
tellTarget ("/boss/bblink") {
nextFrame();
};
Symbol 1393 MovieClip Frame 148
tellTarget ("/boss") {
nextFrame();
play();
};
tellTarget ("/boss_gun") {
nextFrame();
};
Symbol 1395 MovieClip Frame 1
stop();
Instance of Symbol 1402 MovieClip in Symbol 1403 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 1402 MovieClip in Symbol 1403 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 1403 MovieClip Frame 96
stop();
Instance of Symbol 319 MovieClip in Symbol 1421 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 319 MovieClip in Symbol 1421 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 319 MovieClip in Symbol 1421 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 319 MovieClip in Symbol 1421 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 319 MovieClip in Symbol 1421 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 319 MovieClip in Symbol 1421 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 319 MovieClip in Symbol 1421 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 311 MovieClip "chunk" in Symbol 1421 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 1421 MovieClip Frame 12
stop();
Symbol 1435 Button
on (release) {
gotoAndPlay (1745);
}
Symbol 1436 Button
on (release) {
gotoAndPlay (143);
}
Symbol 1438 Button
on (release) {
gotoAndPlay (5305);
}