Frame 1
stop();
Instance of Symbol 4 MovieClip "size" in Frame 1
onClipEvent (load) {
total = int(_root.getBytesTotal());
}
onClipEvent (enterFrame) {
loaded = int(_root.getBytesLoaded());
percent = int((loaded / total) * 100);
_root.percent = percent + " %";
if (percent >= 100) {
tellTarget ("_root") {
play();
};
}
}
Frame 2
stop();
Frame 46
stop();
_root.s = 0;
_root.shield = 100;
_root.mine2.goToAndPLay(1);
_root.geam.goToAndStop(1);
_root.geam1.goToAndStop(1);
_root.geam2.goToAndStop(1);
_root.geam3.goToAndStop(1);
_root.geam4.goToAndStop(1);
_root.geam5.goToAndStop(1);
_root.geam6.goToAndStop(1);
_root.geam7.goToAndStop(1);
_root.geam8.goToAndStop(1);
_root.geam9.goToAndStop(1);
_root.geam10.goToAndStop(1);
Instance of Symbol 58 MovieClip "mine" in Frame 46
onClipEvent (load) {
if (_name != "mine") {
_x = ((Math.random() * 500) + 2);
_y = ((Math.random() * 350) + 2);
while (hitTest(_parent.tank)) {
_x = ((Math.random() * 500) + 2);
_y = ((Math.random() * 350) + 2);
}
}
}
onClipEvent (enterFrame) {
deltaX = _parent.tank._x - _x;
deltaY = _parent.tank._y - _y;
distance = Math.sqrt((deltax * deltaX) + (deltaY * deltaY));
if (distance < 30) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 150;
_parent["d" + _parent.d]._yscale = 150;
removeMovieClip(this);
}
}
Instance of Symbol 63 MovieClip "aimer" in Frame 46
onClipEvent (load) {
oldx = _x;
speed = 1;
go = true;
}
onClipEvent (enterFrame) {
rn = _root.firePower;
_x = (_x + speed);
if (((random(rn) + 1) == 2) and go) {
go = false;
} else if (_x > 600) {
_x = oldx;
_y = (random(300) + 20);
go = true;
} else if (!go) {
count = 1000 + (_root.count++);
_root.orb.duplicateMovieClip("orb1" + count, count++);
_root["orb1" + count]._x = this._x;
_root["orb1" + count]._y = this._y;
go = true;
}
}
Instance of Symbol 72 MovieClip "orb2" in Frame 46
onClipEvent (load) {
function difference() {
dx = _root.tank._x - _x;
dy = _root.tank._y - _y;
speed = 60;
a = _root.aimer.speed;
}
function hitCheck() {
if (this.hitTest(_root.tank) and flag) {
_root.shield--;
_root.tank.play();
electro.play();
}
}
flag = true;
difference();
}
onClipEvent (enterFrame) {
if (_name != "orb2") {
_rotation = (_rotation + 5);
_x = (_x + ((dx / speed) * a));
_y = (_y + ((dy / speed) * a));
if ((_x > 600) or (_x < -10)) {
removeMovieClip(this);
}
if ((_y > 550) or (_y < 0)) {
removeMovieClip(this);
}
hitCheck();
}
}
Instance of Symbol 72 MovieClip "orb1" in Frame 46
onClipEvent (load) {
function difference() {
dx = _root.tank._x - _x;
dy = _root.tank._y - _y;
speed = 60;
a = _root.aimer.speed;
}
function hitCheck() {
if (this.hitTest(_root.tank) and flag) {
_root.shield--;
_root.tank.play();
electro.play();
}
}
flag = true;
difference();
}
onClipEvent (enterFrame) {
if (_name != "orb1") {
_rotation = (_rotation + 5);
_x = (_x + ((dx / speed) * a));
_y = (_y + ((dy / speed) * a));
if ((_x > 600) or (_x < -10)) {
removeMovieClip(this);
}
if ((_y > 550) or (_y < 0)) {
removeMovieClip(this);
}
hitCheck();
}
}
Instance of Symbol 91 MovieClip "container" in Frame 46
onClipEvent (load) {
gravity = 0.5;
bulletcounter = 80;
ebulletcounter = 0;
_root.miss = 0;
stop = 0;
}
onClipEvent (enterFrame) {
_root.shieldbar._xscale = _root.shield;
if (_root.shield <= 0) {
_root.gotoAndStop("destroyed2");
}
}
Instance of Symbol 96 MovieClip "damagedGround" in Frame 46
onClipEvent (load) {
_alpha = 100;
}
onClipEvent (enterFrame) {
timer++;
if (timer > 150) {
_alpha = (_alpha - 2);
}
if (timer > 200) {
_visible = 0;
removeMovieClip(this);
}
}
Instance of Symbol 98 MovieClip "shot" in Frame 46
onClipEvent (load) {
if (String(_name) != "shot") {
cannonLength = 55;
turretpoint = _parent.tank._rotation + _parent.tank.turret._rotation;
angle = ((turretpoint / 360) * 2) * Math.PI;
xcomponent = cannonLength * Math.sin(angle);
ycomponent = (-cannonLength) * Math.cos(angle);
_x = (xcomponent + _parent.tank._x);
_y = (ycomponent + _parent.tank._y);
xmove = (xcomponent / cannonLength) * 10;
ymove = (ycomponent / cannonLength) * 10;
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["mine" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.mine.goToAndPlay(11);
removeMovieClip(_parent["mine" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam.goToAndStop(9);
removeMovieClip(_parent["geam" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam1" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam1.goToAndStop(9);
removeMovieClip(_parent["geam1" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam2" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam2.goToAndStop(9);
removeMovieClip(_parent["geam2" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam3" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam3.goToAndStop(9);
removeMovieClip(_parent["geam3" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam4" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam4.goToAndStop(9);
removeMovieClip(_parent["geam4" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam5" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam5.goToAndStop(9);
removeMovieClip(_parent["geam5" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam6" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam6.goToAndStop(9);
removeMovieClip(_parent["geam6" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam7" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam7.goToAndStop(9);
removeMovieClip(_parent["geam7" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam8" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam8.goToAndStop(9);
removeMovieClip(_parent["geam8" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam9" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam9.goToAndStop(9);
removeMovieClip(_parent["geam9" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["geam10" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.geam10.goToAndStop(9);
removeMovieClip(_parent["geam10" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["mine2" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.mine2.goToAndStop(39);
removeMovieClip(_parent["mine2" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["mine4" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.mine4.goToAndStop(30);
removeMovieClip(_parent["mine4" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
onClipEvent (enterFrame) {
if (String(_name) != "shot") {
_x = (_x + xmove);
_y = (_y + ymove);
if (_parent["mine3" + i].hitTest(_x, _y, true)) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_root.score = _root.score + 10;
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
_parent["d" + _parent.d]._xscale = 10;
_parent["d" + _parent.d]._yscale = 10;
_root.mine3.goToAndPlay(23);
removeMovieClip(_parent["mine3" + i]);
removeMovieClip(this);
}
timer++;
if (timer > 15) {
_parent.d++;
duplicateMovieClip (_parent.damagedGround, "d" + _parent.d, (_parent.d % 100) + 500);
_parent["d" + _parent.d]._x = _x;
_parent["d" + _parent.d]._y = _y;
removeMovieClip(this);
}
}
}
Instance of Symbol 111 MovieClip "tank" in Frame 46
onClipEvent (load) {
speed = 4;
}
onClipEvent (load) {
function change_room(dir) {
if (dir == "right") {
_root.gotoAndStop(_root._currentframe + 1);
}
}
vel_y = 0;
step = 25;
old_y = _y;
old_x = _x;
tf = _root._totalFrames;
lspeed = (rspeed = 2);
}
onClipEvent (enterFrame) {
if (_y > 500) {
_root.gotoAndPlay("Scene 1", 2);
_root.shield = _root.shield - 25;
_x = old_x;
_y = old_y;
_root.dead = false;
}
c = _root._currentFrame;
_root.frame = c;
_root.world.gotoAndStop(c);
if ((c == tf) and (_x > 500)) {
rspeed = 0;
} else {
rspeed = 4;
}
if ((c == 1) and (_x < 50)) {
lspeed = 0;
} else {
lspeed = 4;
}
if (this._x >= 540) {
this._x = 20;
change_room("right");
} else if (this._x <= 20) {
this._x = 53;
change_room("left");
}
if (Key.isDown(38) and (!jumping)) {
vel_y = 13;
jumping = true;
}
if (jumping) {
vel_y = vel_y - 1;
if (vel_y <= -13) {
vel_y = -13;
jumping = false;
}
this._y = this._y - vel_y;
}
if (Key.isDown(37) && (!Key.isDown(39))) {
_x = (_x - speed);
this.gotoAndStop("left");
_rotation = 270;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
_x = (_x + speed);
this.gotoAndStop("right");
_rotation = 90;
}
if (_root.dead) {
gotoAndPlay (48);
jumping = true;
}
if (Key.isDown(38) and (!jumping)) {
vel_y = 10;
jumping = true;
}
if (jumping) {
vel_y = vel_y - 1;
if (vel_y <= -10) {
vel_y = -10;
jumping = false;
}
this._y = this._y - vel_y;
}
if (!_root.dead) {
if (_root.world.hitTest(this._x, this._y + step, true)) {
step = 20;
vel_y = 0;
jumping = false;
hit = true;
} else {
hit = false;
}
}
if (!hit) {
jumping = true;
step = 25;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(35)) {
turret._rotation = turret._rotation - 6;
}
if (Key.isDown(34)) {
turret._rotation = turret._rotation + 6;
}
if (Key.isDown(32) && (shotTimer <= 0)) {
shotCount++;
duplicateMovieClip (_parent.shot, "shot" + shotCount, (shotCount % 100) + 1100);
shotTimer = 5;
}
shotTimer--;
if (!_root.land.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
_x = old_x;
_y = old_y;
_root.vitality = _root.vitality - 10;
}
}
onClipEvent (load) {
gotoAndPlay (47);
}
onClipEvent (enterFrame) {
if (Key.isDown(35)) {
turret._rotation = turret._rotation - 6;
}
if (Key.isDown(34)) {
turret._rotation = turret._rotation + 6;
}
if (Key.isDown(32) && (shotTimer <= 0)) {
shotCount++;
duplicateMovieClip (_parent.shot, "shot" + shotCount, (shotCount % 100) + 1100);
shotTimer = 5;
}
shotTimer--;
if (!_root.land.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
_x = old_x;
_y = old_y;
_root.vitality = _root.vitality - 10;
}
}
onClipEvent (load) {
gotoAndPlay (47);
}
Frame 47
_root.mine2.goToAndPLay(1);
_root.geam.goToAndStop(1);
_root.geam1.goToAndStop(1);
_root.geam2.goToAndStop(1);
_root.geam3.goToAndStop(1);
_root.geam4.goToAndStop(1);
_root.geam5.goToAndStop(1);
_root.geam6.goToAndStop(1);
_root.geam7.goToAndStop(1);
_root.geam8.goToAndStop(1);
_root.geam9.goToAndStop(1);
_root.geam10.goToAndStop(1);
Frame 48
_root.mine2.goToAndPLay(1);
_root.mine3.goToAndPLay(1);
_root.geam.goToAndStop(1);
_root.geam1.goToAndStop(1);
_root.geam2.goToAndStop(1);
_root.geam3.goToAndStop(1);
_root.geam4.goToAndStop(1);
_root.geam5.goToAndStop(1);
_root.geam6.goToAndStop(1);
_root.geam7.goToAndStop(1);
_root.geam8.goToAndStop(1);
_root.geam9.goToAndStop(1);
_root.geam10.goToAndStop(1);
Frame 49
_root.mine2.goToAndPLay(1);
_root.mine3.goToAndPLay(1);
_root.geam.goToAndStop(1);
_root.geam1.goToAndStop(1);
_root.geam2.goToAndStop(1);
_root.geam3.goToAndStop(1);
_root.geam4.goToAndStop(1);
_root.geam5.goToAndStop(1);
_root.geam6.goToAndStop(1);
_root.geam7.goToAndStop(1);
_root.geam8.goToAndStop(1);
_root.geam9.goToAndStop(1);
_root.geam10.goToAndStop(1);
Frame 50
_root.mine2.goToAndPLay(1);
_root.mine3.goToAndPLay(1);
_root.geam.goToAndStop(1);
_root.geam1.goToAndStop(1);
_root.geam2.goToAndStop(1);
_root.geam3.goToAndStop(1);
_root.geam4.goToAndStop(1);
_root.geam5.goToAndStop(1);
_root.geam6.goToAndStop(1);
_root.geam7.goToAndStop(1);
_root.geam8.goToAndStop(1);
_root.geam9.goToAndStop(1);
_root.geam10.goToAndStop(1);
Symbol 25 Button
on (release) {
gotoAndPlay (5);
_root.shield = 100;
}
Symbol 30 Button
on (release) {
gotoAndStop (3);
}
Symbol 31 Button
on (release) {
gotoAndStop (4);
}
Symbol 34 Button
on (release) {
gotoAndStop (2);
}
Symbol 58 MovieClip Frame 1
gotoAndPlay(random(9) + 1);
Symbol 58 MovieClip Frame 10
gotoAndPlay (2);
Symbol 58 MovieClip Frame 11
stop();
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 6
_parent.flag = false;
removeMovieClip(_parent);
Symbol 72 MovieClip Frame 2
stop();
Symbol 76 MovieClip Frame 1
Symbol 76 MovieClip Frame 8
gotoAndPlay (1);
Symbol 76 MovieClip Frame 9
stop();
Instance of Symbol 63 MovieClip "aimer" in Symbol 82 MovieClip Frame 36
onClipEvent (enterFrame) {
count = 1000 + (_root.count++);
_root.orb1.duplicateMovieClip("orb1" + count, count++);
_root["orb1" + count]._x = 360;
_root["orb1" + count]._y = 110;
go = true;
}
Symbol 82 MovieClip Frame 38
gotoAndPlay (1);
Instance of Symbol 63 MovieClip "aimer" in Symbol 82 MovieClip Frame 38
onClipEvent (enterFrame) {
count = 1000 + (_root.count++);
_root.orb1.duplicateMovieClip("orb1" + count, count++);
_root["orb1" + count]._x = (this._x = 600);
_root["orb1" + count]._y = (this._y = 300);
go = true;
}
Symbol 82 MovieClip Frame 39
stop();
_root.s = _root.s + 100;
Symbol 96 MovieClip Frame 4
stop();
_rotation = (Math.random() * 360);
Symbol 108 MovieClip Frame 11
gotoAndPlay (1);
Symbol 111 MovieClip Frame 1
stop();
Instance of Symbol 115 MovieClip in Symbol 117 MovieClip Frame 19
onClipEvent (enterFrame) {
count = 1000 + (_root.count++);
_root.orb1.duplicateMovieClip("orb1" + count, count++);
_root["orb1" + count]._x = 330;
_root["orb1" + count]._y = 310;
go = true;
}
Symbol 117 MovieClip Frame 22
gotoAndPlay (1);
Symbol 117 MovieClip Frame 26
stop();
stop();
_root.s = _root.s + 100;
Instance of Symbol 123 MovieClip in Symbol 125 MovieClip Frame 25
onClipEvent (enterFrame) {
count = 1000 + (_root.count++);
_root.orb1.duplicateMovieClip("orb1" + count, count++);
_root["orb1" + count]._x = 360;
_root["orb1" + count]._y = 310;
go = true;
}
Symbol 125 MovieClip Frame 29
gotoAndPlay (1);
Instance of Symbol 123 MovieClip in Symbol 125 MovieClip Frame 29
onClipEvent (enterFrame) {
count = 1000 + (_root.count++);
_root.orb1.duplicateMovieClip("orb1" + count, count++);
_root["orb1" + count]._x = 390;
_root["orb1" + count]._y = 110;
go = true;
}
Symbol 125 MovieClip Frame 30
stop();
_root.s = _root.s + 100;
Symbol 132 MovieClip Frame 34
gotoAndPlay (25);
Symbol 137 Button
on (press) {
gotoAndStop (46);
}
Symbol 138 Button
on (press) {
gotoAndPlay (5);
}
Symbol 143 Button
on (press) {
gotoAndPlay (5);
}