STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228125
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/27893536?noj=FRM27893536-12DC" width="1" height="1"></div>

Asteroids 2k3.swf

This is the info page for
Flash #42283

(Click the ID number above for more basic data on this flash file.)


Text
l o a d i n g

l o a d i n g .

l o a d i n g . .

l o a d i n g . . .

%

L E F T   &   R I G H T   a r r o w   -   M o v e
U P   a r r o w     -   T h r u s t
S P A C E B A R   -   F i r e

SCORE

Level

N e w   L e v e l

Bonus:

Score:

<P ALIGN="LEFT"><FONT COLOR="#000000" FACE="Arial Black" SIZE="8">Submit</FONT></P>

G a m e   o v e r

C o n g r a t u l a t i o n   Y o u   W i n

S c o r e :

B o n u s :

F i n a l   l e v e l   T h e   B o s s

a c t i o n s

ActionScript [AS1/AS2]

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; }

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 4 FontUsed by:3 5 6 7
Symbol 3 TextUses:4Used by:2
Symbol 5 TextUses:4Used by:2
Symbol 6 TextUses:4Used by:2
Symbol 7 TextUses:4Used by:2
Symbol 2 MovieClipUses:3 5 6 7Used by:Timeline
Symbol 8 FontUsed by:9
Symbol 9 EditableTextUses:8Used by:Timeline
Symbol 10 FontUsed by:11
Symbol 11 EditableTextUses:10Used by:Timeline
Symbol 12 MovieClipUsed by:Timeline
Symbol 14 GraphicUsed by:13
Symbol 16 BitmapUsed by:17
Symbol 17 GraphicUses:16Used by:15
Symbol 15 MovieClipUses:17Used by:13
Symbol 13 MovieClipUses:14 15Used by:Timeline
Symbol 19 BitmapUsed by:20 21 22
Symbol 20 GraphicUses:19Used by:18
Symbol 21 GraphicUses:19Used by:18
Symbol 22 GraphicUses:19Used by:18
Symbol 18 MovieClipUses:20 21 22Used by:Timeline
Symbol 23 GraphicUsed by:Timeline
Symbol 25 FontUsed by:24 58 77 82 85 88 92 99
Symbol 24 TextUses:25Used by:Timeline
Symbol 27 GraphicUsed by:26 39
Symbol 28 GraphicUsed by:26 39
Symbol 26 ButtonUses:27 28Used by:Timeline
Symbol 29 GraphicUsed by:Timeline
Symbol 31 FontUsed by:32
Symbol 32 EditableTextUses:31Used by:30
Symbol 33 FontUsed by:34
Symbol 34 EditableTextUses:33Used by:30
Symbol 35 FontUsed by:36
Symbol 36 EditableTextUses:35Used by:30
Symbol 37 FontUsed by:38
Symbol 38 EditableTextUses:37Used by:30
Symbol 30 MovieClipUses:32 34 36 38Used by:Timeline
Symbol 39 ButtonUses:27 28
Symbol 41 FontUsed by:42
Symbol 42 EditableTextUses:41Used by:40
Symbol 40 MovieClipUses:42Used by:Timeline
Symbol 44 GraphicUsed by:43
Symbol 45 GraphicUsed by:43 46 48
Symbol 43 MovieClipUses:44 45Used by:Timeline
Symbol 47 GraphicUsed by:46
Symbol 46 MovieClipUses:47 45Used by:Timeline
Symbol 49 GraphicUsed by:48
Symbol 48 MovieClipUses:49 45Used by:Timeline
Symbol 51 GraphicUsed by:50
Symbol 52 GraphicUsed by:50
Symbol 50 MovieClipUses:51 52Used by:Timeline
Symbol 54 GraphicUsed by:53
Symbol 53 MovieClipUses:54Used by:Timeline
Symbol 55 GraphicUsed by:Timeline
Symbol 57 GraphicUsed by:56 70 81 91
Symbol 58 TextUses:25Used by:56
Symbol 60 GraphicUsed by:59 97
Symbol 61 GraphicUsed by:59 97
Symbol 59 ButtonUses:60 61Used by:56
Symbol 62 FontUsed by:63
Symbol 63 EditableTextUses:62Used by:56
Symbol 64 FontUsed by:65
Symbol 65 EditableTextUses:64Used by:56
Symbol 66 FontUsed by:67
Symbol 67 EditableTextUses:66Used by:56
Symbol 68 FontUsed by:69
Symbol 69 EditableTextUses:68Used by:56
Symbol 56 MovieClipUses:57 58 59 63 65 67 69Used by:Timeline
Symbol 72 FontUsed by:73
Symbol 73 EditableTextUses:72Used by:71 84
Symbol 76 GraphicUsed by:75 74 84
Symbol 75 ButtonUses:76Used by:74 84
Symbol 74 ButtonUses:75 76Used by:71
Symbol 71 ButtonUses:73 74Used by:70
Symbol 77 TextUses:25Used by:70
Symbol 79 GraphicUsed by:78 83
Symbol 80 GraphicUsed by:78 83
Symbol 78 ButtonUses:79 80Used by:70
Symbol 70 MovieClipUses:57 71 77 78Used by:Timeline
Symbol 82 TextUses:25Used by:81
Symbol 83 ButtonUses:79 80Used by:81
Symbol 84 ButtonUses:73 75 76Used by:81
Symbol 85 TextUses:25Used by:81 91
Symbol 86 FontUsed by:87
Symbol 87 EditableTextUses:86Used by:81
Symbol 88 TextUses:25Used by:81 91
Symbol 89 FontUsed by:90
Symbol 90 EditableTextUses:89Used by:81
Symbol 81 MovieClipUses:57 82 83 84 85 87 88 90Used by:Timeline
Symbol 92 TextUses:25Used by:91
Symbol 93 FontUsed by:94
Symbol 94 EditableTextUses:93Used by:91
Symbol 95 FontUsed by:96
Symbol 96 EditableTextUses:95Used by:91
Symbol 97 ButtonUses:60 61Used by:91
Symbol 91 MovieClipUses:57 92 85 94 88 96 97Used by:Timeline
Symbol 99 TextUses:25Used by:98
Symbol 98 MovieClipUses:99Used by:Timeline

