Frame 1
stop();
Stage.showMenu = false;
Instance of Symbol 2 MovieClip "loading" in Frame 1
onClipEvent (load) {
var procent:Number;
}
onClipEvent (enterFrame) {
procent = int((_parent.getBytesLoaded() / _parent.getBytesTotal()) * 100);
if (_parent.getBytesLoaded() == _parent.getBytesTotal()) {
_parent.nextFrame();
}
}
Instance of Symbol 18 MovieClip "ship" in Frame 2
onClipEvent (enterFrame) {
if (0 < timer) {
timer--;
}
if (Key.isDown(32) && (timer == 0)) {
timer = 3;
if (_root.shot1.alive == 0) {
with (_root.shot1) {
xv = 15 * Math.sin((Math.PI/180) * this.angle);
yv = -15 * Math.cos((Math.PI/180) * this.angle);
alive = 15;
}
setProperty(_root.shot1, _x , this._x);
setProperty(_root.shot1, _y , this._y);
} else if (_root.shot2.alive == 0) {
with (_root.shot2) {
xv = 15 * Math.sin((Math.PI/180) * this.angle);
yv = -15 * Math.cos((Math.PI/180) * this.angle);
alive = 15;
}
setProperty(_root.shot2, _x , this._x);
setProperty(_root.shot2, _y , this._y);
} else if (_root.shot3.alive == 0) {
with (_root.shot3) {
xv = 15 * Math.sin((Math.PI/180) * this.angle);
yv = -15 * Math.cos((Math.PI/180) * this.angle);
alive = 15;
}
setProperty(_root.shot3, _x , this._x);
setProperty(_root.shot3, _y , this._y);
} else if (_root.shot4.alive == 0) {
with (_root.shot4) {
xv = 15 * Math.sin((Math.PI/180) * this.angle);
yv = -15 * Math.cos((Math.PI/180) * this.angle);
alive = 15;
}
setProperty(_root.shot4, _x , this._x);
setProperty(_root.shot4, _y , this._y);
}
}
if (Key.isDown(39)) {
torque = 5;
} else if (Key.isDown(37)) {
torque = -5;
} else {
torque = 0;
}
}
onClipEvent (load) {
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
xv = 0;
x = 0;
y = 0;
yv = 0;
xa = 0;
ya = 0;
v = 0;
visc = 0.02;
drag = 0;
score = 0;
timer = 0;
}
onClipEvent (enterFrame) {
rtorque = 0.5 * AngVelocity;
AngAcceleration = torque - rtorque;
AngVelocity = AngVelocity + AngAcceleration;
angle = angle + AngVelocity;
if (angle < 0) {
angle = angle + 360;
}
if (360 < angle) {
angle = angle - 360;
}
v = Math.sqrt((xv * xv) + (yv * yv));
drag = visc * v;
if (Key.isDown(38)) {
force = 1;
gotoAndStop (2);
} else {
force = 0;
gotoAndStop (1);
}
xa = ((drag * xv) * -1) + (force * Math.sin((Math.PI/180) * angle));
ya = ((drag * yv) * -1) - (force * Math.cos((Math.PI/180) * angle));
xv = xv + xa;
yv = yv + ya;
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_y = (_y + yv);
_x = (_x + xv);
_rotation = angle;
}
Instance of Symbol 43 MovieClip "rock1" in Frame 3
onClipEvent (load) {
alive = 1;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = (500 * Math.random());
if ((_x < 20) || (480 < _x)) {
_y = (400 * Math.random());
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock1m1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock1m2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 45;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock1m1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock1m1s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock1m1s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock1m2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 10;
_y = 10;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock1m2s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock1m2s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock2" in Frame 3
onClipEvent (load) {
alive = 1;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = (500 * Math.random());
if ((_x < 20) || (480 < _x)) {
_y = (400 * Math.random());
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock2m1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock2m2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 45;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock2m1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock2m1s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock2m1s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock2m2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock2m2s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock2m2s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock1m1s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock1m1s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock1m2s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock1m2s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock2m1s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock2m1s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock2m2s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock2m2s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock3" in Frame 3
onClipEvent (load) {
alive = 1;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = (500 * Math.random());
if ((_x < 20) || (480 < _x)) {
_y = (400 * Math.random());
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock3m1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock3m2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 45;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock3m1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock3m1s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock3m1s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock3m2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock3m2s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock3m2s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock3m1s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock3m1s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock3m2s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock3m2s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock4" in Frame 3
onClipEvent (load) {
alive = 1;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = (500 * Math.random());
if ((_x < 20) || (480 < _x)) {
_y = (400 * Math.random());
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock4m1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock4m2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 45;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock4m1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock4m1s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock4m1s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock4m2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 10;
_y = 10;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock4m2s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock4m2s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock4m1s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock4m1s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock4m2s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock4m2s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock5" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = (500 * Math.random());
if ((_x < 20) || (480 < _x)) {
_y = (400 * Math.random());
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock5m1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock5m2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 45;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock5m1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock5m1s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock5m1s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock5m2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock5m2s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock5m2s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock5m1s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock5m1s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock5m2s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock5m2s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock6" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = (500 * Math.random());
if ((_x < 20) || (480 < _x)) {
_y = (400 * Math.random());
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock6m1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock6m2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 45;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock6m1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock6m1s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock6m1s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock6m2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock6m2s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock6m2s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock6m1s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock6m1s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock6m2s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock6m2s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock7" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = (500 * Math.random());
if ((_x < 20) || (480 < _x)) {
_y = (400 * Math.random());
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock7m1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock7m2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 45;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock7m1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock7m1s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock7m1s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock7m2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 10;
_y = 10;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.rock7m2s1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.rock7m2s2) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 48 MovieClip "rock7m1s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock7m1s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 46 MovieClip "rock7m2s1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 43 MovieClip "rock7m2s2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = (500 * Math.random());
if ((_x < 20) || (480 < _x)) {
_y = (400 * Math.random());
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.bigRock1) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 500;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.bigRock1a) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1b) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1c) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1d) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1e) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1f) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1g) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1h) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1i) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1j) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1k) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock1l) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 200;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.bigRock2a) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2b) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2c) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2d) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2e) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2f) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2g) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2h) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2i) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2j) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2k) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock2l) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.bigRock3a) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3b) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3c) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3d) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3e) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3f) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3g) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3h) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3i) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3j) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3k) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock3l) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
with (_root.bigRock4a) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4b) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4c) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4d) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4e) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4f) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4g) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4h) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4i) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4j) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4k) {
alive = 1;
_x = this._x;
_y = this._y;
}
with (_root.bigRock4l) {
alive = 1;
_x = this._x;
_y = this._y;
}
alive = 0;
_root.actions.score = _root.actions.score + 75;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1a" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1b" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1c" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1d" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1e" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1f" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1g" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1h" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1j" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1k" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1i" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock1l" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2a" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2b" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2d" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2e" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2c" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2f" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2g" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2h" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2j" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2k" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2i" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock2l" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3a" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3b" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3d" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3e" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3c" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3f" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3g" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3h" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3j" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3k" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3i" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock3l" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4a" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4b" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4d" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4e" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4c" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4f" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4g" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4h" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4j" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4k" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4i" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 50 MovieClip "bigRock4l" in Frame 3
onClipEvent (load) {
alive = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
_x = 410;
_y = 310;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
onClipEvent (enterFrame) {
if (alive) {
_visible = true;
} else {
_visible = false;
}
if (alive) {
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_x = (_x + xv);
_y = (_y + yv);
hit = 0;
if (_root.shot1.alive && (hit == 0)) {
if (this.hitTest(_root.shot1)) {
_root.shot1.alive = 0;
hit = 1;
}
}
if (_root.shot2.alive && (hit == 0)) {
if (this.hitTest(_root.shot2)) {
_root.shot2.alive = 0;
hit = 1;
}
}
if (_root.shot3.alive && (hit == 0)) {
if (this.hitTest(_root.shot3)) {
_root.shot3.alive = 0;
hit = 1;
}
}
if (_root.shot4.alive && (hit == 0)) {
if (this.hitTest(_root.shot4)) {
_root.shot4.alive = 0;
hit = 1;
}
}
if (this.hitTest(_root.ship)) {
hit = 1;
_root.ship.dead = true;
}
if (hit) {
gotoAndStop (12);
alive = 0;
_root.actions.score = _root.actions.score + 125;
_root.actions.rocks = _root.actions.rocks - 1;
} else {
gotoAndStop (3);
}
}
}
Instance of Symbol 18 MovieClip "ship" in Frame 3
onClipEvent (load) {
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
xv = 0;
x = 0;
y = 0;
yv = 0;
xa = 0;
ya = 0;
v = 0;
visc = 0.02;
drag = 0;
timer = 0;
dead = false;
startx = _x;
starty = _y;
}
onClipEvent (enterFrame) {
if (dead == true) {
gotoAndPlay (22);
gotoAndPlay (23);
_root.actions.gameover = true;
} else {
if (0 < timer) {
timer--;
}
if (Key.isDown(32) && (timer == 0)) {
timer = 3;
if (_root.shot1.alive == 0) {
with (_root.shot1) {
xv = 15 * Math.sin((Math.PI/180) * this.angle);
yv = -15 * Math.cos((Math.PI/180) * this.angle);
alive = 25;
}
setProperty(_root.shot1, _x , this._x);
setProperty(_root.shot1, _y , this._y);
} else if (_root.shot2.alive == 0) {
with (_root.shot2) {
xv = 15 * Math.sin((Math.PI/180) * this.angle);
yv = -15 * Math.cos((Math.PI/180) * this.angle);
alive = 25;
}
setProperty(_root.shot2, _x , this._x);
setProperty(_root.shot2, _y , this._y);
} else if (_root.shot3.alive == 0) {
with (_root.shot3) {
xv = 15 * Math.sin((Math.PI/180) * this.angle);
yv = -15 * Math.cos((Math.PI/180) * this.angle);
alive = 25;
}
setProperty(_root.shot3, _x , this._x);
setProperty(_root.shot3, _y , this._y);
} else if (_root.shot4.alive == 0) {
with (_root.shot4) {
xv = 15 * Math.sin((Math.PI/180) * this.angle);
yv = -15 * Math.cos((Math.PI/180) * this.angle);
alive = 25;
}
setProperty(_root.shot4, _x , this._x);
setProperty(_root.shot4, _y , this._y);
}
}
if (Key.isDown(39)) {
torque = 5;
} else if (Key.isDown(37)) {
torque = -5;
} else {
torque = 0;
}
rtorque = 0.5 * AngVelocity;
AngAcceleration = torque - rtorque;
AngVelocity = AngVelocity + AngAcceleration;
angle = angle + AngVelocity;
if (angle < 0) {
angle = angle + 360;
}
if (360 < angle) {
angle = angle - 360;
}
v = Math.sqrt((xv * xv) + (yv * yv));
drag = visc * v;
if (Key.isDown(38)) {
force = 1;
gotoAndStop (12);
} else {
force = 0;
gotoAndStop (3);
}
xa = ((drag * xv) * -1) + (force * Math.sin((Math.PI/180) * angle));
ya = ((drag * yv) * -1) - (force * Math.cos((Math.PI/180) * angle));
xv = xv + xa;
yv = yv + ya;
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
_y = (_y + yv);
_x = (_x + xv);
_rotation = angle;
}
}
Instance of Symbol 53 MovieClip "shot1" in Frame 3
onClipEvent (load) {
setProperty(this, _visible , false);
alive = 0;
xv = 0;
yv = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
}
onClipEvent (enterFrame) {
if (alive) {
alive--;
setProperty(this, _visible , true);
_x = (_x + xv);
_y = (_y + yv);
} else {
setProperty(this, _visible , false);
}
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
}
Instance of Symbol 53 MovieClip "shot2" in Frame 3
onClipEvent (load) {
setProperty(this, _visible , false);
alive = 0;
xv = 0;
yv = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
}
onClipEvent (enterFrame) {
if (alive) {
alive--;
setProperty(this, _visible , true);
_x = (_x + xv);
_y = (_y + yv);
} else {
setProperty(this, _visible , false);
}
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
}
Instance of Symbol 53 MovieClip "shot3" in Frame 3
onClipEvent (load) {
setProperty(this, _visible , false);
alive = 0;
xv = 0;
yv = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
}
onClipEvent (enterFrame) {
if (alive) {
alive--;
setProperty(this, _visible , true);
_x = (_x + xv);
_y = (_y + yv);
} else {
setProperty(this, _visible , false);
}
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
}
Instance of Symbol 53 MovieClip "shot4" in Frame 3
onClipEvent (load) {
setProperty(this, _visible , false);
alive = 0;
xv = 0;
yv = 0;
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
}
onClipEvent (enterFrame) {
if (alive) {
alive--;
setProperty(this, _visible , true);
_x = (_x + xv);
_y = (_y + yv);
} else {
setProperty(this, _visible , false);
}
if (xmin >= _x) {
_x = (_x + (xmax - 10));
}
if (_x >= xmax) {
_x = (_x - (xmax - 10));
}
if (ymin >= _y) {
_y = (_y + (ymax - 10));
}
if (_y >= ymax) {
_y = (_y - (ymax - 10));
}
}
Instance of Symbol 98 MovieClip "actions" in Frame 3
onClipEvent (load) {
function setLevel() {
level++;
if (level >= 2) {
_root.rock5.alive = 1;
rocks = rocks + 4;
}
if (level >= 3) {
_root.rock6.alive = 1;
_root.rock7.alive = 1;
rocks = rocks + 8;
}
}
function setScore() {
bonus = time * 50;
score = score + bonus;
}
_root.readybox._visible = false;
_root.gameoverbox._visible = false;
_root.winbox._visible = false;
_root.bossbox._visible = false;
_visible = false;
bonus = 0;
score = 0;
level = 1;
time = 60;
seconds = 0;
gameover = false;
rocks = 16;
}
onClipEvent (enterFrame) {
if ((!gameover) && (rocks != 0)) {
seconds++;
if (seconds == 25) {
time--;
seconds = 0;
}
if (time == 0) {
_root.ship.dead = true;
}
}
if (gameover) {
_root.gameoverbox._visible = true;
}
if (rocks == 0) {
_root.ship._visible = false;
if (time != 60) {
setScore();
time = 60;
}
if (level == 3) {
_root.bossbox._visible = true;
} else if (level == 4) {
_root.winbox._visible = true;
} else {
_root.readybox._visible = true;
}
}
}
Symbol 12 MovieClip Frame 1
if (this.sessionstarted != 1) {
this.arcade = new LoadVars();
this.sessionvars = new LoadVars();
this.arcade.gamename = "asteroids2k3";
this.arcade.sessdo = "sessionstart";
this.arcade.sendAndLoad("arcade.php", sessionvars, "POST");
if (this.sessionvars.sessiontype != 2) {
_root.is_a_challenge = 0;
} else {
_root.is_a_challenge = 1;
}
this.sessionstarted = 1;
}
if (_root.gameover == 1) {
if ((this.askpermission != 1) && (this.sessionvars.connStatus == 1)) {
this.prequestvars = new LoadVars();
this.pranswer = new LoadVars();
this.prequestvars.gametime = this.sessionvars.gametime;
this.prequestvars.fakekey = this.sessionvars.initbar;
_root.score = int(Number(_root.actions.score));
if (_root.score != 0) {
this.prequestvars.score = _root.score;
} else {
this.prequestvars.score = -1;
}
this.prequestvars.id = this.sessionvars.lastid;
this.prequestvars.sessdo = "permrequest";
this.prequestvars.note = (this.prequestvars.id * this.prequestvars.score) * this.prequestvars.fakekey;
this.prequestvars.sendAndLoad("./arcade.php", this.pranswer, "POST");
this.askpermission = 1;
}
if ((this.pranswer.validate == 1) && (this.finalsent != 1)) {
this.burnscore = new LoadVars();
this.burnscore.microone = this.pranswer.microone;
this.burnscore.gametime = this.prequestvars.gametime;
this.burnscore.id = this.prequestvars.id;
if (_root.score == 0) {
this.burnscore.noscore = 1;
}
this.burnscore.sessdo = "burn";
this.burnscore.send("./arcade.php", "_self", "POST");
this.finalsent = 1;
}
}
Symbol 18 MovieClip Frame 1
stop();
Symbol 18 MovieClip Frame 10
stop();
Symbol 18 MovieClip Frame 21
stop();
Symbol 26 Button
on (release) {
nextFrame();
}
Symbol 39 Button
on (release) {
nextFrame();
}
Symbol 43 MovieClip Frame 1
stop();
Symbol 43 MovieClip Frame 10
stop();
Symbol 46 MovieClip Frame 1
stop();
Symbol 46 MovieClip Frame 10
stop();
Symbol 48 MovieClip Frame 1
stop();
Symbol 48 MovieClip Frame 10
stop();
Symbol 50 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 10
stop();
Symbol 59 Button
on (release) {
with (_root.ship) {
angle = 0;
xv = 0;
x = 0;
y = 0;
yv = 0;
xa = 0;
ya = 0;
v = 0;
_x = startx;
_y = starty;
}
with (_root.shot1) {
alive = 0;
}
with (_root.shot2) {
alive = 0;
}
with (_root.shot3) {
alive = 0;
}
with (_root.shot4) {
alive = 0;
}
with (_root.rock1) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.actions) {
rocks = 16;
setLevel();
}
_root.ship._visible = true;
_visible = false;
}
Symbol 71 Button
on (release) {
_root.gameover = 1;
}
Symbol 78 Button
on (release) {
with (_root.ship) {
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
xv = 0;
x = 0;
y = 0;
yv = 0;
xa = 0;
ya = 0;
v = 0;
visc = 0.02;
drag = 0;
timer = 0;
dead = false;
_x = startx;
_y = starty;
}
with (_root.shot1) {
alive = 0;
}
with (_root.shot2) {
alive = 0;
}
with (_root.shot3) {
alive = 0;
}
with (_root.shot4) {
alive = 0;
}
with (_root.rock1) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
if (_root.actions.level == 4) {
with (_root.bigRock1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1a) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1b) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1c) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1d) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1e) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1f) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1g) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1h) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1i) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1j) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1k) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock1l) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2a) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2b) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2c) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2d) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2e) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2f) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2g) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2h) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2i) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2j) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2k) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock2l) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3a) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3b) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3c) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3d) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3e) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3f) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3g) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3h) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3i) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3j) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3k) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock3l) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4a) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4b) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4c) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4d) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4e) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4f) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4g) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4h) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4i) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4j) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4k) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock4l) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
}
with (_root.actions) {
level = 1;
score = 0;
gameover = false;
time = 60;
rocks = 16;
}
_visible = false;
_root.ship._visible = true;
}
Symbol 83 Button
on (release) {
with (_root.ship) {
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
xv = 0;
x = 0;
y = 0;
yv = 0;
xa = 0;
ya = 0;
v = 0;
_x = startx;
_y = starty;
visc = 0.02;
drag = 0;
timer = 0;
dead = false;
}
with (_root.shot1) {
alive = 0;
}
with (_root.shot2) {
alive = 0;
}
with (_root.shot3) {
alive = 0;
}
with (_root.shot4) {
alive = 0;
}
with (_root.rock1) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4) {
alive = 1;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.actions) {
level = 1;
score = 0;
gameover = false;
time = 60;
rocks = 16;
}
_root.ship._visible = true;
_visible = false;
}
Symbol 84 Button
on (release) {
_root.gameover = 1;
}
Symbol 97 Button
on (release) {
with (_root.ship) {
xmax = 490;
xmin = 10;
ymax = 390;
ymin = 10;
angle = 0;
xv = 0;
x = 0;
y = 0;
yv = 0;
xa = 0;
ya = 0;
v = 0;
_x = startx;
_y = starty;
visc = 0.02;
drag = 0;
timer = 0;
dead = false;
}
with (_root.shot1) {
alive = 0;
}
with (_root.shot2) {
alive = 0;
}
with (_root.shot3) {
alive = 0;
}
with (_root.shot4) {
alive = 0;
}
with (_root.rock1) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock1m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock2m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock3m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock4m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock5m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock6m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7) {
alive = 0;
_x = 500 * Math.random();
if ((_x < 20) || (480 < _x)) {
_y = 400 * Math.random();
} else {
_y = 20;
}
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m1s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2s1) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.rock7m2s2) {
alive = 0;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.bigRock) {
alive = 1;
xv = (6 * Math.random()) - 3;
yv = (6 * Math.random()) - 3;
hit = 0;
}
with (_root.actions) {
level++;
gameover = false;
time = 60;
rocks = 48;
}
_root.ship._visible = true;
_visible = false;
}