Frame 147
stop();
Instance of Symbol 34 MovieClip "laser" in Frame 147
onClipEvent (load) {
laserMoveSpeed = 5;
this._x = _root.spaceship._x;
this._y = _root.spaceship._y;
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
this._x = this._x + laserMoveSpeed;
if (this._x > 610) {
_root.spaceship.laserCounter--;
this.removeMovieClip();
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
_root.score = _root.score + 100;
_root["enemy" + i].gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.enemy2)) {
_root.score = _root.score + 100;
_root.enemy2.gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.it)) {
_root.score = _root.score + 100;
_root.blood.nextFrame();
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.boss)) {
_root.score = _root.score + 100;
_root.boss.nextFrame();
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.it)) {
_root.flash.gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.boss)) {
_root.superblood.nextFrame();
}
i++;
}
}
}
Instance of Symbol 36 MovieClip in Frame 147
onClipEvent (load) {
Stage.showMenu = false;
}
Frame 148
stop();
Frame 149
numEnemy = 1;
i = 2;
while (i <= numEnemy) {
clouds.duplicateMovieClip("clouds" + i, i + 100);
i++;
}
stopAllSounds();
score = 0;
Instance of Symbol 50 MovieClip in Frame 149
onClipEvent (load) {
bg_move = 0.5;
}
onClipEvent (enterFrame) {
this._x = this._x - bg_move;
}
Instance of Symbol 53 MovieClip "health" in Frame 149
onClipEvent (load) {
Stage.showMenu = false;
}
Instance of Symbol 55 MovieClip "clouds" in Frame 149
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = 100;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -700) {
reset();
}
}
Frame 150
score = 0;
Instance of Symbol 62 MovieClip "stupid" in Frame 168
onClipEvent (enterFrame) {
moveSpeed = 10;
if (Key.isDown(39)) {
this._x = this._x + 15;
} else if (Key.isDown(37)) {
this._x = this._x - 15;
}
if (Key.isDown(40)) {
this._y = this._y + 15;
} else if (Key.isDown(38)) {
this._y = this._y - 15;
}
}
onClipEvent (enterFrame) {
if (_x > 560) {
_x = 560;
}
if (_x < 40) {
_x = 40;
}
if (_y > 370) {
_y = 370;
}
if (_y < 20) {
_y = 20;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(90)) {
_currentframe = 2;
play();
}
}
Instance of Symbol 28 MovieClip "spaceship" in Frame 168
onClipEvent (load) {
moveSpeed = 50;
_root.laser._visible = false;
laserCounter = 10;
maxLasers = 13;
depthCounter = 8;
}
onClipEvent (enterFrame) {
if (Key.isDown(90) and (laserCounter <= maxLasers)) {
laserCounter++;
_root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter);
_root["laser" + depthCounter]._visible = true;
depthCounter++;
if (depthCounter > maxLasers) {
depthCounter = 1;
}
}
if (Key.isDown(39)) {
this._x = this._x + 15;
} else if (Key.isDown(37)) {
this._x = this._x - 15;
}
if (Key.isDown(40)) {
this._y = this._y + 15;
} else if (Key.isDown(38)) {
this._y = this._y - 15;
}
if (Key.isDown(90)) {
_currentframe = 2;
play();
}
}
onClipEvent (enterFrame) {
if (_x > 560) {
_x = 560;
}
if (_x < 40) {
_x = 40;
}
if (_y > 370) {
_y = 370;
}
if (_y < 20) {
_y = 20;
}
}
Frame 188
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
numEnemy = 1;
i = 2;
while (i <= numEnemy) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
numEnemy = 1;
i = 2;
while (i <= numEnemy) {
enemy2.duplicateMovieClip("enemy2", i + 100);
i++;
}
stop();
Instance of Symbol 68 MovieClip "enemy1" in Frame 188
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = 20;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 70 MovieClip in Frame 188
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 10;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.nextFrame();
}
}
Frame 189
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
stop();
Instance of Symbol 80 MovieClip "enemy2" in Frame 189
onClipEvent (load) {
function reset() {
this._x = 600;
enemySpeed = 12;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
onClipEvent (enterFrame) {
_y = (sy + (150 * Math.cos((ang = ang + 0.092))));
}
Instance of Symbol 70 MovieClip in Frame 189
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 21;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.nextFrame();
}
}
Frame 190
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
stop();
Instance of Symbol 84 MovieClip in Frame 190
onClipEvent (load) {
function reset() {
this._x = 700;
enemySpeed = 3;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -200) {
nextFrame();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 91 MovieClip in Frame 190
onClipEvent (load) {
function reset() {
this._x = 700;
enemySpeed = 3;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -200) {
nextFrame();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 70 MovieClip in Frame 190
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 15;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.nextFrame();
}
}
Frame 191
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
numEnemy = 1;
i = 2;
while (i <= numEnemy) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
stop();
Instance of Symbol 80 MovieClip "enemy2" in Frame 191
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(200);
enemySpeed = random(12) + 7;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 97 MovieClip in Frame 191
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = 20;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -20) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 70 MovieClip in Frame 191
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 35;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.nextFrame();
}
}
Frame 192
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
stop();
Instance of Symbol 99 MovieClip "death" in Frame 192
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = random(20) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -400) {
reset();
}
if (this.hitTest(_root.stupid)) {
_root.gotoAndPlay("gameover");
}
}
Instance of Symbol 109 MovieClip "boss" in Frame 192
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -400) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 70 MovieClip in Frame 192
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 20;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.Play();
}
}
Instance of Symbol 116 MovieClip in Frame 202
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Frame 211
stop();
Instance of Symbol 137 MovieClip "beam" in Frame 211
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Frame 212
stop();
Instance of Symbol 146 MovieClip "recover" in Frame 212
onClipEvent (load) {
function reset() {
enemySpeed = 4;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
}
onClipEvent (enterFrame) {
_y = (sy + (150 * Math.cos((ang = ang + 0.092))));
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
gotoAndStop (1);
};
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
nextFrame();
}
}
Instance of Symbol 152 MovieClip in Frame 212
onClipEvent (load) {
_root.score = _root.score + 100000;
}
Frame 213
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
numEnemy = 1;
i = 2;
while (i <= numEnemy) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
stop();
Instance of Symbol 157 MovieClip "enemy1" in Frame 213
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = random(27) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 157 MovieClip "enemy2" in Frame 213
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = random(27) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 157 MovieClip "enemy3" in Frame 213
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = random(27) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 157 MovieClip "enemy4" in Frame 213
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = random(27) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 70 MovieClip in Frame 213
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 40;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.NextFrame();
}
}
Frame 214
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
numEnemy = 4;
i = 2;
while (i <= numEnemy) {
enemy1.duplicateMovieClip("enemy" + i, i + 100);
i++;
}
stop();
Instance of Symbol 160 MovieClip in Frame 214
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
onClipEvent (load) {
bg_move = 1;
}
onClipEvent (enterFrame) {
this._x = this._x - bg_move;
}
Instance of Symbol 160 MovieClip in Frame 214
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
onClipEvent (load) {
bg_move = 1;
}
onClipEvent (enterFrame) {
this._x = this._x - bg_move;
}
Instance of Symbol 160 MovieClip in Frame 214
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
onClipEvent (load) {
bg_move = 1;
}
onClipEvent (enterFrame) {
this._x = this._x - bg_move;
}
Instance of Symbol 160 MovieClip in Frame 214
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
onClipEvent (load) {
bg_move = 1;
}
onClipEvent (enterFrame) {
this._x = this._x - bg_move;
}
Instance of Symbol 168 MovieClip in Frame 214
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
}
onClipEvent (load) {
function reset() {
this._y = 530;
this._x = random(600);
enemySpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._y = this._y - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._y = this._y - enemySpeed;
}
if (this._y < -350) {
reset();
}
}
Instance of Symbol 168 MovieClip in Frame 214
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
}
onClipEvent (load) {
function reset() {
this._y = 550;
this._x = random(600);
enemySpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._y = this._y - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._y = this._y - enemySpeed;
}
if (this._y < -350) {
reset();
}
}
Instance of Symbol 168 MovieClip in Frame 214
onClipEvent (enterFrame) {
if (this.hitTest(_root.spaceship)) {
play();
}
}
onClipEvent (load) {
function reset() {
this._y = 510;
this._x = random(3600);
enemySpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._y = this._y - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._y = this._y - enemySpeed;
}
if (this._y < -350) {
reset();
}
}
Instance of Symbol 70 MovieClip in Frame 214
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 80;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.NextFrame();
}
}
Frame 215
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
stop();
Instance of Symbol 172 MovieClip "enemy1" in Frame 215
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = random(10) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 157 MovieClip "enemy4" in Frame 215
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = random(27) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 172 MovieClip "enemy2" in Frame 215
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = random(10) + 5;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -70) {
reset();
}
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Instance of Symbol 70 MovieClip in Frame 215
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 20;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.NextFrame();
}
}
Frame 216
function cntdwn() {
_root.timerthing = _root.timerthing - 1;
}
_root.timerthing = 500;
asslick = setInterval(cntdwn, 1000);
stop();
Instance of Symbol 146 MovieClip "recover" in Frame 216
onClipEvent (load) {
function reset() {
this._x = 600;
enemySpeed = 4;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
}
onClipEvent (enterFrame) {
_y = (sy + (150 * Math.cos((ang = ang + 0.092))));
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
stopAllSounds();
tellTarget ("_parent.Health") {
gotoAndStop (1);
};
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
play();
}
}
Instance of Symbol 70 MovieClip in Frame 216
onClipEvent (load) {
startseconds = getTimer() / 1000;
endAt = 5;
}
onClipEvent (enterFrame) {
if ((getTimer() / 1000) > (startseconds + endAt)) {
_root.NextFrame();
}
}
Frame 220
stopAllSounds();
Instance of Symbol 192 MovieClip "monster" in Frame 230
onClipEvent (enterFrame) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Frame 236
stop();
Frame 237
stopAllSounds();
Frame 238
stop();
Instance of Symbol 203 MovieClip in Frame 238
onClipEvent (load) {
_root.score = _root.score + 1000000;
}
Frame 239
stopAllSounds();
Frame 257
stop();
Frame 280
gotoAndStop (286);
Frame 283
stopAllSounds();
Frame 284
stop();
Frame 285
stop();
Frame 286
play();
Frame 1132
stop();
Instance of Symbol 55 MovieClip "clouds" in Frame 1132
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(370);
enemySpeed = 100;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.spaceship.scrollStart) {
this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed);
} else {
this._x = this._x - enemySpeed;
}
if (this._x < -700) {
reset();
}
}
Symbol 9 Button
on (release) {
_root.play();
}
Symbol 10 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop (3);
}
Symbol 10 MovieClip Frame 2
gotoAndPlay (1);
Instance of Symbol 25 MovieClip in Symbol 27 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root["enemy" + i])) {
_root["enemy" + i].gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.it)) {
_root.blood.nextFrame();
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.boss)) {
_root.boss.nextFrame();
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.it)) {
_root.flash.gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndPlay(2);
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.monster)) {
_root.superblood.nextFrame();
}
i++;
}
}
}
onClipEvent (enterFrame) {
if (this._name != "laser") {
i = 1;
while (i <= _root.numEnemy) {
if (this.hitTest(_root.monster)) {
_root.monster.nextFrame();
}
i++;
}
}
}
Symbol 28 MovieClip Frame 1
stop();
Symbol 28 MovieClip Frame 12
gotoAndStop (1);
Symbol 38 Button
on (press) {
gotoAndPlay (149);
}
Symbol 41 Button
on (press) {
nextFrame();
}
Symbol 43 Button
on (release) {
if ((i++) >= 2) {
i = 0;
}
_quality = ["HIGH", "MEDIUM", "LOW"][i];
}
Symbol 48 Button
on (press) {
gotoAndPlay (147);
}
Symbol 53 MovieClip Frame 1
stop();
Symbol 53 MovieClip Frame 50
_root.gotoAndPlay("gameover");
Symbol 62 MovieClip Frame 1
stop();
Symbol 62 MovieClip Frame 12
gotoAndPlay (1);
Symbol 68 MovieClip Frame 1
stop();
Instance of Symbol 64 MovieClip in Symbol 68 MovieClip Frame 2
onClipEvent (load) {
_root.score = _root.score + 100;
}
Symbol 68 MovieClip Frame 6
stop();
Symbol 80 MovieClip Frame 1
stop();
Instance of Symbol 79 MovieClip in Symbol 80 MovieClip Frame 2
onClipEvent (load) {
_root.score = _root.score + 100;
}
Symbol 80 MovieClip Frame 7
stop();
Instance of Symbol 89 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
if (this.hitTest(_root.stupid)) {
tellTarget ("_parent.Health") {
nextFrame();
};
}
}
Symbol 101 MovieClip Frame 1
stop();
Symbol 103 MovieClip Frame 2
stop();
Symbol 104 MovieClip Frame 2
stop();
Symbol 105 MovieClip Frame 2
stop();
Symbol 109 MovieClip Frame 1
stop();
Symbol 109 MovieClip Frame 2
stop();
Symbol 109 MovieClip Frame 3
stop();
Symbol 109 MovieClip Frame 4
stop();
Symbol 109 MovieClip Frame 5
play();
Instance of Symbol 107 MovieClip in Symbol 109 MovieClip Frame 5
onClipEvent (load) {
_root.score = _root.score + 500;
}
Symbol 109 MovieClip Frame 6
stop();
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 26
tellTarget ("_parent.") {
nextFrame();
};
Symbol 140 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 2
stop();
_root.score = _root.score + 50;
Symbol 152 MovieClip Frame 131
tellTarget ("_parent.") {
nextFrame();
};
Symbol 157 MovieClip Frame 1
stop();
Instance of Symbol 154 MovieClip in Symbol 157 MovieClip Frame 3
onClipEvent (load) {
_root.score = _root.score + 100;
}
Symbol 157 MovieClip Frame 7
stop();
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 55
stop();
Symbol 172 MovieClip Frame 1
stop();
Symbol 172 MovieClip Frame 2
_root.score = _root.score + 200;
Symbol 172 MovieClip Frame 5
stop();
Symbol 192 MovieClip Frame 1
stop();
Instance of Symbol 191 MovieClip in Symbol 192 MovieClip Frame 1
onClipEvent (enterFrame) {
_y = (sy + (100 * Math.cos((ang = ang + 0.092))));
}
Symbol 195 MovieClip Frame 1
stop();
Symbol 195 MovieClip Frame 762
tellTarget ("_parent.") {
play();
};
Symbol 203 MovieClip Frame 116
_root.Play();
Symbol 205 MovieClip Frame 203
_root.Play();
Symbol 214 MovieClip Frame 121
_root.Play();
Symbol 216 Button
on (press) {
gotoAndPlay (149);
}