Frame 1 (183 B)
cV = 100;
colorA = 1;
hat = 1;
intro = true;
scoreA = 0;
timeA = 0;
easyA = true;
bgScen = true;
myMenu = new ContextMenu();
myMenu.hideBuiltInItems();
_root.menu = myMenu;
Frame 2 (26 B)
stopAllSounds();
stop();
Instance of Symbol 83 MovieClip in Frame 2 (79 B)
onClipEvent (load) {
if (_root.intro) {
} else {
_root.gotoAndPlay(4);
}
}
Instance of Symbol 71 MovieClip "trans" in Frame 3 (62 B)
onClipEvent (enterFrame) {
_x = _root._x;
_y = _root._y;
}
Instance of Symbol 86 MovieClip in Frame 3 (75 B)
onClipEvent (load) {
if (_root.intro) {
} else {
gotoAndStop (18);
}
}
Frame 4 (193 B)
bgMusic = new Sound(this);
bgMusic.attachSound("Gamer_82284");
bgMusic.start(0, 99);
onEnterFrame = function () {
_root.bgMusic.setVolume(_root.cV);
};
stop();
scoreA = 0;
timeA = 0;
Instance of Symbol 130 MovieClip "enemy1" in Frame 4 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 4 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 4 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 299 MovieClip in Frame 4 (105 B)
onClipEvent (load) {
var goBack = false;
}
onClipEvent (enterFrame) {
if (goBack) {
prevFrame();
}
}
Instance of Symbol 304 MovieClip "credit" in Frame 4 (42 B)
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 4 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 5 (13 B)
prevFrame();
Frame 6 (46 B)
stopAllSounds();
gotoAndPlay ("startTime");
Frame 13 (637 B)
bgMusic2 = new Sound(this);
bgMusic2.attachSound("REMIII_82572");
bgMusic2.start(0, 99);
_root.bgMusic.setVolume(_root.cV);
stop();
var Time = 0;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(40);
Instance of Symbol 194 MovieClip "rocket1" in Frame 13 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 13 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 13 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 13 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 13 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 13 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 13 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 4;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 13 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 13 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 14 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 40) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 15 (525 B)
stop();
var Time = _global.timeGlobal;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(30);
Instance of Symbol 194 MovieClip "rocket1" in Frame 15 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 15 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 15 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 15 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 15 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 15 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 15 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 4;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 15 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 15 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 16 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 30) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 17 (525 B)
stop();
var Time = _global.timeGlobal;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(50);
Instance of Symbol 194 MovieClip "rocket1" in Frame 17 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 17 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 17 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 17 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 17 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 17 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 17 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 4;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 17 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 17 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 18 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 50) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 19 (525 B)
stop();
var Time = _global.timeGlobal;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(40);
Instance of Symbol 194 MovieClip "rocket1" in Frame 19 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 19 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 19 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 19 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 19 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 19 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 19 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 4;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 19 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 19 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 20 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 40) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 21 (525 B)
stop();
var Time = _global.timeGlobal;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(60);
Instance of Symbol 194 MovieClip "rocket1" in Frame 21 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 21 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 21 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 21 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 21 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 21 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 21 (2.47 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 4;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 21 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 21 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 22 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 60) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 23 (45 B)
stop();
_root.timeEnd = _global.timeGlobal;
Instance of Symbol 130 MovieClip "enemy1" in Frame 23 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 23 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 23 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 23 (42 B)
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 395 MovieClip in Frame 23 (104 B)
onClipEvent (load) {
if (_root.easyA == true) {
_visible = true;
} else {
_visible = false;
}
}
Frame 24 (45 B)
stop();
_root.timeEnd = _global.timeGlobal;
Frame 33 (47 B)
stopAllSounds();
gotoAndPlay ("startScore");
Frame 40 (637 B)
bgMusic2 = new Sound(this);
bgMusic2.attachSound("REMIII_82572");
bgMusic2.start(0, 99);
_root.bgMusic.setVolume(_root.cV);
stop();
var Time = 0;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(40);
Instance of Symbol 194 MovieClip "rocket1" in Frame 40 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 40 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy5" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy6" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy7" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy8" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy9" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy10" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy11" in Frame 40 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 40 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 11;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 40 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 40 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 41 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 40) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 42 (525 B)
stop();
var Time = _global.timeGlobal;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(30);
Instance of Symbol 194 MovieClip "rocket1" in Frame 42 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 42 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy5" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy7" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy6" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy9" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy8" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy10" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy11" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy12" in Frame 42 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 42 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 12;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 42 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 42 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 43 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 30) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 44 (525 B)
stop();
var Time = _global.timeGlobal;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(50);
Instance of Symbol 194 MovieClip "rocket1" in Frame 44 (1.02 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 44 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy5" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy6" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy7" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy8" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy9" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy10" in Frame 44 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 44 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 10;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 44 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 44 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 45 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 50) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 46 (525 B)
stop();
var Time = _global.timeGlobal;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(40);
Instance of Symbol 194 MovieClip "rocket1" in Frame 46 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 46 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy5" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy6" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy9" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy8" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy7" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy11" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy10" in Frame 46 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 46 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 11;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 46 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 46 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 47 (303 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 40) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 48 (525 B)
stop();
var Time = _global.timeGlobal;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(60);
Instance of Symbol 194 MovieClip "rocket1" in Frame 48 (1 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreA = _root.scoreA + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreA = _root.scoreA - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 48 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy2" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy3" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy4" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy5" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy6" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy7" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy8" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy9" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy10" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy11" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy12" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy14" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy13" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy16" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy15" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy17" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy19" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy20" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 130 MovieClip "enemy18" in Frame 48 (723 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
if (!dead) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
} else {
_xscale = 100;
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 48 (2.51 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = _root.scoreA;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.045);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 20;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
_root.scoreMC.scoreNum = _root.scoreA;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
if (_root.scoreMC._currentframe > 2) {
_root.scoreMC.play();
}
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > 1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + (_root.scoreMC.combo1.combo2.combo3.comboNum * 2);
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
i = 1;
while (i <= enemyNumber) {
if (this.hitTest(_root["enemy" + i]) && (_root["enemy" + i]._currentframe < 3)) {
if ((_y < ((_root["enemy" + i]._y - _root["enemy" + i]._height) + 3)) && (sideJump == 0)) {
grav = -15;
_root["enemy" + i].dead = true;
} else {
if (_x < _root["enemy" + i]._x) {
sideJump = -10;
} else {
sideJump = 10;
}
grav = -10;
_root.scoreA = _root.scoreA - 1;
}
}
i++;
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 48 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 48 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 49 (364 B)
_global.score = _root.scoreMC.scoreNum;
_global.timeGlobal = _root.scoreMC.timeNum;
i = 2;
while (i <= 60) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
_global.score = _global.score - (_global.timeGlobal * 0.5);
play();
Frame 50 (41 B)
stop();
_root.scoreEnd = _global.score;
Instance of Symbol 130 MovieClip "enemy1" in Frame 50 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 50 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 50 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 50 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 51 (41 B)
stop();
_root.scoreEnd = _global.score;
Frame 62 (47 B)
stopAllSounds();
gotoAndPlay ("startCombo");
Frame 69 (657 B)
bgMusic2 = new Sound(this);
bgMusic2.attachSound("REMIII_82572");
bgMusic2.start(0, 99);
_root.bgMusic.setVolume(_root.cV);
stop();
stop();
stop();
var Time = 0;
var Interval = 30;
var countDown = Interval;
onEnterFrame = function () {
countDown--;
if (countDown < 0) {
Time++;
countDown = Interval;
}
_root.scoreMC.timeNum = Time;
};
function createRockets(numOfRockets) {
i = 2;
while (i <= numOfRockets) {
rocket1.duplicateMovieClip("rocket" + i, _root.getNextHighestDepth());
_root["rocket" + i].swapDepths(_root.ground);
_root["rocket" + i].swapDepths(_root.scoreMC);
i++;
}
}
createRockets(40);
Instance of Symbol 194 MovieClip "rocket1" in Frame 69 (1.04 KiB) ●
onClipEvent (load) {
function resetRocket() {
speed = (Math.random() * 5) + 5;
_y = _root.ground.spaceship._y;
_x = (Math.random() * stageW);
newXScale = Math.round(Math.random() * 1);
if (newXScale == 0) {
_xscale = 100;
} else {
_xscale = -100;
}
}
var speed = 0;
var greatestY = ((Stage.height + _height) + 5);
var stageW = Stage.width;
var newXScale = 0;
resetRocket();
}
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
_y = (_y + speed);
if (_y > greatestY) {
resetRocket();
}
if (_currentframe == 1) {
if (hitTest(_root.dot1.htbox)) {
if ((_y - 10) > _root.dot1._y) {
_root.dot1.grav = -20;
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum + Math.round(5 + (_root.scoreMC.combo1.combo2.combo3.comboNum / 2));
_root.scoreMC.combo1.combo2.play();
_root.scoreMC.combo1.combo2.combo3.comboNum++;
play();
} else {
_root.dot1.grav = 10;
_root.scoreMC.scoreNum = _root.scoreMC.scoreNum - 1;
play();
}
}
}
}
Instance of Symbol 106 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 104 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 106 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 310 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 102 MovieClip in Frame 69 (133 B)
onClipEvent (load) {
if (_root.bgScen == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 177 MovieClip "dot1" in Frame 69 (1.79 KiB) ●
onClipEvent (load) {
var speed = 8;
var jump = -15;
var grav = 0;
var jumpB = false;
var sideJump = 0;
_root.scoreMC.combo1.combo2.combo3.comboNum = 0;
_root.scoreMC.scoreNum = 0;
createEmptyMovieClip("boxCam", 2000);
with (boxCam) {
onLoad = function () {
_x = _root.dot1._x;
_y = _root.dot1._y;
CamX = _x;
CamY = _y;
};
onEnterFrame = function () {
_y = _root.dot1._y;
CamY = CamY + ((_y - CamY) * 0.3);
_root._y = ((Stage.height / 2) - CamY) + 100;
_root.scoreMC._y = CamY - 335;
_root.screenBox._y = CamY - 100;
_root.trans._y = CamY - 150;
};
}
hats.gotoAndStop(_root.hat);
gotoAndStop(_root.colorA);
enemyNumber = 0;
_root.trans.swapDepths(_root.getNextHighestDepth());
}
onClipEvent (enterFrame) {
if (grav < 15) {
grav++;
}
_y = (_y + grav);
while (_root.ground.hitTest(_x + 8.85, _y + 11.85, true) || (_root.ground.hitTest(_x - 8.85, _y + 11.85, true))) {
_y = (_y-1);
grav = 0;
jumpB = false;
}
if ((_root.scoreMC.combo1.combo2.combo3.comboNum > -1) && (_root.scoreMC._currentframe < 3)) {
_root.scoreMC.play();
}
if (Key.isDown(37)) {
_x = (_x - speed);
_xscale = -100;
} else if (Key.isDown(39)) {
_x = (_x + speed);
_xscale = 100;
}
if (Key.isDown(83) && (jumpB == false)) {
grav = jump;
jumpB = true;
}
if (_root.ground.hitTest(_x, _y - 13, true)) {
grav = 4;
}
if (_root.ground.hitTest(_x + 13.85, _y, true)) {
_x = (_x - speed);
} else if (_root.ground.hitTest(_x - 13.85, _y, true)) {
_x = (_x + speed);
}
if (_x < 13.85) {
_x = 13.85;
}
if (_x > 586.15) {
_x = 586.15;
}
if (this.hitTest(_root.ground.flag)) {
_root.trans.play();
_root.play();
}
if (sideJump != 0) {
_x = (_x + sideJump);
if (sideJump > 0) {
sideJump--;
} else {
sideJump++;
}
}
}
Instance of Symbol 349 MovieClip "scoreMC" in Frame 69 (54 B)
onClipEvent (load) {
this.swapDepths(_root.ground);
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 69 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 70 (279 B)
_global.score = _root.scoreMC.combo1.combo2.combo3.comboNum;
i = 2;
while (i <= 40) {
_root["rocket" + i].removeMovieClip();
i++;
}
_root.ground.removeMovieClip();
_root.scoreMC.removeMovieClip();
_root.dot1.removeMovieClip();
_root._x = 0;
_root._y = 0;
play();
Frame 71 (41 B)
stop();
_root.scoreEnd = _global.score;
Instance of Symbol 130 MovieClip "enemy1" in Frame 71 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 71 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 130 MovieClip "enemy1" in Frame 71 (659 B)
onClipEvent (load) {
var grav = 0;
var speed = -1;
var dead = false;
}
onClipEvent (enterFrame) {
this._x = this._x + speed;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x + 10, _y, true) || (_root.ground.hitTest(_x - 10, _y, true))) {
_y = (_y-1);
grav = 0;
}
if (_root.ground.hitTest(_x + 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if (_root.ground.hitTest(_x - 15, _y - 15, true)) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
if ((!_root.ground.hitTest(_x + 10, _y + 5, true)) || (!_root.ground.hitTest(_x - 10, _y + 5, true))) {
speed = speed * -1;
_xscale = (_xscale * -1);
}
}
Instance of Symbol 306 MovieClip "screenBox" in Frame 71 (42 B)
onClipEvent (load) {
_visible = false;
}
Frame 72 (41 B)
stop();
_root.scoreEnd = _global.score;
Symbol 10 MovieClip Frame 50 (8 B)
stop();
Symbol 49 Button (65 B)
on (release) {
getURL ("http://www.newgrounds.com", "_blank");
}
Symbol 58 Button (39 B)
on (release) {
_root.overlap.play();
}
Symbol 60 MovieClip Frame 1 (186 B)
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 60 MovieClip Frame 2 (17 B)
gotoAndPlay (1);
Symbol 63 MovieClip Frame 1 (8 B)
stop();
Symbol 63 MovieClip Frame 30 (14 B)
_root.play();
Symbol 71 MovieClip Frame 1 (8 B)
stop();
Symbol 439 MovieClip [__Packages.ab20] Frame 0 (5.89 KiB) ● ●
class ab20
{
function ab20 () {
}
static function fr(str, find, replace, limit) {
var _local2 = str;
var _local3;
var _local4;
var _local9;
if (!(typeof(find) === "string")) {
if (replace === undefined) {
replace = [""];
} else if (typeof(replace) === "string") {
replace = [replace];
}
} else {
find = [find];
replace = [replace];
}
_local9 = find.length;
var _local1 = 0;
var _local5 = 0;
while (_local1 < _local9) {
while (_local4 = _local2.indexOf(find[_local1]) , !(_local4 === -1)) {
if ((!(limit === undefined)) && (_local5 >= limit)) {
break;
}
_local3 = new Array(_local2.substring(0, _local4), _local2.substr(_local4, find[_local1].length), _local2.substr(_local4 + find[_local1].length));
_local3[1] = ((replace[_local1] === undefined) ? "" : (replace[_local1]));
_local2 = (_local3[0] + _local3[1]) + _local3[2];
_local5++;
}
_local1++;
_local5 = 0;
}
return(_local2);
}
static function encodeNum(num) {
var _local11 = getTimer();
var _local6 = ["aZ", "Zy", "Zx"];
var _local7 = ["zH", "jY", "uH"];
var _local4 = ["Ah", "Xh", "hO"];
var _local5 = ["Ub", "Bu", "Cb"];
var _local8 = ["Qc", "Pc", "Pe"];
var _local9 = ["Ei", "Ie", "Ef"];
var _local3 = ["Fk", "kG", "Kg"];
var _local13 = ["Jl", "Lm", "Mn"];
var _local12 = ["No", "Np", "Qp"];
var _local2 = ["Rs", "St", "Sw"];
var _local14 = random(3);
num = String(num);
num = fr(num, "9", _local6[random(3)], 1);
num = fr(num, "9", _local6[random(3)], 1);
num = fr(num, "9", _local6[random(3)], 1);
num = fr(num, "9", _local6[random(3)], 1);
num = fr(num, "9", _local6[random(3)], 1);
num = fr(num, "9", _local6[random(3)], 1);
num = fr(num, "8", _local7[random(3)], 1);
num = fr(num, "8", _local7[random(3)], 1);
num = fr(num, "8", _local7[random(3)], 1);
num = fr(num, "8", _local7[random(3)], 1);
num = fr(num, "8", _local7[random(3)], 1);
num = fr(num, "7", _local4[random(3)], 1);
num = fr(num, "7", _local4[random(3)], 1);
num = fr(num, "7", _local4[random(3)], 1);
num = fr(num, "7", _local4[random(3)], 1);
num = fr(num, "7", _local4[random(3)], 1);
num = fr(num, "7", _local4[random(3)], 1);
num = fr(num, "7", _local4[random(3)], 1);
num = fr(num, "7", _local4[random(3)], 1);
num = fr(num, "6", _local5[random(3)], 1);
num = fr(num, "6", _local5[random(3)], 1);
num = fr(num, "6", _local5[random(3)], 1);
num = fr(num, "6", _local5[random(3)], 1);
num = fr(num, "6", _local5[random(3)], 1);
num = fr(num, "6", _local5[random(3)], 1);
if (_local14 == 1) {
num = fr(num, "5", _local8[0]);
} else {
num = fr(num, "5", _local8[random(3)]);
}
num = fr(num, "4", _local9[random(3)]);
num = fr(num, "3", _local3[random(3)], 1);
num = fr(num, "3", _local3[random(3)], 1);
num = fr(num, "3", _local3[random(3)], 1);
num = fr(num, "3", _local3[random(3)], 1);
num = fr(num, "3", _local3[random(3)], 1);
num = fr(num, "3", _local3[random(3)], 1);
num = fr(num, "3", _local3[random(3)], 1);
num = fr(num, "3", _local3[random(3)], 1);
num = fr(num, "2", _local13[random(3)]);
num = fr(num, "1", _local12[random(3)]);
num = fr(num, "0", _local2[random(3)], 1);
num = fr(num, "0", _local2[random(3)], 1);
num = fr(num, "0", _local2[random(3)], 1);
num = fr(num, "0", _local2[random(3)], 1);
num = fr(num, "0", _local2[random(3)], 1);
num = fr(num, "0", _local2[random(3)], 1);
num = fr(num, "0", _local2[random(3)], 1);
num = fr(num, "0", _local2[random(3)], 1);
num = fr(num, "0", _local2[random(3)], 1);
var _local10 = getTimer() - _local11;
num = (num + "Dd") + _local10;
return(num);
}
static function encodeStr8bytes(str) {
var _local1 = 0;
var _local4 = str.length;
var _local3 = "%";
var _local2 = ["%", "$", "#", "@"];
while (_local1 < _local4) {
_local3 = _local3 + (str.charCodeAt(_local1) + _local2[random(_local2.length)]);
_local1++;
}
return(_local3);
}
static function decodeStr8bytes(str) {
str = ("PIE" + str) + "PIE";
str = fr(str, "%", "D");
str = fr(str, "$", "D");
str = fr(str, "#", "D");
str = fr(str, "@", "D");
str = fr(str, "PIED", "");
str = fr(str, "DPIE", "");
var _local3 = str.split("D");
var _local4 = "";
var _local1 = 0;
var _local5 = _local3.length;
while (_local1 < _local5) {
_local4 = _local4 + String(String.fromCharCode(_local3[_local1]));
_local1++;
}
return(_local4);
}
static function decodeNum(str) {
var _local2 = ["aZ", "Zy", "Zx", "zH", "jY", "uH", "Ah", "Xh", "hO", "Ub", "Bu", "Cb", "Qc", "Pc", "Pe", "Ei", "Ie", "Ef", "Fk", "kG", "Kg", "Jl", "Lm", "Mn", "No", "Np", "Qp", "Rs", "St", "Sw"];
str = String(str);
str = str.split("Dd");
str = str[0];
str = fr(str, _local2[0], "9");
str = fr(str, _local2[1], "9");
str = fr(str, _local2[2], "9");
str = fr(str, _local2[3], "8");
str = fr(str, _local2[4], "8");
str = fr(str, _local2[5], "8");
str = fr(str, _local2[6], "7");
str = fr(str, _local2[7], "7");
str = fr(str, _local2[8], "7");
str = fr(str, _local2[9], "6");
str = fr(str, _local2[10], "6");
str = fr(str, _local2[11], "6");
str = fr(str, _local2[12], "5");
str = fr(str, _local2[13], "5");
str = fr(str, _local2[14], "5");
str = fr(str, _local2[15], "4");
str = fr(str, _local2[16], "4");
str = fr(str, _local2[17], "4");
str = fr(str, _local2[18], "3");
str = fr(str, _local2[19], "3");
str = fr(str, _local2[20], "3");
str = fr(str, _local2[21], "2");
str = fr(str, _local2[22], "2");
str = fr(str, _local2[23], "2");
str = fr(str, _local2[24], "1");
str = fr(str, _local2[25], "1");
str = fr(str, _local2[26], "1");
str = fr(str, _local2[27], "0");
str = fr(str, _local2[28], "0");
str = fr(str, _local2[29], "0");
var _local3 = Number(str);
return(_local3);
}
}
Symbol 81 Button (61 B)
on (release) {
getURL ("http://www.wurmy.com/", "_blank");
}
Symbol 83 MovieClip Frame 141 (14 B)
_root.play();
Symbol 86 MovieClip Frame 18 (30 B)
stop();
_root.intro = false;
Symbol 94 Button (47 B)
on (release) {
_root.credit._visible = true;
}
Instance of Symbol 110 MovieClip in Symbol 111 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 111 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 111 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 111 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Symbol 130 MovieClip Frame 3 (35 B)
if (!dead) {
gotoAndPlay (1);
}
Symbol 130 MovieClip Frame 4 (34 B)
_root.scoreA = _root.scoreA + 20;
Symbol 130 MovieClip Frame 15 (8 B)
stop();
Instance of Symbol 118 MovieClip in Symbol 130 MovieClip Frame 15 (189 B)
onClipEvent (load) {
var alphaC = 100;
}
onClipEvent (enterFrame) {
if (alphaC > 5) {
_alpha = alphaC;
alphaC = alphaC - 5;
} else {
_alpha = 0;
this.removeMovieClip();
}
}
Symbol 134 Button (65 B)
on (release) {
getURL ("http://wurmy.com/news.php", ")BLANK");
}
Symbol 154 Button (25 B)
on (release) {
play();
}
Symbol 168 MovieClip Frame 1 (8 B)
stop();
Symbol 168 MovieClip Frame 2 (8 B)
stop();
Symbol 168 MovieClip Frame 3 (8 B)
stop();
Symbol 168 MovieClip Frame 4 (8 B)
stop();
Symbol 168 MovieClip Frame 5 (8 B)
stop();
Symbol 168 MovieClip Frame 6 (8 B)
stop();
Symbol 168 MovieClip Frame 7 (8 B)
stop();
Symbol 168 MovieClip Frame 8 (8 B)
stop();
Symbol 168 MovieClip Frame 9 (8 B)
stop();
Symbol 168 MovieClip Frame 10 (8 B)
stop();
Symbol 168 MovieClip Frame 11 (8 B)
stop();
Symbol 168 MovieClip Frame 12 (8 B)
stop();
Symbol 177 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 169 MovieClip "htbox" in Symbol 177 MovieClip Frame 1 (42 B)
onClipEvent (load) {
_visible = false;
}
Symbol 177 MovieClip Frame 2 (8 B)
stop();
Symbol 177 MovieClip Frame 3 (8 B)
stop();
Symbol 177 MovieClip Frame 4 (8 B)
stop();
Symbol 177 MovieClip Frame 5 (8 B)
stop();
Symbol 177 MovieClip Frame 6 (8 B)
stop();
Symbol 177 MovieClip Frame 7 (8 B)
stop();
Symbol 177 MovieClip Frame 8 (8 B)
stop();
Symbol 180 Button (30 B)
on (release) {
prevFrame();
}
Symbol 194 MovieClip Frame 1 (8 B)
stop();
Symbol 194 MovieClip Frame 30 (15 B)
resetRocket();
Symbol 204 MovieClip Frame 15 (8 B)
stop();
Instance of Symbol 118 MovieClip in Symbol 204 MovieClip Frame 15 (189 B)
onClipEvent (load) {
var alphaC = 100;
}
onClipEvent (enterFrame) {
if (alphaC > 5) {
_alpha = alphaC;
alphaC = alphaC - 5;
} else {
_alpha = 0;
this.removeMovieClip();
}
}
Symbol 207 MovieClip Frame 1 (8 B)
stop();
Symbol 207 MovieClip Frame 2 (8 B)
stop();
Symbol 207 MovieClip Frame 3 (8 B)
stop();
Symbol 207 MovieClip Frame 4 (8 B)
stop();
Symbol 207 MovieClip Frame 5 (8 B)
stop();
Symbol 211 Button (34 B)
on (release) {
gotoAndStop (1);
}
Symbol 215 MovieClip Frame 1 (8 B)
stop();
Symbol 215 MovieClip Frame 2 (8 B)
stop();
Symbol 218 MovieClip Frame 1 (8 B)
stop();
Symbol 221 MovieClip Frame 1 (8 B)
stop();
Symbol 223 Button (83 B)
on (release) {
dot.nextFrame();
if (_root.colorA < 8) {
_root.colorA++;
}
}
Symbol 224 Button (83 B)
on (release) {
dot.prevFrame();
if (_root.colorA > 1) {
_root.colorA--;
}
}
Symbol 228 Button (42 B)
on (release) {
_root._quality = "HIGH";
}
Symbol 232 Button (44 B)
on (release) {
_root._quality = "MEDIUM";
}
Symbol 236 Button (41 B)
on (release) {
_root._quality = "LOW";
}
Symbol 240 Button (37 B)
on (release) {
_root.easyA = true;
}
Symbol 244 Button (38 B)
on (release) {
_root.easyA = false;
}
Symbol 249 Button (33 B)
on (release) {
_root.cV = 100;
}
Symbol 254 Button (31 B)
on (release) {
_root.cV = 0;
}
Symbol 255 Button (38 B)
on (release) {
_root.bgScen = true;
}
Symbol 256 Button (39 B)
on (release) {
_root.bgScen = false;
}
Symbol 258 Button (79 B)
on (release) {
hats.nextFrame();
if (_root.hat < 12) {
_root.hat++;
}
}
Symbol 259 Button (78 B)
on (release) {
hats.prevFrame();
if (_root.hat > 1) {
_root.hat--;
}
}
Symbol 260 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 177 MovieClip "dot" in Symbol 260 MovieClip Frame 1 (50 B)
onClipEvent (load) {
gotoAndStop(_root.colorA);
}
Instance of Symbol 168 MovieClip "hats" in Symbol 260 MovieClip Frame 1 (47 B)
onClipEvent (load) {
gotoAndStop(_root.hat);
}
Symbol 261 MovieClip Frame 1 (8 B)
stop();
Symbol 261 MovieClip Frame 2 (8 B)
stop();
Symbol 261 MovieClip Frame 3 (8 B)
stop();
Symbol 261 MovieClip Frame 4 (8 B)
stop();
Symbol 261 MovieClip Frame 5 (8 B)
stop();
Symbol 262 Button (88 B)
on (release) {
if (instrucWin._currentframe < 2) {
instrucWin.gotoAndStop(2);
}
}
Symbol 263 Button (88 B)
on (release) {
if (instrucWin._currentframe < 2) {
instrucWin.gotoAndStop(6);
}
}
Symbol 264 Button (81 B)
on (release) {
if (instrucWin._currentframe < 2) {
gotoAndPlay ("go");
}
}
Symbol 278 Button (32 B)
on (release) {
goBack = true;
}
Symbol 279 Button (84 B)
on (release) {
if (instrucWin._currentframe < 2) {
gotoAndPlay ("combo");
}
}
Symbol 280 Button (84 B)
on (release) {
if (instrucWin._currentframe < 2) {
gotoAndPlay ("score");
}
}
Symbol 281 Button (83 B)
on (release) {
if (instrucWin._currentframe < 2) {
gotoAndPlay ("time");
}
}
Symbol 290 Button (124 B)
on (release) {
if (instrucWin._currentframe < 2) {
getURL ("http://www.armorbot.com/mytable/?id=1167", "_blank");
}
}
Symbol 291 Button (88 B)
on (release) {
if (instrucWin._currentframe < 2) {
instrucWin.gotoAndStop(4);
}
}
Symbol 292 Button (114 B)
on (release) {
if (instrucWin._currentframe < 2) {
_root.trans.play();
_root.gotoAndPlay("timeMode");
}
}
Symbol 293 Button (124 B)
on (release) {
if (instrucWin._currentframe < 2) {
getURL ("http://www.armorbot.com/mytable/?id=1186", "_blank");
}
}
Symbol 294 Button (88 B)
on (release) {
if (instrucWin._currentframe < 2) {
instrucWin.gotoAndStop(3);
}
}
Symbol 295 Button (115 B)
on (release) {
if (instrucWin._currentframe < 2) {
_root.trans.play();
_root.gotoAndPlay("scoreMode");
}
}
Symbol 296 Button (124 B)
on (release) {
if (instrucWin._currentframe < 2) {
getURL ("http://www.armorbot.com/mytable/?id=1187", "_blank");
}
}
Symbol 297 Button (88 B)
on (release) {
if (instrucWin._currentframe < 2) {
instrucWin.gotoAndStop(5);
}
}
Symbol 298 Button (115 B)
on (release) {
if (instrucWin._currentframe < 2) {
_root.trans.play();
_root.gotoAndPlay("comboMode");
}
}
Symbol 299 MovieClip Frame 1 (27 B)
backInst._visible = false;
Symbol 299 MovieClip Frame 31 (25 B)
stop();
goBack = false;
Symbol 299 MovieClip Frame 96 (25 B)
stop();
goBack = false;
Symbol 299 MovieClip Frame 150 (8 B)
stop();
Symbol 299 MovieClip Frame 151 (18 B)
gotoAndPlay (96);
Symbol 299 MovieClip Frame 205 (8 B)
stop();
Symbol 299 MovieClip Frame 206 (18 B)
gotoAndPlay (96);
Symbol 299 MovieClip Frame 260 (8 B)
stop();
Symbol 302 Button (48 B)
on (release) {
_root.credit._visible = false;
}
Symbol 304 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 169 MovieClip in Symbol 327 MovieClip Frame 1 (42 B)
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 169 MovieClip in Symbol 328 MovieClip Frame 1 (94 B)
onClipEvent (load) {
this.swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
Instance of Symbol 320 MovieClip "flag" in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 330 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 329 MovieClip "easy" in Symbol 330 MovieClip Frame 1 (132 B)
onClipEvent (load) {
if (_root.easyA == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Symbol 335 MovieClip Frame 1 (8 B)
stop();
Symbol 349 MovieClip Frame 1 (8 B)
stop();
Symbol 349 MovieClip Frame 15 (8 B)
stop();
Instance of Symbol 320 MovieClip "flag" in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 327 MovieClip in Symbol 355 MovieClip Frame 1 (132 B)
onClipEvent (load) {
if (_root.easyA == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 354 MovieClip "easy" in Symbol 355 MovieClip Frame 1 (132 B)
onClipEvent (load) {
if (_root.easyA == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 355 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 320 MovieClip "flag" in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 360 MovieClip "easy" in Symbol 361 MovieClip Frame 1 (132 B)
onClipEvent (load) {
if (_root.easyA == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 361 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 320 MovieClip "flag" in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 366 MovieClip "easy" in Symbol 367 MovieClip Frame 1 (132 B)
onClipEvent (load) {
if (_root.easyA == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 367 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 320 MovieClip "flag" in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 371 MovieClip "easy" in Symbol 373 MovieClip Frame 1 (132 B)
onClipEvent (load) {
if (_root.easyA == true) {
} else {
swapDepths(_root.getNextHighestDepth());
this.removeMovieClip();
}
}
Instance of Symbol 110 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 373 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Symbol 380 Button (323 B)
on (release) {
if (_root.easyA == false) {
if (_root.nameVar.value != "") {
ab20_09 = new LoadVars();
ab20_09.z = _root.nameVar;
ab20_09.x = ab20.encodeNum(_root.timeEnd);
ab20_09.c = 1167;
ab20_09.v = "OAGISU";
ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST");
_root.play();
}
}
}
Symbol 381 Button (80 B)
on (release) {
getURL ("http://www.armorbot.com/mytable/?id=1167", "_blank");
}
Symbol 385 Button (34 B)
on (release) {
gotoAndPlay (2);
}
Instance of Symbol 320 MovieClip "flag" in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 401 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 320 MovieClip "flag" in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 405 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 320 MovieClip "flag" in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 409 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 320 MovieClip "flag" in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 413 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 320 MovieClip "flag" in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 323 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 110 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 325 MovieClip in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 418 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Symbol 421 Button (277 B)
on (release) {
if (_root.nameVar != "") {
ab20_09 = new LoadVars();
ab20_09.z = _root.nameVar;
ab20_09.x = ab20.encodeNum(_root.scoreEnd);
ab20_09.c = 1186;
ab20_09.v = "QMYBOI";
ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST");
_root.play();
}
}
Symbol 422 Button (80 B)
on (release) {
getURL ("http://www.armorbot.com/mytable/?id=1186", "_blank");
}
Instance of Symbol 325 MovieClip in Symbol 430 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Instance of Symbol 10 MovieClip "spaceship" in Symbol 430 MovieClip Frame 1 (120 B)
onClipEvent (enterFrame) {
if (_root.screenBox.hitTest(this)) {
_visible = true;
} else {
_visible = false;
}
}
Symbol 430 MovieClip Frame 681 (8 B)
stop();
Symbol 433 Button (277 B)
on (release) {
if (_root.nameVar != "") {
ab20_09 = new LoadVars();
ab20_09.z = _root.nameVar;
ab20_09.x = ab20.encodeNum(_root.scoreEnd);
ab20_09.c = 1187;
ab20_09.v = "ZLEMSS";
ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST");
_root.play();
}
}
Symbol 434 Button (80 B)
on (release) {
getURL ("http://www.armorbot.com/mytable/?id=1187", "_blank");
}