Instance Names

"loading"Frame 1Symbol 2 MovieClip
"ship"Frame 2Symbol 18 MovieClip
"rock1"Frame 3Symbol 43 MovieClip
"rock1m1"Frame 3Symbol 46 MovieClip
"rock1m2"Frame 3Symbol 48 MovieClip
"rock2"Frame 3Symbol 46 MovieClip
"rock2m1"Frame 3Symbol 48 MovieClip
"rock2m2"Frame 3Symbol 43 MovieClip
"rock1m1s1"Frame 3Symbol 48 MovieClip
"rock1m1s2"Frame 3Symbol 43 MovieClip
"rock1m2s1"Frame 3Symbol 46 MovieClip
"rock1m2s2"Frame 3Symbol 43 MovieClip
"rock2m1s1"Frame 3Symbol 48 MovieClip
"rock2m1s2"Frame 3Symbol 43 MovieClip
"rock2m2s1"Frame 3Symbol 46 MovieClip
"rock2m2s2"Frame 3Symbol 43 MovieClip
"rock3"Frame 3Symbol 48 MovieClip
"rock3m1"Frame 3Symbol 43 MovieClip
"rock3m2"Frame 3Symbol 46 MovieClip
"rock3m1s1"Frame 3Symbol 48 MovieClip
"rock3m1s2"Frame 3Symbol 43 MovieClip
"rock3m2s1"Frame 3Symbol 48 MovieClip
"rock3m2s2"Frame 3Symbol 46 MovieClip
"rock4"Frame 3Symbol 43 MovieClip
"rock4m1"Frame 3Symbol 46 MovieClip
"rock4m2"Frame 3Symbol 48 MovieClip
"rock4m1s1"Frame 3Symbol 48 MovieClip
"rock4m1s2"Frame 3Symbol 43 MovieClip
"rock4m2s1"Frame 3Symbol 46 MovieClip
"rock4m2s2"Frame 3Symbol 43 MovieClip
"rock5"Frame 3Symbol 46 MovieClip
"rock5m1"Frame 3Symbol 48 MovieClip
"rock5m2"Frame 3Symbol 43 MovieClip
"rock5m1s1"Frame 3Symbol 48 MovieClip
"rock5m1s2"Frame 3Symbol 43 MovieClip
"rock5m2s1"Frame 3Symbol 46 MovieClip
"rock5m2s2"Frame 3Symbol 43 MovieClip
"rock6"Frame 3Symbol 48 MovieClip
"rock6m1"Frame 3Symbol 43 MovieClip
"rock6m2"Frame 3Symbol 46 MovieClip
"rock6m1s1"Frame 3Symbol 48 MovieClip
"rock6m1s2"Frame 3Symbol 43 MovieClip
"rock6m2s1"Frame 3Symbol 48 MovieClip
"rock6m2s2"Frame 3Symbol 46 MovieClip
"rock7"Frame 3Symbol 43 MovieClip
"rock7m1"Frame 3Symbol 46 MovieClip
"rock7m2"Frame 3Symbol 48 MovieClip
"rock7m1s1"Frame 3Symbol 48 MovieClip
"rock7m1s2"Frame 3Symbol 43 MovieClip
"rock7m2s1"Frame 3Symbol 46 MovieClip
"rock7m2s2"Frame 3Symbol 43 MovieClip
"bigRock"Frame 3Symbol 50 MovieClip
"bigRock1"Frame 3Symbol 50 MovieClip
"bigRock2"Frame 3Symbol 50 MovieClip
"bigRock3"Frame 3Symbol 50 MovieClip
"bigRock4"Frame 3Symbol 50 MovieClip
"bigRock1a"Frame 3Symbol 50 MovieClip
"bigRock1b"Frame 3Symbol 50 MovieClip
"bigRock1c"Frame 3Symbol 50 MovieClip
"bigRock1d"Frame 3Symbol 50 MovieClip
"bigRock1e"Frame 3Symbol 50 MovieClip
"bigRock1f"Frame 3Symbol 50 MovieClip
"bigRock1g"Frame 3Symbol 50 MovieClip
"bigRock1h"Frame 3Symbol 50 MovieClip
"bigRock1j"Frame 3Symbol 50 MovieClip
"bigRock1k"Frame 3Symbol 50 MovieClip
"bigRock1i"Frame 3Symbol 50 MovieClip
"bigRock1l"Frame 3Symbol 50 MovieClip
"bigRock2a"Frame 3Symbol 50 MovieClip
"bigRock2b"Frame 3Symbol 50 MovieClip
"bigRock2d"Frame 3Symbol 50 MovieClip
"bigRock2e"Frame 3Symbol 50 MovieClip
"bigRock2c"Frame 3Symbol 50 MovieClip
"bigRock2f"Frame 3Symbol 50 MovieClip
"bigRock2g"Frame 3Symbol 50 MovieClip
"bigRock2h"Frame 3Symbol 50 MovieClip
"bigRock2j"Frame 3Symbol 50 MovieClip
"bigRock2k"Frame 3Symbol 50 MovieClip
"bigRock2i"Frame 3Symbol 50 MovieClip
"bigRock2l"Frame 3Symbol 50 MovieClip
"bigRock3a"Frame 3Symbol 50 MovieClip
"bigRock3b"Frame 3Symbol 50 MovieClip
"bigRock3d"Frame 3Symbol 50 MovieClip
"bigRock3e"Frame 3Symbol 50 MovieClip
"bigRock3c"Frame 3Symbol 50 MovieClip
"bigRock3f"Frame 3Symbol 50 MovieClip
"bigRock3g"Frame 3Symbol 50 MovieClip
"bigRock3h"Frame 3Symbol 50 MovieClip
"bigRock3j"Frame 3Symbol 50 MovieClip
"bigRock3k"Frame 3Symbol 50 MovieClip
"bigRock3i"Frame 3Symbol 50 MovieClip
"bigRock3l"Frame 3Symbol 50 MovieClip
"bigRock4a"Frame 3Symbol 50 MovieClip
"bigRock4b"Frame 3Symbol 50 MovieClip
"bigRock4d"Frame 3Symbol 50 MovieClip
"bigRock4e"Frame 3Symbol 50 MovieClip
"bigRock4c"Frame 3Symbol 50 MovieClip
"bigRock4f"Frame 3Symbol 50 MovieClip
"bigRock4g"Frame 3Symbol 50 MovieClip
"bigRock4h"Frame 3Symbol 50 MovieClip
"bigRock4j"Frame 3Symbol 50 MovieClip
"bigRock4k"Frame 3Symbol 50 MovieClip
"bigRock4i"Frame 3Symbol 50 MovieClip
"bigRock4l"Frame 3Symbol 50 MovieClip
"ship"Frame 3Symbol 18 MovieClip
"shot1"Frame 3Symbol 53 MovieClip
"shot2"Frame 3Symbol 53 MovieClip
"shot3"Frame 3Symbol 53 MovieClip
"shot4"Frame 3Symbol 53 MovieClip
"readybox"Frame 3Symbol 56 MovieClip
"gameoverbox"Frame 3Symbol 70 MovieClip
"winbox"Frame 3Symbol 81 MovieClip
"bossbox"Frame 3Symbol 91 MovieClip
"actions"Frame 3Symbol 98 MovieClip

Dynamic Text Variables

_root.loading.procentSymbol 9 EditableText""
_root.actions.scoreSymbol 32 EditableText""
TextField3Symbol 34 EditableText"SCORE"
_root.actions.levelSymbol 38 EditableText""
_root.actions.timeSymbol 42 EditableText""
_root.actions.bonusSymbol 63 EditableText""
_root.actions.scoreSymbol 65 EditableText""
_root.actions.scoreSymbol 87 EditableText""
_root.actions.bonusSymbol 90 EditableText""
_root.actions.scoreSymbol 94 EditableText""
_root.actions.bonusSymbol 96 EditableText""




http://swfchan.com/9/42283/info.shtml
Created: 10/5 -2019 00:44:18 Last modified: 10/5 -2019 00:44:18 Server time: 12/05 -2024 22:05:57