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

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

gravity.swf

This is the info page for
Flash #28817

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


Text
Free Games AND ShowS

Loading

Gravity

Planet Generica is being invaded!!!

This planet's only hope is...

This planet's only hope is...

Skip >>

Skip >>

Skip >>

Gravity

Play

Play

Play

More Free Games

More Free Games

New Games by Email

New Games by Email

Instructions

Instructions

Download

Download

Free Games AND ShowS

Thrust

Rotate
Right

Rotate
Left

Not Used

How to Play

Use your arrow keys to control the lander

Gravity will always pull the lander
towards the planet

The red arrow always
points towards the planet

Time Remaining:

Dist. from Planet:

s

m

13.37

1337

The overlay displays time
remaining and distance
from planet

Planet Generica Mission 1: Are we there yet?

NEXT >>

NEXT >>

Skip >>

skip>>

Take off from the landing pad shown here.  Fly...

...to the pad on the right.  Considering the length of the trip
you may want to pack a snack.

Take your time and learn how to control the lander.

Rotate
Left

Rotate
Right

Thrusters

FLY
MISSION

REPLAY
BRIEFING

Time Remaining:

Dist. from Planet:

s

m

0

32443

MENU

MENU

MENU

Restart Mission

Restart Mission

High Detail

High Detail

Low Detail

Low Detail

Music on/off

Music on/off

Sound on/off

Sound on/off

Visit MiniClip

Visit MiniClip

Control Help

Control Help

Controls

SUCCESS!

Are you ready for the next mission?

FAILURE.

Are you ready for another attempt?

OUT OF TIME.

Planet Generica Mission 2: Pole to Pole to Pole

Fly from the north pole of Generica...

...to the South Pole, and then...

...return to the North Pole.

Hint: Use a little thrust to reach orbit, and let
gravity carry you to the other side of the planet.
Oh... and don't crash into the monolith!

Planet Generica Mission 3: Running on Empty

The local supply ship has run out of fuel.  Your
mission is to refuel the ship.

Pick up a fuel cell from the Landing pad marked in blue,
and deliver it to the pad marked in red.

The ship only has life support for 80 of your Earth seconds
so you must land quickly.

Caution:  The Fuel Cell is heavy and will weigh down the
lander.

Planet Generica Mission 4: Bombs Away

A space bomber was brought down during its mission.

Before it crashed the bomber released a bomb into orbit
around the planet; recover it.  And then...

?

...finish the mission by dropping the bomb onto the
creature.  Use your <<space bar>> to drop it.

You have 90 seconds to complete the mission.
Hint:  Reports indicate that the bomb is travelling counter-
clockwise around Generica.

Planet Generica Mission 5: Terrible Secret of Space!

Three of our space probes have been disabled by a
mysterious force.  Our engineer has  provided a...

...diagram of the most likely culprit.

EVIL SPACE MAGICIAN
FROM NEBULA x12

The blue arrow will point you towards the probes, You must
land after picking up each probe.

You have 120 seconds to pick up all of the probes.
Hint: WATCH OUT FOR THE GIANT SPACE ROCK IN ORBIT 320
METERS ABOVE THE PLANET!

Planet Generica Mission 6: Supply Run

Space Command is holding an important conference and
needs you to pick-up vital supplies.

Land on both of the points marked in red and then return to
your starting point (marked in green).

Remember to avoid the giant space rock!

You have 120 seconds to complete the mission.
Hint:  Fly slowly in order to avoid slamming into obstacles.

My circuits! They weep!

Alas, Generic 1960s Robot,
why can't you see?

All "games" must end...

All "games" must end...

The End

fin

ActionScript [AS1/AS2]

Frame 1
fscommand ("fullscreen", "false"); fscommand ("allowscale", "false"); fscommand ("showmenu", "false");
Frame 98
gotoAndPlay (99);
Frame 99
stop();
Instance of Symbol 27 MovieClip "loadbar" in Frame 99
onClipEvent (enterFrame) { if (_root.getBytesLoaded() >= _root.getBytesTotal()) { _root.play(); } else { _parent.stop(); this._xscale = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; _root.howMuch = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100) + "%"; } }
Frame 100
stop();
Instance of Symbol 40 MovieClip "noisecube" in Frame 100
onClipEvent (load) { onOrOff = "on"; } onClipEvent (enterFrame) { if (onOrOff == "on") { if ((_parent.lander.myLanded == "go") && (key.isDown(38))) { gotoAndStop (100); dying = false; } else if ((_parent.lander.exploding == "true") && (!dying)) { gotoAndStop (101); dying = true; } else { gotoAndStop (99); } } else { gotoAndStop (99); } }
Instance of Symbol 41 MovieClip "musicSphere" in Frame 100
onClipEvent (load) { }
Frame 101
function randSong() { if (_root.onOrOff == "on") { rand = random(3); _root.musicSphere.gotoAndStop(soundArray[rand]); } else { _root.musicSphere.gotoAndStop("noSound"); } } stop(); _root.musicSphere.gotoAndStop("intro2"); soundArray = new Array("level1", "level3", "level4"); _root.onOrOff = "on";
Frame 102
stopAllSounds(); stop(); if (_root.onOrOff == "on") { _root.musicSphere.gotoAndStop("level2"); }
Frame 103
stopAllSounds(); stop(); _root.randSong();
Instance of Symbol 81 MovieClip "lander" in Frame 103
onClipEvent (load) { myGrav = 0.06; i = 0; if (_quality == "LOW") { myPartAmount = 5; } else if (_quality == "MEDIUM") { myPartAmount = 12; } else { myPartAmount = 25; } if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } onClipEvent (enterFrame) { function rotate(rvar) { _rotation = (_rotation + (3 * rvar)); if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } function constant() { myXMomentum = myXMomentum + (myXMovement - myXGravity); myYMomentum = myYMomentum + (myYMovement - myYGravity); if (((this._x + myXMomentum) >= 480) || (120 >= (this._x + myXMomentum))) { _parent.foreground._x = _parent.foreground._x - myXMomentum; Xparticleshift = myXMomentum; } else { this._x = this._x + myXMomentum; Xparticleshift = 0; } if (((this._y + myYMomentum) >= 280) || (120 >= (this._y + myYMomentum))) { _parent.foreground._y = _parent.foreground._y - myYMomentum; Yparticleshift = myYMomentum; } else { this._y = this._y + myYMomentum; Yparticleshift = 0; } } function arrowcolour() { myDistance = Math.sqrt(Math.pow(_this._x - _parent.foreground._x, 2) + Math.pow(_this._y - _parent.foreground._y, 2)); } function explode() { if (60 >= i) { duplicateMovieClip (_parent.particle, "mcc" + i, i); _parent["mcc" + i].myGocommand = "blow"; i++; blowdelay++; if (i >= 20) { this.gotoAndStop(2); } } } function engineburn() { if (myPartAmount >= i) { duplicateMovieClip (_parent.particle, "mc" + i, i); _parent["mc" + i].myGocommand = "go"; _parent["mc" + i]._x = _x; _parent["mc" + i]._y = _y; i++; } else { i = 0; } } function gravity() { origin_x = _root.foreground._x; origin_y = _root.foreground._y; mouse_x = this._x; mouse_y = this._y; dist_x = mouse_x - origin_x; dist_y = mouse_y - origin_y; if (Number(dist_x) < 0) { normalise = -1 * dist_x; } else { normalise = dist_x; } if (Number(dist_y) < 0) { normalise = Number(normalise) + Number(-1 * dist_y); } else { normalise = Number(normalise) + Number(dist_y); } if ((Number(dist_x) >= 0) and (Number(dist_y) >= 0)) { direction = 90 * (dist_y / normalise); } else if ((0 >= Number(dist_x)) and (Number(dist_y) >= 0)) { direction = Number(-90 * (dist_x / normalise)) + 90; } else if ((0 >= Number(dist_x)) and (0 >= Number(dist_y))) { direction = Number(-90 * (dist_y / normalise)) + 180; } else { direction = Number(90 * (dist_x / normalise)) + 270; } myYGravity = Math.sin((Math.PI/180) * direction) * myGrav; myXGravity = Math.cos((Math.PI/180) * direction) * myGrav; _parent.planetfinder._rotation = direction; } if (WinLose == "lose") { if (myFailTime) { if ((getTimer() - myFailtime) >= 5000) { myLanded = "stop"; _parent.popup.gotoAndStop("loser"); } } else { myFailtime = getTimer(); _root.Angry.go = "stop"; } } else if (WinLose == "win") { if (myWinTime) { if ((getTimer() - myWinTime) >= 2000) { myLanded = "stop"; _parent.popup.gotoAndStop("winner"); } } else { myWinTime = getTimer(); _root.Angry.go = "stop"; } } if (exploding == "true") { explode(); gravity(); constant(); myXMovement = 0; myYMovement = 0; WinLose = "lose"; } if (myLanded == "go") { gravity(); constant(); if (key.isDown(38)) { myVelocity = 0.2; engineburn(); myXMovement = Math.cos((Math.PI/180) * myRotation) * myVelocity; myYMovement = Math.sin((Math.PI/180) * myRotation) * myVelocity; } else { myXmovement = 0; myYmovement = 0; } if (key.isDown(37)) { rotate(-1); } if (key.isDown(39)) { rotate(1); } } else if (myLanded == "stop") { myXmovement = 0; myYmovement = 0; myXMomentum = 0; myYMomentum = 0; } }
Instance of Symbol 187 MovieClip "particle" in Frame 103
onClipEvent (load) { xDirect = ((random(15) - 7) / 10) + Math.cos((Math.PI/180) * _parent.lander.myRotation); yDirect = ((random(15) - 7) / 10) + Math.sin((Math.PI/180) * _parent.lander.myRotation); gotoAndStop(random(2) + 1 +98); myTTL = getTimer(); } onClipEvent (enterFrame) { if (myGocommand == "go") { this._x = this._x - (xDirect + _parent.lander.Xparticleshift); this._y = this._y - (yDirect + _parent.lander.Yparticleshift); } if ((getTimer() - myTTL) >= 2500) { removeMovieClip(this); } }
Instance of Symbol 130 MovieClip "planetfinder" in Frame 103
onClipEvent (enterFrame) { this._x = _parent.lander._x; this._y = _parent.lander._y; }
Instance of Symbol 196 MovieClip "Angry" in Frame 103
onClipEvent (load) { myTimerStart = getTimer(); myTime = 0; } onClipEvent (enterFrame) { function trim(theNumber, decPlaces) { if (decPlaces >= 0) { var temp = Math.pow(10, decPlaces); return(Math.round(theNumber * temp) / temp); } } distance = int(Math.sqrt(Math.pow(_parent.lander._x - _parent.foreground._x, 2) + Math.pow(_parent.lander._y - _parent.foreground._y, 2)) - 709); if ((go != "stop") && (myTime != 0)) { timer = myTime - trim((getTimer() - myTimerStart) / 1000, 2); if (0 >= timer) { _parent.popup.gotoAndStop("notime"); _parent.lander.myLanded = "stop"; go = "stop"; } } if (-10 >= _parent.Angry.distance) { _parent.lander.exploding = "true"; _parent.lander.myLanded = "blow"; } }
Frame 104
stopAllSounds(); stop(); if (_root.onOrOff == "on") { _root.musicSphere.gotoAndStop("level2"); }
Frame 105
stopAllSounds(); stop(); randSong();
Instance of Symbol 81 MovieClip "lander" in Frame 105
onClipEvent (load) { myGrav = 0.06; i = 0; if (_quality == "LOW") { myPartAmount = 5; } else if (_quality == "MEDIUM") { myPartAmount = 12; } else { myPartAmount = 25; } if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } onClipEvent (enterFrame) { function rotate(rvar) { _rotation = (_rotation + (3 * rvar)); if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } function constant() { myXMomentum = myXMomentum + (myXMovement - myXGravity); myYMomentum = myYMomentum + (myYMovement - myYGravity); if (((this._x + myXMomentum) >= 425) || (175 >= (this._x + myXMomentum))) { _parent.foreground._x = _parent.foreground._x - myXMomentum; Xparticleshift = myXMomentum; } else { this._x = this._x + myXMomentum; Xparticleshift = 0; } if (((this._y + myYMomentum) >= 225) || (175 >= (this._y + myYMomentum))) { _parent.foreground._y = _parent.foreground._y - myYMomentum; Yparticleshift = myYMomentum; } else { this._y = this._y + myYMomentum; Yparticleshift = 0; } } function arrowcolour() { myDistance = Math.sqrt(Math.pow(_this._x - _parent.foreground._x, 2) + Math.pow(_this._y - _parent.foreground._y, 2)); } function explode() { if (60 >= i) { duplicateMovieClip (_parent.particle, "mcc" + i, i); _parent["mcc" + i].myGocommand = "blow"; i++; blowdelay++; if (i >= 20) { this.gotoAndStop(2); } } } function engineburn() { if (myPartAmount >= i) { duplicateMovieClip (_parent.particle, "mc" + i, i); _parent["mc" + i].myGocommand = "go"; _parent["mc" + i]._x = _x; _parent["mc" + i]._y = _y; i++; } else { i = 0; } } function gravity() { origin_x = _root.foreground._x; origin_y = _root.foreground._y; mouse_x = this._x; mouse_y = this._y; dist_x = mouse_x - origin_x; dist_y = mouse_y - origin_y; if (Number(dist_x) < 0) { normalise = -1 * dist_x; } else { normalise = dist_x; } if (Number(dist_y) < 0) { normalise = Number(normalise) + Number(-1 * dist_y); } else { normalise = Number(normalise) + Number(dist_y); } if ((Number(dist_x) >= 0) and (Number(dist_y) >= 0)) { direction = 90 * (dist_y / normalise); } else if ((0 >= Number(dist_x)) and (Number(dist_y) >= 0)) { direction = Number(-90 * (dist_x / normalise)) + 90; } else if ((0 >= Number(dist_x)) and (0 >= Number(dist_y))) { direction = Number(-90 * (dist_y / normalise)) + 180; } else { direction = Number(90 * (dist_x / normalise)) + 270; } myYGravity = Math.sin((Math.PI/180) * direction) * myGrav; myXGravity = Math.cos((Math.PI/180) * direction) * myGrav; _parent.planetfinder._rotation = direction; } if (WinLose == "lose") { if (myFailTime) { if ((getTimer() - myFailtime) >= 5000) { myLanded = "stop"; _parent.popup.gotoAndStop("loser"); } } else { myFailtime = getTimer(); _root.Angry.go = "stop"; } } else if (WinLose == "win") { if (myWinTime) { if ((getTimer() - myWinTime) >= 2000) { myLanded = "stop"; _parent.popup.gotoAndStop("winner"); } } else { myWinTime = getTimer(); _root.Angry.go = "stop"; } } if (exploding == "true") { explode(); gravity(); constant(); myXMovement = 0; myYMovement = 0; WinLose = "lose"; } if (myLanded == "go") { gravity(); constant(); if (key.isDown(38)) { myVelocity = 0.2; engineburn(); myXMovement = Math.cos((Math.PI/180) * myRotation) * myVelocity; myYMovement = Math.sin((Math.PI/180) * myRotation) * myVelocity; } else { myXmovement = 0; myYmovement = 0; } if (key.isDown(37)) { rotate(-1); } if (key.isDown(39)) { rotate(1); } } else if (myLanded == "stop") { myXmovement = 0; myYmovement = 0; myXMomentum = 0; myYMomentum = 0; } }
Instance of Symbol 187 MovieClip "particle" in Frame 105
onClipEvent (load) { if (myGoCommand == "blow") { this._x = _parent.lander._x + (random(20) - 10); this._y = _parent.lander._y + (random(20) - 10); gotoAndStop(random(5) + 5 +98); grow = random(12); } if (myGoCommand == "go") { xDirect = ((random(15) - 7) / 10) + Math.cos((Math.PI/180) * _parent.lander.myRotation); yDirect = ((random(15) - 7) / 10) + Math.sin((Math.PI/180) * _parent.lander.myRotation); gotoAndStop(random(2) + 1 +98); } myTTL = getTimer(); } onClipEvent (enterFrame) { if (myGocommand == "go") { this._x = this._x - (xDirect + _parent.lander.Xparticleshift); this._y = this._y - (yDirect + _parent.lander.Yparticleshift); } if (myGoCommand == "blow") { this._xscale = this._xscale + grow; this._yscale = this._yscale + grow; } if ((getTimer() - myTTL) >= 2500) { removeMovieClip(this); } }
Instance of Symbol 130 MovieClip "planetfinder" in Frame 105
onClipEvent (enterFrame) { this._x = _parent.lander._x; this._y = _parent.lander._y; }
Instance of Symbol 228 MovieClip in Frame 105
/* no clip actions */
Instance of Symbol 196 MovieClip "Angry" in Frame 105
onClipEvent (load) { myTimerStart = getTimer(); myTime = 0; } onClipEvent (enterFrame) { function trim(theNumber, decPlaces) { if (decPlaces >= 0) { var temp = Math.pow(10, decPlaces); return(Math.round(theNumber * temp) / temp); } } distance = int(Math.sqrt(Math.pow(_parent.lander._x - _parent.foreground._x, 2) + Math.pow(_parent.lander._y - _parent.foreground._y, 2)) - 709); if ((go != "stop") && (myTime != 0)) { timer = myTime - trim((getTimer() - myTimerStart) / 1000, 2); if (0 >= timer) { _parent.popup.gotoAndStop("notime"); _parent.lander.myLanded = "stop"; go = "stop"; } } if (-10 >= _parent.Angry.distance) { _parent.lander.exploding = "true"; _parent.lander.myLanded = "blow"; } }
Frame 106
stopAllSounds(); stop(); if (_root.onOrOff == "on") { _root.musicSphere.gotoAndStop("level2"); }
Frame 107
stopAllSounds(); stop(); randSong();
Instance of Symbol 259 MovieClip "battery" in Frame 107
onClipEvent (enterFrame) { if (_parent.lander.bat == "attached") { _parent.foreground.batt._visible = false; _parent.lander.myGrav = 0.12; this._x = _parent.lander._x; this._y = _parent.lander._y; this._rotation = _parent.lander._rotation; } }
Instance of Symbol 81 MovieClip "lander" in Frame 107
onClipEvent (load) { myGrav = 0.06; i = 0; if (_quality == "LOW") { myPartAmount = 5; } else if (_quality == "MEDIUM") { myPartAmount = 12; } else { myPartAmount = 25; } if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } onClipEvent (enterFrame) { function rotate(rvar) { _rotation = (_rotation + (3 * rvar)); if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } function constant() { myXMomentum = myXMomentum + (myXMovement - myXGravity); myYMomentum = myYMomentum + (myYMovement - myYGravity); if (((this._x + myXMomentum) >= 480) || (120 >= (this._x + myXMomentum))) { _parent.foreground._x = _parent.foreground._x - myXMomentum; Xparticleshift = myXMomentum; } else { this._x = this._x + myXMomentum; Xparticleshift = 0; } if (((this._y + myYMomentum) >= 280) || (120 >= (this._y + myYMomentum))) { _parent.foreground._y = _parent.foreground._y - myYMomentum; Yparticleshift = myYMomentum; } else { this._y = this._y + myYMomentum; Yparticleshift = 0; } } function arrowcolour() { myDistance = Math.sqrt(Math.pow(_this._x - _parent.foreground._x, 2) + Math.pow(_this._y - _parent.foreground._y, 2)); } function explode() { if (60 >= i) { duplicateMovieClip (_parent.particle, "mcc" + i, i); _parent["mcc" + i].myGocommand = "blow"; i++; blowdelay++; if (i >= 20) { this.gotoAndStop(2); } } } function engineburn() { if (myPartAmount >= i) { duplicateMovieClip (_parent.particle, "mc" + i, i); _parent["mc" + i].myGocommand = "go"; _parent["mc" + i]._x = _x; _parent["mc" + i]._y = _y; i++; } else { i = 0; } } function gravity() { origin_x = _root.foreground._x; origin_y = _root.foreground._y; mouse_x = this._x; mouse_y = this._y; dist_x = mouse_x - origin_x; dist_y = mouse_y - origin_y; if (Number(dist_x) < 0) { normalise = -1 * dist_x; } else { normalise = dist_x; } if (Number(dist_y) < 0) { normalise = Number(normalise) + Number(-1 * dist_y); } else { normalise = Number(normalise) + Number(dist_y); } if ((Number(dist_x) >= 0) and (Number(dist_y) >= 0)) { direction = 90 * (dist_y / normalise); } else if ((0 >= Number(dist_x)) and (Number(dist_y) >= 0)) { direction = Number(-90 * (dist_x / normalise)) + 90; } else if ((0 >= Number(dist_x)) and (0 >= Number(dist_y))) { direction = Number(-90 * (dist_y / normalise)) + 180; } else { direction = Number(90 * (dist_x / normalise)) + 270; } myYGravity = Math.sin((Math.PI/180) * direction) * myGrav; myXGravity = Math.cos((Math.PI/180) * direction) * myGrav; _parent.planetfinder._rotation = direction; } if (WinLose == "lose") { if (myFailTime) { if ((getTimer() - myFailtime) >= 5000) { myLanded = "stop"; _parent.popup.gotoAndStop("loser"); } } else { myFailtime = getTimer(); _root.Angry.go = "stop"; } } else if (WinLose == "win") { if (myWinTime) { if ((getTimer() - myWinTime) >= 2000) { myLanded = "stop"; _parent.popup.gotoAndStop("winner"); } } else { myWinTime = getTimer(); _root.Angry.go = "stop"; } } if (exploding == "true") { explode(); gravity(); constant(); myXMovement = 0; myYMovement = 0; WinLose = "lose"; } if (myLanded == "go") { gravity(); constant(); if (key.isDown(38)) { myVelocity = 0.2; engineburn(); myXMovement = Math.cos((Math.PI/180) * myRotation) * myVelocity; myYMovement = Math.sin((Math.PI/180) * myRotation) * myVelocity; } else { myXmovement = 0; myYmovement = 0; } if (key.isDown(37)) { rotate(-1); } if (key.isDown(39)) { rotate(1); } } else if (myLanded == "stop") { myXmovement = 0; myYmovement = 0; myXMomentum = 0; myYMomentum = 0; } }
Instance of Symbol 187 MovieClip "particle" in Frame 107
onClipEvent (load) { if (myGoCommand == "blow") { this._x = _parent.lander._x + (random(20) - 10); this._y = _parent.lander._y + (random(20) - 10); gotoAndStop(random(5) + 5 +98); grow = random(12); } if (myGoCommand == "go") { xDirect = ((random(15) - 7) / 10) + Math.cos((Math.PI/180) * _parent.lander.myRotation); yDirect = ((random(15) - 7) / 10) + Math.sin((Math.PI/180) * _parent.lander.myRotation); gotoAndStop(random(2) + 1 +98); } myTTL = getTimer(); } onClipEvent (enterFrame) { if (myGocommand == "go") { this._x = this._x - (xDirect + _parent.lander.Xparticleshift); this._y = this._y - (yDirect + _parent.lander.Yparticleshift); } if (myGoCommand == "blow") { this._xscale = this._xscale + grow; this._yscale = this._yscale + grow; } if ((getTimer() - myTTL) >= 2500) { removeMovieClip(this); } }
Instance of Symbol 130 MovieClip "planetfinder" in Frame 107
onClipEvent (enterFrame) { this._x = _parent.lander._x; this._y = _parent.lander._y; }
Instance of Symbol 196 MovieClip "Angry" in Frame 107
onClipEvent (load) { myTimerStart = getTimer(); myTime = 80; } onClipEvent (enterFrame) { function trim(theNumber, decPlaces) { if (decPlaces >= 0) { var temp = Math.pow(10, decPlaces); return(Math.round(theNumber * temp) / temp); } } distance = int(Math.sqrt(Math.pow(_parent.lander._x - _parent.foreground._x, 2) + Math.pow(_parent.lander._y - _parent.foreground._y, 2)) - 709); if ((go != "stop") && (myTime != 0)) { timer = myTime - trim((getTimer() - myTimerStart) / 1000, 2); if (0 >= timer) { _parent.popup.gotoAndStop("notime"); _parent.lander.myLanded = "stop"; go = "stop"; } } if (-10 >= _parent.Angry.distance) { _parent.lander.exploding = "true"; _parent.lander.myLanded = "blow"; } }
Frame 108
stopAllSounds(); stop(); if (_root.onOrOff == "on") { _root.musicSphere.gotoAndStop("level2"); }
Frame 109
stopAllSounds(); stop(); randSong();
Instance of Symbol 277 MovieClip "bomb" in Frame 109
onClipEvent (enterFrame) { function bombgrav() { origin_x = _root.foreground._x; origin_y = _root.foreground._y; mouse_x = this._x; mouse_y = this._y; dist_x = mouse_x - origin_x; dist_y = mouse_y - origin_y; if (Number(dist_x) < 0) { normalise = -1 * dist_x; } else { normalise = dist_x; } if (Number(dist_y) < 0) { normalise = Number(normalise) + Number(-1 * dist_y); } else { normalise = Number(normalise) + Number(dist_y); } if ((Number(dist_x) >= 0) and (Number(dist_y) >= 0)) { direction = 90 * (dist_y / normalise); } else if ((0 >= Number(dist_x)) and (Number(dist_y) >= 0)) { direction = Number(-90 * (dist_x / normalise)) + 90; } else if ((0 >= Number(dist_x)) and (0 >= Number(dist_y))) { direction = Number(-90 * (dist_y / normalise)) + 180; } else { direction = Number(90 * (dist_x / normalise)) + 270; } myYGravity = Math.sin((Math.PI/180) * direction) * 6; myXGravity = Math.cos((Math.PI/180) * direction) * 6; } if (activate == "yes") { bombOn = getTimer(); _parent.lander.myGrav = 0.13; _x = _parent.lander._x; _y = _parent.lander._y; _rotation = _parent.lander._rotation; if (key.isDown(32)) { activate = "drop"; _parent.lander.myGrav = 0.06; this.myGrav = 0.07; myYMovement = _parent.lander.myYMovement; myXMovement = _parent.lander.myXMovement; } } else if (activate == "drop") { this._y = this._y - ((myYGravity + _parent.lander.Yparticleshift) - myYMovement); this._x = this._x - ((myXGravity + _parent.lander.Xparticleshift) - myXMovement); bombgrav(); } else if (activate == "stop") { this._y = this._y - _parent.lander.Yparticleshift; this._x = this._x - _parent.lander.Xparticleshift; } }
Instance of Symbol 81 MovieClip "lander" in Frame 109
onClipEvent (load) { myGrav = 0.06; i = 0; if (_quality == "LOW") { myPartAmount = 5; } else if (_quality == "MEDIUM") { myPartAmount = 12; } else { myPartAmount = 25; } if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } onClipEvent (enterFrame) { function rotate(rvar) { _rotation = (_rotation + (3 * rvar)); if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } function constant() { myXMomentum = myXMomentum + (myXMovement - myXGravity); myYMomentum = myYMomentum + (myYMovement - myYGravity); if (((this._x + myXMomentum) >= 480) || (120 >= (this._x + myXMomentum))) { _parent.foreground._x = _parent.foreground._x - myXMomentum; Xparticleshift = myXMomentum; } else { this._x = this._x + myXMomentum; Xparticleshift = 0; } if (((this._y + myYMomentum) >= 280) || (120 >= (this._y + myYMomentum))) { _parent.foreground._y = _parent.foreground._y - myYMomentum; Yparticleshift = myYMomentum; } else { this._y = this._y + myYMomentum; Yparticleshift = 0; } } function arrowcolour() { myDistance = Math.sqrt(Math.pow(_this._x - _parent.foreground._x, 2) + Math.pow(_this._y - _parent.foreground._y, 2)); } function explode() { if (60 >= i) { duplicateMovieClip (_parent.particle, "mcc" + i, i); _parent["mcc" + i].myGocommand = "blow"; i++; blowdelay++; if (i >= 20) { this.gotoAndStop(2); } } } function engineburn() { if (myPartAmount >= i) { duplicateMovieClip (_parent.particle, "mc" + i, i); _parent["mc" + i].myGocommand = "go"; _parent["mc" + i]._x = _x; _parent["mc" + i]._y = _y; i++; } else { i = 0; } } function gravity() { origin_x = _root.foreground._x; origin_y = _root.foreground._y; mouse_x = this._x; mouse_y = this._y; dist_x = mouse_x - origin_x; dist_y = mouse_y - origin_y; if (Number(dist_x) < 0) { normalise = -1 * dist_x; } else { normalise = dist_x; } if (Number(dist_y) < 0) { normalise = Number(normalise) + Number(-1 * dist_y); } else { normalise = Number(normalise) + Number(dist_y); } if ((Number(dist_x) >= 0) and (Number(dist_y) >= 0)) { direction = 90 * (dist_y / normalise); } else if ((0 >= Number(dist_x)) and (Number(dist_y) >= 0)) { direction = Number(-90 * (dist_x / normalise)) + 90; } else if ((0 >= Number(dist_x)) and (0 >= Number(dist_y))) { direction = Number(-90 * (dist_y / normalise)) + 180; } else { direction = Number(90 * (dist_x / normalise)) + 270; } myYGravity = Math.sin((Math.PI/180) * direction) * myGrav; myXGravity = Math.cos((Math.PI/180) * direction) * myGrav; _parent.planetfinder._rotation = direction; } if (WinLose == "lose") { if (myFailTime) { if ((getTimer() - myFailtime) >= 5000) { myLanded = "stop"; _parent.popup.gotoAndStop("loser"); } } else { myFailtime = getTimer(); _root.Angry.go = "stop"; } } else if (WinLose == "win") { if (myWinTime) { if ((getTimer() - myWinTime) >= 2000) { myLanded = "stop"; _parent.popup.gotoAndStop("winner"); } } else { myWinTime = getTimer(); _root.Angry.go = "stop"; } } if (exploding == "true") { explode(); gravity(); constant(); myXMovement = 0; myYMovement = 0; WinLose = "lose"; } if (myLanded == "go") { gravity(); constant(); if (key.isDown(38)) { myVelocity = 0.2; engineburn(); myXMovement = Math.cos((Math.PI/180) * myRotation) * myVelocity; myYMovement = Math.sin((Math.PI/180) * myRotation) * myVelocity; } else { myXmovement = 0; myYmovement = 0; } if (key.isDown(37)) { rotate(-1); } if (key.isDown(39)) { rotate(1); } } else if (myLanded == "stop") { myXmovement = 0; myYmovement = 0; myXMomentum = 0; myYMomentum = 0; } }
Instance of Symbol 187 MovieClip "particle" in Frame 109
onClipEvent (load) { if (myGoCommand == "blow") { this._x = _parent.lander._x + (random(20) - 10); this._y = _parent.lander._y + (random(20) - 10); gotoAndStop(random(5) + 5 +98); grow = random(12); } if (myGoCommand == "go") { xDirect = ((random(15) - 7) / 10) + Math.cos((Math.PI/180) * _parent.lander.myRotation); yDirect = ((random(15) - 7) / 10) + Math.sin((Math.PI/180) * _parent.lander.myRotation); gotoAndStop(random(2) + 1 +98); } myTTL = getTimer(); } onClipEvent (enterFrame) { if (myGocommand == "go") { this._x = this._x - (xDirect + _parent.lander.Xparticleshift); this._y = this._y - (yDirect + _parent.lander.Yparticleshift); } if (myGoCommand == "blow") { this._xscale = this._xscale + grow; this._yscale = this._yscale + grow; } if ((getTimer() - myTTL) >= 2500) { removeMovieClip(this); } }
Instance of Symbol 130 MovieClip "planetfinder" in Frame 109
onClipEvent (enterFrame) { this._x = _parent.lander._x; this._y = _parent.lander._y; }
Instance of Symbol 196 MovieClip "Angry" in Frame 109
onClipEvent (load) { myTimerStart = getTimer(); myTime = 90; } onClipEvent (enterFrame) { function trim(theNumber, decPlaces) { if (decPlaces >= 0) { var temp = Math.pow(10, decPlaces); return(Math.round(theNumber * temp) / temp); } } distance = int(Math.sqrt(Math.pow(_parent.lander._x - _parent.foreground._x, 2) + Math.pow(_parent.lander._y - _parent.foreground._y, 2)) - 709); if ((go != "stop") && (myTime != 0)) { timer = myTime - trim((getTimer() - myTimerStart) / 1000, 2); if (0 >= timer) { _parent.popup.gotoAndStop("notime"); _parent.lander.myLanded = "stop"; go = "stop"; } } if (-10 >= _parent.Angry.distance) { _parent.lander.exploding = "true"; _parent.lander.myLanded = "blow"; } }
Frame 110
stopAllSounds(); stop(); if (_root.onOrOff == "on") { _root.musicSphere.gotoAndStop("level2"); }
Frame 111
stopAllSounds(); stop(); randSong();
Instance of Symbol 312 MovieClip "sput1" in Frame 111
onClipEvent (load) { this._x = -380; this._y = -200; Xdist = this._x - _parent.foreground._x; Ydist = this._y - _parent.foreground._y; this._visible = true; } onClipEvent (enterFrame) { if (dead != "dead") { this._x = _parent.foreground._x + Xdist; this._y = _parent.foreground._y + Ydist; if (docked != "dockme") { if (this.hitTest(_parent.lander._x, _parent.lander._y, true) && (_parent.lander.target == "sput1")) { docked = "dockme"; _parent.lander.myGrav = 0.09; _parent.sputnikfinder._visible = false; } else { this._x = _parent.foreground._x + Xdist; this._y = _parent.foreground._y + Ydist; } } else { this._x = _parent.lander._x; this._y = _parent.lander._y; this._rotation = _parent.lander._rotation; if (_parent.lander.myLanded == "stop") { _parent.sput2._visible = true; _parent.lander.target = "sput2"; _parent.sputnikfinder._visible = true; dead = "dead"; _parent.lander.myGrav = 0.06; nextFrame(); } } } }
Instance of Symbol 312 MovieClip "sput2" in Frame 111
onClipEvent (load) { this._x = 300; this._y = 1900; Xdist = this._x - _parent.foreground._x; Ydist = this._y - _parent.foreground._y; this._visible = false; } onClipEvent (enterFrame) { if (dead != "dead") { this._x = _parent.foreground._x + Xdist; this._y = _parent.foreground._y + Ydist; if (docked != "dockme") { if (this.hitTest(_parent.lander._x, _parent.lander._y, true) && (_parent.lander.target == "sput2")) { docked = "dockme"; _parent.sputnikfinder._visible = false; _parent.lander.myGrav = 0.09; } else { this._x = _parent.foreground._x + Xdist; this._y = _parent.foreground._y + Ydist; } } else { this._x = _parent.lander._x; this._y = _parent.lander._y; this._rotation = _parent.lander._rotation; if (_parent.lander.myLanded == "stop") { _parent.sput3._visible = true; _parent.lander.target = "sput3"; _parent.sputnikfinder._visible = true; dead = "dead"; _parent.lander.myGrav = 0.06; nextFrame(); } } } }
Instance of Symbol 312 MovieClip "sput3" in Frame 111
onClipEvent (load) { this._x = 1300; this._y = 1337; Xdist = this._x - _parent.foreground._x; Ydist = this._y - _parent.foreground._y; this._visible = false; } onClipEvent (enterFrame) { if (dead != "dead") { this._x = _parent.foreground._x + Xdist; this._y = _parent.foreground._y + Ydist; if (docked != "dockme") { if (this.hitTest(_parent.lander._x, _parent.lander._y, true) && (_parent.lander.target == "sput3")) { docked = "dockme"; _parent.lander.myGrav = 0.135; _parent.sputnikfinder._visible = false; } else { this._x = _parent.foreground._x + Xdist; this._y = _parent.foreground._y + Ydist; } } else { this._x = _parent.lander._x; this._y = _parent.lander._y; this._rotation = _parent.lander._rotation; } } }
Instance of Symbol 81 MovieClip "lander" in Frame 111
onClipEvent (load) { myGrav = 0.06; i = 0; target = "sput1"; if (_quality == "LOW") { myPartAmount = 5; } else if (_quality == "MEDIUM") { myPartAmount = 12; } else { myPartAmount = 25; } if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } onClipEvent (enterFrame) { function rotate(rvar) { _rotation = (_rotation + (3 * rvar)); if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } function constant() { myXMomentum = myXMomentum + (myXMovement - myXGravity); myYMomentum = myYMomentum + (myYMovement - myYGravity); if (((this._x + myXMomentum) >= 425) || (175 >= (this._x + myXMomentum))) { _parent.foreground._x = _parent.foreground._x - myXMomentum; Xparticleshift = myXMomentum; } else { this._x = this._x + myXMomentum; Xparticleshift = 0; } if (((this._y + myYMomentum) >= 225) || (175 >= (this._y + myYMomentum))) { _parent.foreground._y = _parent.foreground._y - myYMomentum; Yparticleshift = myYMomentum; } else { this._y = this._y + myYMomentum; Yparticleshift = 0; } } function explode() { if (60 >= i) { duplicateMovieClip (_parent.particle, "mcc" + i, i); _parent["mcc" + i].myGocommand = "blow"; i++; blowdelay++; if (i >= 20) { this.gotoAndStop(2); } } } function engineburn() { if (myPartAmount >= i) { duplicateMovieClip (_parent.particle, "mc" + i, i); _parent["mc" + i].myGocommand = "go"; _parent["mc" + i]._x = _x; _parent["mc" + i]._y = _y; i++; } else { i = 0; } } function sputDirection() { origin_x2 = _parent[target]._x; origin_y2 = _parent[target]._y; mouse_x2 = this._x; mouse_y2 = this._y; dist_x2 = mouse_x2 - origin_x2; dist_y2 = mouse_y2 - origin_y2; if (Number(dist_x2) < 0) { normalise2 = -1 * dist_x2; } else { normalise2 = dist_x2; } if (Number(dist_y2) < 0) { normalise2 = Number(normalise2) + Number(-1 * dist_y2); } else { normalise2 = Number(normalise2) + Number(dist_y2); } if ((Number(dist_x2) >= 0) and (Number(dist_y2) >= 0)) { direction2 = 90 * (dist_y2 / normalise2); } else if ((0 >= Number(dist_x2)) and (Number(dist_y2) >= 0)) { direction2 = Number(-90 * (dist_x2 / normalise2)) + 90; } else if ((0 >= Number(dist_x2)) and (0 >= Number(dist_y2))) { direction2 = Number(-90 * (dist_y2 / normalise2)) + 180; } else { direction2 = Number(90 * (dist_x2 / normalise2)) + 270; } _root.sputnikfinder._rotation = direction2; } function gravity() { origin_x = _root.foreground._x; origin_y = _root.foreground._y; mouse_x = this._x; mouse_y = this._y; dist_x = mouse_x - origin_x; dist_y = mouse_y - origin_y; if (Number(dist_x) < 0) { normalise = -1 * dist_x; } else { normalise = dist_x; } if (Number(dist_y) < 0) { normalise = Number(normalise) + Number(-1 * dist_y); } else { normalise = Number(normalise) + Number(dist_y); } if ((Number(dist_x) >= 0) and (Number(dist_y) >= 0)) { direction = 90 * (dist_y / normalise); } else if ((0 >= Number(dist_x)) and (Number(dist_y) >= 0)) { direction = Number(-90 * (dist_x / normalise)) + 90; } else if ((0 >= Number(dist_x)) and (0 >= Number(dist_y))) { direction = Number(-90 * (dist_y / normalise)) + 180; } else { direction = Number(90 * (dist_x / normalise)) + 270; } myYGravity = Math.sin((Math.PI/180) * direction) * myGrav; myXGravity = Math.cos((Math.PI/180) * direction) * myGrav; _parent.planetfinder._rotation = direction; } if (WinLose == "lose") { if (myFailTime) { if ((getTimer() - myFailtime) >= 5000) { myLanded = "stop"; _parent.popup.gotoAndStop("loser"); } } else { myFailtime = getTimer(); _root.Angry.go = "stop"; } } else if (WinLose == "win") { if (myWinTime) { if ((getTimer() - myWinTime) >= 2000) { myLanded = "stop"; _parent.popup.gotoAndStop("winner"); } } else { myWinTime = getTimer(); _root.Angry.go = "stop"; } } if (exploding == "true") { explode(); gravity(); constant(); myXMovement = 0; myYMovement = 0; WinLose = "lose"; } if (myLanded == "go") { gravity(); constant(); sputDirection(); if (key.isDown(38)) { myVelocity = 0.2; engineburn(); myXMovement = Math.cos((Math.PI/180) * myRotation) * myVelocity; myYMovement = Math.sin((Math.PI/180) * myRotation) * myVelocity; } else { myXmovement = 0; myYmovement = 0; } if (key.isDown(37)) { rotate(-1); } if (key.isDown(39)) { rotate(1); } } else if (myLanded == "stop") { myXmovement = 0; myYmovement = 0; myXMomentum = 0; myYMomentum = 0; } }
Instance of Symbol 187 MovieClip "particle" in Frame 111
onClipEvent (load) { if (myGoCommand == "blow") { this._x = _parent.lander._x + (random(20) - 10); this._y = _parent.lander._y + (random(20) - 10); gotoAndStop(random(5) + 5 +98); grow = random(12); } if (myGoCommand == "go") { xDirect = ((random(15) - 7) / 10) + Math.cos((Math.PI/180) * _parent.lander.myRotation); yDirect = ((random(15) - 7) / 10) + Math.sin((Math.PI/180) * _parent.lander.myRotation); gotoAndStop(random(2) + 1 +98); } myTTL = getTimer(); } onClipEvent (enterFrame) { if (myGocommand == "go") { this._x = this._x - (xDirect + _parent.lander.Xparticleshift); this._y = this._y - (yDirect + _parent.lander.Yparticleshift); } if (myGoCommand == "blow") { this._xscale = this._xscale + grow; this._yscale = this._yscale + grow; } if ((getTimer() - myTTL) >= 2500) { removeMovieClip(this); } }
Instance of Symbol 130 MovieClip "planetfinder" in Frame 111
onClipEvent (enterFrame) { this._x = _parent.lander._x; this._y = _parent.lander._y; }
Instance of Symbol 306 MovieClip "sputnikfinder" in Frame 111
onClipEvent (enterFrame) { this._x = _parent.lander._x; this._y = _parent.lander._y; }
Instance of Symbol 196 MovieClip "Angry" in Frame 111
onClipEvent (load) { myTimerStart = getTimer(); myTime = 120; } onClipEvent (enterFrame) { function trim(theNumber, decPlaces) { if (decPlaces >= 0) { var temp = Math.pow(10, decPlaces); return(Math.round(theNumber * temp) / temp); } } distance = int(Math.sqrt(Math.pow(_parent.lander._x - _parent.foreground._x, 2) + Math.pow(_parent.lander._y - _parent.foreground._y, 2)) - 709); if ((go != "stop") && (myTime != 0)) { timer = myTime - trim((getTimer() - myTimerStart) / 1000, 2); if (0 >= timer) { _parent.popup.gotoAndStop("notime"); _parent.lander.myLanded = "stop"; go = "stop"; } } if (-17 >= _parent.Angry.distance) { _parent.lander.exploding = "true"; _parent.lander.myLanded = "blow"; } }
Frame 112
stopAllSounds(); stop(); if (_root.onOrOff == "on") { _root.musicSphere.gotoAndStop("level2"); }
Frame 113
stopAllSounds(); stop(); randSong();
Instance of Symbol 81 MovieClip "lander" in Frame 113
onClipEvent (load) { myGrav = 0.06; i = 0; if (_quality == "LOW") { myPartAmount = 5; } else if (_quality == "MEDIUM") { myPartAmount = 12; } else { myPartAmount = 25; } if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } onClipEvent (enterFrame) { function rotate(rvar) { _rotation = (_rotation + (3 * rvar)); if (_rotation < 0) { myRotation = 360 + _rotation; } else { myRotation = _rotation; } } function constant() { myXMomentum = myXMomentum + (myXMovement - myXGravity); myYMomentum = myYMomentum + (myYMovement - myYGravity); if (((this._x + myXMomentum) >= 425) || (175 >= (this._x + myXMomentum))) { _parent.foreground._x = _parent.foreground._x - myXMomentum; Xparticleshift = myXMomentum; } else { this._x = this._x + myXMomentum; Xparticleshift = 0; } if (((this._y + myYMomentum) >= 225) || (175 >= (this._y + myYMomentum))) { _parent.foreground._y = _parent.foreground._y - myYMomentum; Yparticleshift = myYMomentum; } else { this._y = this._y + myYMomentum; Yparticleshift = 0; } } function arrowcolour() { myDistance = Math.sqrt(Math.pow(_this._x - _parent.foreground._x, 2) + Math.pow(_this._y - _parent.foreground._y, 2)); } function explode() { if (60 >= i) { duplicateMovieClip (_parent.particle, "mcc" + i, i); _parent["mcc" + i].myGocommand = "blow"; i++; blowdelay++; if (i >= 20) { this.gotoAndStop(2); } } } function engineburn() { if (myPartAmount >= i) { duplicateMovieClip (_parent.particle, "mc" + i, i); _parent["mc" + i].myGocommand = "go"; _parent["mc" + i]._x = _x; _parent["mc" + i]._y = _y; i++; } else { i = 0; } } function gravity() { origin_x = _root.foreground._x; origin_y = _root.foreground._y; mouse_x = this._x; mouse_y = this._y; dist_x = mouse_x - origin_x; dist_y = mouse_y - origin_y; if (Number(dist_x) < 0) { normalise = -1 * dist_x; } else { normalise = dist_x; } if (Number(dist_y) < 0) { normalise = Number(normalise) + Number(-1 * dist_y); } else { normalise = Number(normalise) + Number(dist_y); } if ((Number(dist_x) >= 0) and (Number(dist_y) >= 0)) { direction = 90 * (dist_y / normalise); } else if ((0 >= Number(dist_x)) and (Number(dist_y) >= 0)) { direction = Number(-90 * (dist_x / normalise)) + 90; } else if ((0 >= Number(dist_x)) and (0 >= Number(dist_y))) { direction = Number(-90 * (dist_y / normalise)) + 180; } else { direction = Number(90 * (dist_x / normalise)) + 270; } myYGravity = Math.sin((Math.PI/180) * direction) * myGrav; myXGravity = Math.cos((Math.PI/180) * direction) * myGrav; _parent.planetfinder._rotation = direction; } if (WinLose == "lose") { if (myFailTime) { if ((getTimer() - myFailtime) >= 5000) { myLanded = "stop"; _parent.popup.gotoAndStop("loser"); } } else { myFailtime = getTimer(); _root.Angry.go = "stop"; } } else if (WinLose == "win") { if (myWinTime) { if ((getTimer() - myWinTime) >= 2000) { myLanded = "stop"; stopAllSounds(); _root.nextFrame(); } } else { myWinTime = getTimer(); _root.Angry.go = "stop"; } } if (exploding == "true") { explode(); gravity(); constant(); myXMovement = 0; myYMovement = 0; WinLose = "lose"; } if (myLanded == "go") { gravity(); constant(); if (key.isDown(38)) { myVelocity = 0.2; engineburn(); myXMovement = Math.cos((Math.PI/180) * myRotation) * myVelocity; myYMovement = Math.sin((Math.PI/180) * myRotation) * myVelocity; } else { myXmovement = 0; myYmovement = 0; } if (key.isDown(37)) { rotate(-1); } if (key.isDown(39)) { rotate(1); } } else if (myLanded == "stop") { myXmovement = 0; myYmovement = 0; myXMomentum = 0; myYMomentum = 0; } }
Instance of Symbol 187 MovieClip "particle" in Frame 113
onClipEvent (load) { if (myGoCommand == "blow") { this._x = _parent.lander._x + (random(20) - 10); this._y = _parent.lander._y + (random(20) - 10); gotoAndStop(random(5) + 5 +98); grow = random(12); } if (myGoCommand == "go") { xDirect = ((random(15) - 7) / 10) + Math.cos((Math.PI/180) * _parent.lander.myRotation); yDirect = ((random(15) - 7) / 10) + Math.sin((Math.PI/180) * _parent.lander.myRotation); gotoAndStop(random(2) + 1 +98); } myTTL = getTimer(); } onClipEvent (enterFrame) { if (myGocommand == "go") { this._x = this._x - (xDirect + _parent.lander.Xparticleshift); this._y = this._y - (yDirect + _parent.lander.Yparticleshift); } if (myGoCommand == "blow") { this._xscale = this._xscale + grow; this._yscale = this._yscale + grow; } if ((getTimer() - myTTL) >= 2500) { removeMovieClip(this); } }
Instance of Symbol 130 MovieClip "planetfinder" in Frame 113
onClipEvent (enterFrame) { this._x = _parent.lander._x; this._y = _parent.lander._y; }
Instance of Symbol 196 MovieClip "Angry" in Frame 113
onClipEvent (load) { myTimerStart = getTimer(); myTime = 120; } onClipEvent (enterFrame) { function trim(theNumber, decPlaces) { if (decPlaces >= 0) { var temp = Math.pow(10, decPlaces); return(Math.round(theNumber * temp) / temp); } } distance = int(Math.sqrt(Math.pow(_parent.lander._x - _parent.foreground._x, 2) + Math.pow(_parent.lander._y - _parent.foreground._y, 2)) - 709); if ((go != "stop") && (myTime != 0)) { timer = myTime - trim((getTimer() - myTimerStart) / 1000, 2); if (0 >= timer) { _parent.popup.gotoAndStop("notime"); _parent.lander.myLanded = "stop"; go = "stop"; } } if (-10 >= _parent.Angry.distance) { _parent.lander.exploding = "true"; _parent.lander.myLanded = "blow"; } }
Frame 114
stop();
Symbol 21 MovieClip Frame 99
stop();
Symbol 40 MovieClip Frame 1
stop();
Symbol 40 MovieClip Frame 2
stop();
Symbol 40 MovieClip Frame 3
stop();
Symbol 40 MovieClip Frame 4
stop();
Symbol 40 MovieClip Frame 5
nextFrame();
Symbol 40 MovieClip Frame 6
stop();
Symbol 41 MovieClip Frame 1
stop();
Symbol 41 MovieClip Frame 2
stopAllSounds(); stop();
Symbol 41 MovieClip Frame 3
stop();
Symbol 41 MovieClip Frame 4
stop();
Symbol 41 MovieClip Frame 5
stop();
Symbol 41 MovieClip Frame 6
stop();
Symbol 41 MovieClip Frame 7
stop();
Symbol 41 MovieClip Frame 8
stop();
Symbol 43 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 1
stop();
Symbol 50 MovieClip Frame 2
play();
Symbol 55 MovieClip Frame 1
stop();
Instance of Symbol 50 MovieClip "eye" in Symbol 55 MovieClip Frame 1
onClipEvent (enterFrame) { if (random(100) == 50) { this.play(); } }
Symbol 55 MovieClip Frame 2
stop();
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 2
stop();
Symbol 82 MovieClip Frame 646
stop(); _root.nextFrame();
Symbol 88 Button
on (release) { _root.nextFrame(); }
Symbol 95 Button
on (release) { _parent.gotoAndStop("b1"); }
Symbol 98 Button
on (release) { getURL ("http://www.miniclip.com", "_blank"); }
Symbol 101 Button
on (release) { getURL ("http://www.miniclip.com/signup.htm", "_blank"); }
Symbol 104 Button
on (release) { gotoAndStop ("howtoplay"); }
Symbol 107 Button
on (release) { getURL ("http://www.miniclip.com/Downloads.htm", "_blank"); }
Symbol 111 Button
on (release) { getURL ("http://www.miniclip.com/Homepage.htm", "_blank"); }
Symbol 116 Button
on (release) { gotoAndStop (1); }
Symbol 140 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 2
stop();
Symbol 146 MovieClip Frame 41
stop();
Symbol 147 MovieClip Frame 1
stop();
Symbol 148 MovieClip Frame 1
stop();
Instance of Symbol 43 MovieClip "theorb" in Symbol 148 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 1.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 1.5; myDelay = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad" in Symbol 148 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); } if (key.isDown(38) && (1000 < (getTimer() - myLandTime))) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad2" in Symbol 148 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (500 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); _parent._parent.lander.WinLose = "win"; } } }
Symbol 153 Button
on (release) { nextFrame(); }
Symbol 157 Button
on (release) { gotoAndStop(_totalframes); }
Symbol 179 Button
on (release) { _root.nextFrame(); }
Symbol 182 Button
on (release) { _parent.gotoAndPlay(1); }
Symbol 185 MovieClip Frame 1
stop();
Symbol 185 MovieClip Frame 5
play();
Symbol 185 MovieClip Frame 26
stop();
Symbol 187 MovieClip Frame 1
stop();
Symbol 187 MovieClip Frame 6
stop();
Symbol 189 Button
on (release) { getURL ("http://www.miniclip.com", "_blank"); }
Symbol 196 MovieClip Frame 1
stop();
Symbol 203 Button
on (rollOver) { play(); }
Symbol 207 Button
on (release) { gotoAndStop(_parent._parent.prevFrame()); }
Symbol 210 Button
on (release) { _quality = "HIGH"; _parent._parent.lander.myPartAmount = 25; _parent._parent.lander.myLandTime = getTimer(); }
Symbol 213 Button
on (release) { _quality = "LOW"; _parent._parent.lander.myPartAmount = 5; _parent._parent.lander.myLandTime = getTimer(); }
Symbol 216 Button
on (release) { if (_root.onOrOff == "on") { _root.onOrOff = "off"; _root.randSong(); } else { _root.onOrOff = "on"; _root.randSong(); } }
Symbol 219 Button
on (release) { if (_parent._parent.noisecube.onOrOff == "on") { _parent._parent.noisecube.onOrOff = "off"; } else { _parent._parent.noisecube.onOrOff = "on"; } }
Symbol 222 Button
on (release) { getURL ("http://www.miniclip.com", "_blank"); }
Symbol 225 Button
on (release) { _parent._parent.popup.gotoAndStop(2); }
Symbol 228 MovieClip Frame 1
stop();
Instance of Symbol 227 MovieClip in Symbol 228 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { } else { _parent.play(); } }
Symbol 228 MovieClip Frame 10
stop();
Instance of Symbol 227 MovieClip in Symbol 228 MovieClip Frame 10
onClipEvent (enterFrame) { if (this.hitTest(_root._xmouse, _root._ymouse, true)) { } else { _parent.play(); } }
Symbol 230 Button
on (release) { gotoAndStop (1); }
Symbol 237 Button
on (release) { _parent.nextFrame(); }
Symbol 240 Button
on (release) { _parent.prevFrame(); }
Symbol 244 MovieClip Frame 1
stop(); _parent.lander.myLanded = "go";
Symbol 244 MovieClip Frame 2
_parent.lander.myLanded = "pause";
Symbol 244 MovieClip Frame 3
stop();
Symbol 244 MovieClip Frame 4
stop(); if (_root.onOrOff == "on") { stopAllSounds(); _root.musicSphere.gotoAndStop("gameover"); }
Symbol 244 MovieClip Frame 5
stop(); _root.musiccube.mysound("gameOver");
Symbol 246 Button
on (release) { gotoAndPlay(_currentframe + 1); }
Symbol 247 Button
on (release) { gotoAndStop(_totalframes); }
Symbol 253 MovieClip Frame 1
stop();
Instance of Symbol 147 MovieClip "landingpad2" in Symbol 253 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (500 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); } if (key.isDown(38) && (1000 < (getTimer() - myLandTime))) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 43 MovieClip "theorb" in Symbol 253 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 1.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 1.5; myDelay = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad" in Symbol 253 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); } if (key.isDown(38) && (1000 < (getTimer() - myLandTime))) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 43 MovieClip "theorb" in Symbol 253 MovieClip Frame 2
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 1.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 1.5; myDelay = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad" in Symbol 253 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); } if (key.isDown(38) && (1000 < (getTimer() - myLandTime))) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad2" in Symbol 253 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (500 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); } if (key.isDown(38) && (1000 < (getTimer() - myLandTime))) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Symbol 253 MovieClip Frame 91
stop();
Symbol 253 MovieClip Frame 171
stop();
Symbol 253 MovieClip Frame 262
stop();
Symbol 253 MovieClip Frame 286
stop();
Symbol 254 MovieClip Frame 1
stop();
Instance of Symbol 43 MovieClip "theorb" in Symbol 254 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if (_parent._parent.lander.i >= 40) { _parent._parent.lander.exploding = "stop"; _parent._parent.lander.myLanded = "stop"; } else if (_parent._parent.lander.exploding == "true") { _parent._parent.lander.myXMomentum = 0; _parent._parent.lander.myYMomentum = 0; } else if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 1.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 1.5; myDelay = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad" in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); if (_parent._parent.lander.goal == "complete") { _parent._parent.lander.WinLose = "win"; } } if ((key.isDown(38) && (1000 < (getTimer() - myLandTime))) && (_parent._parent.lander.goal != "complete")) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad2" in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (500 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; _parent._parent.lander.goal = "complete"; this.gotoAndStop(2); } if (key.isDown(38) && (1000 < (getTimer() - myLandTime))) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 57 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Symbol 260 MovieClip Frame 1
stop();
Instance of Symbol 43 MovieClip "theorb" in Symbol 260 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if (_parent._parent.lander.i >= 40) { _parent._parent.lander.exploding = "stop"; _parent._parent.lander.myLanded = "stop"; } else if (_parent._parent.lander.exploding == "true") { _parent._parent.lander.myXMomentum = 0; _parent._parent.lander.myYMomentum = 0; } else if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 1.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 1.5; myDelay = getTimer(); } } if (this.hitTest(_parent._parent.bomb._x, _parent._parent.bomb._y, true)) { if (_parent._parent.bomb.activate == "yes") { _parent._parent.bomb.play(); _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; _parent._parent.bomb.activate = "stop"; } else if (_parent._parent.bomb.activate == "drop") { _parent._parent.bomb.play(); _parent._parent.bomb.activate = "stop"; } } }
Instance of Symbol 257 MovieClip "rocket" in Symbol 260 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 55 MovieClip "creat2" in Symbol 260 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 55 MovieClip "creat1" in Symbol 260 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 259 MovieClip "batt" in Symbol 260 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 147 MovieClip "landingpad2" in Symbol 260 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); _parent._parent.lander.bat = "attached"; } if ((key.isDown(38) && (1000 < (getTimer() - myLandTime))) && (_parent._parent.lander.goal != "complete")) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad1" in Symbol 260 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); if (_parent._parent.sput3.docked == "dockme") { _parent._parent.lander.WinLose = "win"; } } if ((key.isDown(38) && (1000 < (getTimer() - myLandTime))) && (_parent._parent.lander.goal != "complete")) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad3" in Symbol 260 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); if (_parent._parent.lander.bat == "attached") { _parent._parent.lander.WinLose = "win"; } } if ((key.isDown(38) && (1000 < (getTimer() - myLandTime))) && (_parent._parent.lander.goal != "complete")) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Symbol 268 MovieClip Frame 1
stop();
Symbol 268 MovieClip Frame 2
stop();
Symbol 268 MovieClip Frame 3
stop();
Symbol 268 MovieClip Frame 4
stop();
Symbol 268 MovieClip Frame 5
play();
Symbol 268 MovieClip Frame 28
stop();
Symbol 277 MovieClip Frame 1
stop();
Symbol 277 MovieClip Frame 2
if (_parent.noisecube.onOrOff == "on") { _parent.noisecube.gotoAndStop(5); }
Symbol 277 MovieClip Frame 23
removeMovieClip(this); stop();
Symbol 278 MovieClip Frame 1000
gotoAndPlay (1);
Symbol 278 MovieClip Frame 1002
stop();
Symbol 279 MovieClip Frame 1
stop();
Instance of Symbol 43 MovieClip "theorb" in Symbol 279 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if (_parent._parent.lander.i >= 40) { _parent._parent.lander.exploding = "stop"; _parent._parent.lander.myLanded = "stop"; } else if (_parent._parent.lander.exploding == "true") { _parent._parent.lander.myXMomentum = 0; _parent._parent.lander.myYMomentum = 0; } else if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 1.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 1.5; myDelay = getTimer(); } } if (this.hitTest(_parent._parent.bomb._x, _parent._parent.bomb._y, true) && (_parent._parent.bomb.bombOn >= 500)) { if (_parent._parent.bomb.activate == "yes") { _parent._parent.bomb.play(); _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; _parent._parent.bomb.activate = "stop"; _parent._parent.lander.WinLose = "lose"; } else if (_parent._parent.bomb.activate == "drop") { _parent._parent.bomb.play(); _parent._parent.bomb.activate = "stop"; _parent._parent.lander.WinLose = "lose"; } } }
Instance of Symbol 147 MovieClip "landingpad" in Symbol 279 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); } if ((key.isDown(38) && (1000 < (getTimer() - myLandTime))) && (_parent._parent.lander.goal != "complete")) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 272 MovieClip in Symbol 279 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } if (this.hitTest(_parent._parent.bomb._x, _parent._parent.bomb._y, true)) { if (_parent._parent.bomb.activate == "yes") { _parent._parent.bomb.play(); _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; _parent._parent.bomb.activate = "stop"; } else if (_parent._parent.bomb.activate == "drop") { _parent._parent.bomb.play(); _parent._parent.bomb.activate = "stop"; } } }
Instance of Symbol 278 MovieClip in Symbol 279 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { _parent._parent.bomb.activate = "yes"; this.gotoAndStop("FloatBomb"); } }
Instance of Symbol 55 MovieClip in Symbol 279 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (_parent._parent.bomb.activate != "stop")) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } if (this.hitTest(_parent._parent.bomb._x, _parent._parent.bomb._y, true)) { if (_parent._parent.bomb.activate == "yes") { _parent._parent.bomb.play(); _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; _parent._parent.bomb.activate = "stop"; } else if (_parent._parent.bomb.activate == "drop") { _parent._parent.bomb.play(); this.play(); _parent._parent.lander.WinLose = "win"; _parent._parent.bomb.activate = "stop"; } } }
Symbol 286 MovieClip Frame 1
stop();
Symbol 286 MovieClip Frame 2
stop();
Symbol 286 MovieClip Frame 3
stop();
Symbol 286 MovieClip Frame 4
stop();
Symbol 286 MovieClip Frame 5
play();
Symbol 286 MovieClip Frame 27
stop();
Symbol 308 MovieClip Frame 625
gotoAndPlay (1);
Symbol 309 MovieClip Frame 1
stop();
Instance of Symbol 43 MovieClip "theorb" in Symbol 309 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if (_parent._parent.lander.i >= 40) { _parent._parent.lander.exploding = "stop"; _parent._parent.lander.myLanded = "stop"; } else if (_parent._parent.lander.exploding == "true") { _parent._parent.lander.myXMomentum = 0; _parent._parent.lander.myYMomentum = 0; } else if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 1.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 1.5; myDelay = getTimer(); } } }
Instance of Symbol 257 MovieClip "rocket" in Symbol 309 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad2" in Symbol 309 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); if (_parent._parent.sput3.docked == "dockme") { _parent._parent.lander.WinLose = "win"; } } if ((key.isDown(38) && (1000 < (getTimer() - myLandTime))) && (_parent._parent.lander.goal != "complete")) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 308 MovieClip in Symbol 309 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Symbol 311 MovieClip Frame 1
stop();
Symbol 311 MovieClip Frame 2
stop();
Symbol 311 MovieClip Frame 3
stop();
Symbol 311 MovieClip Frame 4
stop();
Symbol 311 MovieClip Frame 5
play();
Symbol 311 MovieClip Frame 28
stop();
Symbol 312 MovieClip Frame 1
stop();
Symbol 312 MovieClip Frame 2
stop();
Symbol 321 MovieClip Frame 1
stop();
Instance of Symbol 43 MovieClip "theorb" in Symbol 321 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if (_parent._parent.lander.i >= 40) { _parent._parent.lander.exploding = "stop"; _parent._parent.lander.myLanded = "stop"; } else if (_parent._parent.lander.exploding == "true") { _parent._parent.lander.myXMomentum = 0; _parent._parent.lander.myYMomentum = 0; } else if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 1.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 1.5; myDelay = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad" in Symbol 321 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); if ((_parent._parent.lander.pad1 == "done") && (_parent._parent.lander.pad2 == "done")) { _parent._parent.lander.WinLose = "win"; } } if (key.isDown(38) && (1000 < (getTimer() - myLandTime))) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad2" in Symbol 321 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); _parent._parent.lander.pad1 = "done"; } if ((key.isDown(38) && (1000 < (getTimer() - myLandTime))) && (_parent._parent.lander.goal != "complete")) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 147 MovieClip "landingpad3" in Symbol 321 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true) && (700 < (getTimer() - myTakeoff))) { if (_parent._parent.lander.myLanded != "stop") { myLandTime = getTimer(); } if (((this._rotation - 10) < _parent._parent.lander._rotation) && (_parent._parent.lander._rotation < (this._rotation + 20))) { _parent._parent.lander.myLanded = "stop"; this.gotoAndStop(2); _parent._parent.lander.pad2 = "done"; } if ((key.isDown(38) && (1000 < (getTimer() - myLandTime))) && (_parent._parent.lander.goal != "complete")) { _parent._parent.lander.myLanded = "go"; this.gotoAndStop(1); myTakeoff = getTimer(); } } }
Instance of Symbol 308 MovieClip in Symbol 321 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 57 MovieClip "brick" in Symbol 321 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 319 MovieClip "bioooze" in Symbol 321 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 55 MovieClip "creature1 " in Symbol 321 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 257 MovieClip "rocketwooohh" in Symbol 321 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Instance of Symbol 55 MovieClip " creature2" in Symbol 321 MovieClip Frame 1
onClipEvent (load) { myDelay = -300; } onClipEvent (enterFrame) { if (this.hitTest(_parent._parent.lander._x, _parent._parent.lander._y, true)) { if ((myDelay + 300) < getTimer()) { _parent._parent.lander.myXMomentum = (_parent._parent.lander.myXMomentum * -1) / 2.5; _parent._parent.lander.myYMomentum = (_parent._parent.lander.myYMomentum * -1) / 2.5; _parent._parent.lander.exploding = "true"; _parent._parent.lander.myLanded = "blow"; myDelay = getTimer(); } } }
Symbol 326 MovieClip Frame 1
stop();
Symbol 326 MovieClip Frame 5
play();
Symbol 326 MovieClip Frame 27
stop();
Symbol 329 MovieClip Frame 1
stop();
Symbol 335 MovieClip Frame 1
stop();
Symbol 342 MovieClip Frame 2
if (_root.onOrOff == "off") { stopAllSounds(); }
Symbol 342 MovieClip Frame 90
robot.playme = "go";
Symbol 342 MovieClip Frame 200
robot.playme == "stop";
Symbol 342 MovieClip Frame 608
stop();

Library Items

Symbol 1 Sound [gameOver]Used by:41
Symbol 2 Sound [level4]Used by:41
Symbol 3 Sound [level3]Used by:41
Symbol 4 Sound [level2]Used by:41
Symbol 5 Sound [level1]Used by:41
Symbol 6 Sound [intro]Used by:41
Symbol 7 GraphicUsed by:Timeline
Symbol 8 GraphicUsed by:21 140
Symbol 9 ShapeTweeningUsed by:21
Symbol 10 GraphicUsed by:21
Symbol 11 SoundUsed by:21
Symbol 12 GraphicUsed by:21
Symbol 13 BitmapUsed by:14
Symbol 14 GraphicUses:13Used by:21
Symbol 15 GraphicUsed by:21
Symbol 16 GraphicUsed by:21
Symbol 17 GraphicUsed by:21
Symbol 18 SoundUsed by:21
Symbol 19 FontUsed by:20
Symbol 20 TextUses:19Used by:21
Symbol 21 MovieClipUses:8 9 10 11 12 14 15 16 17 18 20Used by:Timeline
Symbol 22 GraphicUsed by:82  Timeline
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:82  Timeline
Symbol 25 GraphicUsed by:Timeline
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:Timeline
Symbol 28 FontUsed by:29 58 128
Symbol 29 TextUses:28Used by:Timeline
Symbol 30 FontUsed by:31 32 46 83 84 90 92 93 96 97 99 100 102 103 105 106 125 126 138 151 152 198 201 205 206 208 209 211 212 214 215 217 218 220 221 223 224 333 336 337 338 339
Symbol 31 EditableTextUses:30Used by:Timeline
Symbol 32 TextUses:30Used by:Timeline
Symbol 33 GraphicUsed by:Timeline
Symbol 34 GraphicUsed by:36 189
Symbol 35 GraphicUsed by:36 98 101 104 107 189 207 210 213 216 219 222 225
Symbol 36 ButtonUses:34 35Used by:Timeline
Symbol 37 SoundUsed by:40
Symbol 38 SoundUsed by:40
Symbol 39 SoundUsed by:40
Symbol 40 MovieClipUses:37 38 39Used by:Timeline
Symbol 41 MovieClipUses:6 5 4 3 2 1Used by:Timeline
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:82 89 140 148 253 254 260 279 309 321
Symbol 44 GraphicUsed by:82 257
Symbol 45 GraphicUsed by:66 82 342
Symbol 46 TextUses:30Used by:82
Symbol 47 GraphicUsed by:55
Symbol 48 GraphicUsed by:50
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:48 49Used by:55
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:55 260 286 321
Symbol 53 GraphicUsed by:55
Symbol 54 GraphicUsed by:55
Symbol 55 MovieClipUses:47 50 52 53 54Used by:82 260 279 321 326
Symbol 56 GraphicUsed by:57 253
Symbol 57 MovieClipUses:56Used by:82 254 321
Symbol 58 TextUses:28Used by:82
Symbol 59 GraphicUsed by:60 61 81 95 127
Symbol 60 MovieClipUses:59Used by:82
Symbol 61 MovieClipUses:59Used by:82
Symbol 62 GraphicUsed by:63 111 153 157 182 184 246 247
Symbol 63 MovieClipUses:62Used by:82
Symbol 64 FontUsed by:65 118 119 120 121 202
Symbol 65 TextUses:64Used by:82
Symbol 66 MovieClipUses:45Used by:82
Symbol 67 GraphicUsed by:81 95 127
Symbol 68 GraphicUsed by:81 95 127
Symbol 69 GraphicUsed by:81 95 127
Symbol 70 GraphicUsed by:81 95 127
Symbol 71 GraphicUsed by:81 95 127
Symbol 72 ShapeTweeningUsed by:75 95
Symbol 73 ShapeTweeningUsed by:75
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:72 73 74Used by:81 95 127
Symbol 76 GraphicUsed by:81 95 127
Symbol 77 GraphicUsed by:81
Symbol 78 GraphicUsed by:81
Symbol 79 GraphicUsed by:81
Symbol 80 GraphicUsed by:81
Symbol 81 MovieClipUses:59 67 68 69 70 71 75 76 77 78 79 80Used by:82 185  Timeline
Symbol 82 MovieClipUses:22 43 44 45 46 55 57 58 60 61 63 65 66 81 24 SS1Used by:Timeline
Symbol 83 TextUses:30Used by:88
Symbol 84 TextUses:30Used by:88
Symbol 85 GraphicUsed by:88
Symbol 86 FontUsed by:87 91
Symbol 87 TextUses:86Used by:88
Symbol 88 ButtonUses:83 84 85 87Used by:Timeline
Symbol 89 MovieClipUses:43Used by:140
Symbol 90 TextUses:30Used by:140
Symbol 91 TextUses:86Used by:140
Symbol 92 TextUses:30Used by:95
Symbol 93 TextUses:30Used by:95
Symbol 94 GraphicUsed by:95
Symbol 95 ButtonUses:59 67 68 69 70 71 75 76 92 93 72 94Used by:140
Symbol 96 TextUses:30Used by:98
Symbol 97 TextUses:30Used by:98
Symbol 98 ButtonUses:96 97 35Used by:140
Symbol 99 TextUses:30Used by:101
Symbol 100 TextUses:30Used by:101
Symbol 101 ButtonUses:99 100 35Used by:140
Symbol 102 TextUses:30Used by:104
Symbol 103 TextUses:30Used by:104
Symbol 104 ButtonUses:102 103 35Used by:140
Symbol 105 TextUses:30Used by:107
Symbol 106 TextUses:30Used by:107
Symbol 107 ButtonUses:105 106 35Used by:140
Symbol 108 GraphicUsed by:140
Symbol 109 FontUsed by:110
Symbol 110 TextUses:109Used by:140
Symbol 111 ButtonUses:62Used by:140 196
Symbol 112 GraphicUsed by:140
Symbol 113 GraphicUsed by:116 230
Symbol 114 GraphicUsed by:116 230
Symbol 115 GraphicUsed by:116 230
Symbol 116 ButtonUses:113 114 115Used by:140
Symbol 117 GraphicUsed by:140
Symbol 118 TextUses:64Used by:140
Symbol 119 TextUses:64Used by:140
Symbol 120 TextUses:64Used by:140
Symbol 121 TextUses:64Used by:140
Symbol 122 GraphicUsed by:140
Symbol 123 FontUsed by:124
Symbol 124 TextUses:123Used by:140
Symbol 125 TextUses:30Used by:140
Symbol 126 TextUses:30Used by:140
Symbol 127 MovieClipUses:59 67 68 69 70 71 75 76Used by:140 253 311
Symbol 128 TextUses:28Used by:140
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:129Used by:140  Timeline
Symbol 131 FontUsed by:132 133 134 135 136 137 150 154 159 164 165 176 181 190 191 192 193 194 195 245 248 250 251 252 261 262 263 266 267 270 280 281 284 285 289
Symbol 132 TextUses:131Used by:140
Symbol 133 TextUses:131Used by:140
Symbol 134 TextUses:131Used by:140
Symbol 135 TextUses:131Used by:140
Symbol 136 TextUses:131Used by:140
Symbol 137 TextUses:131Used by:140
Symbol 138 TextUses:30Used by:140
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:89 90 91 95 98 101 104 107 108 8 110 111 112 116 117 118 119 120 121 122 124 125 43 126 127 128 130 132 133 134 135 136 137 138 139Used by:Timeline
Symbol 141 GraphicUsed by:148 253 254 260 279 309 321
Symbol 142 GraphicUsed by:147
Symbol 143 ShapeTweeningUsed by:146
Symbol 144 ShapeTweeningUsed by:146
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:143 144 145Used by:147
Symbol 147 MovieClipUses:142 146Used by:148 253 254 260 279 309 321
Symbol 148 MovieClipUses:43 141 147Used by:185  Timeline
Symbol 149 GraphicUsed by:185 253 268 286 311 326
Symbol 150 TextUses:131Used by:185
Symbol 151 TextUses:30Used by:153 246
Symbol 152 TextUses:30Used by:153 246
Symbol 153 ButtonUses:151 152 62Used by:185 268 286 311 326
Symbol 154 TextUses:131Used by:157 184 247
Symbol 155 FontUsed by:156 282
Symbol 156 TextUses:155Used by:157 184 247
Symbol 157 ButtonUses:154 62 156Used by:185
Symbol 158 GraphicUsed by:185
Symbol 159 TextUses:131Used by:185
Symbol 160 GraphicUsed by:162
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:160 161Used by:185
Symbol 163 GraphicUsed by:185
Symbol 164 TextUses:131Used by:185
Symbol 165 TextUses:131Used by:185
Symbol 166 GraphicUsed by:185
Symbol 167 GraphicUsed by:185 244
Symbol 168 GraphicUsed by:185 244
Symbol 169 FontUsed by:170 171 172 239 242 290 294 295 307 310 313 318 322 324 325
Symbol 170 TextUses:169Used by:185 244
Symbol 171 TextUses:169Used by:185 244
Symbol 172 TextUses:169Used by:185 244
Symbol 173 GraphicUsed by:183
Symbol 174 GraphicUsed by:179 182
Symbol 175 GraphicUsed by:179
Symbol 176 TextUses:131Used by:179
Symbol 177 GraphicUsed by:179 182
Symbol 178 GraphicUsed by:179
Symbol 179 ButtonUses:174 175 176 177 178Used by:183
Symbol 180 GraphicUsed by:182
Symbol 181 TextUses:131Used by:182
Symbol 182 ButtonUses:174 180 181 177 62Used by:183
Symbol 183 MovieClipUses:173 179 182Used by:185 253 268 286 311 326
Symbol 184 ButtonUses:154 62 156Used by:185 253
Symbol 185 MovieClipUses:148 149 150 153 157 158 81 159 162 163 164 165 166 167 168 170 171 172 183 184Used by:Timeline
Symbol 186 GraphicUsed by:187
Symbol 187 MovieClipUses:186Used by:Timeline
Symbol 188 GraphicUsed by:196
Symbol 189 ButtonUses:34 35Used by:196
Symbol 190 TextUses:131Used by:196
Symbol 191 TextUses:131Used by:196
Symbol 192 TextUses:131Used by:196
Symbol 193 TextUses:131Used by:196
Symbol 194 EditableTextUses:131Used by:196
Symbol 195 EditableTextUses:131Used by:196
Symbol 196 MovieClipUses:188 189 111 190 191 192 193 194 195Used by:Timeline
Symbol 197 GraphicUsed by:203
Symbol 198 TextUses:30Used by:203
Symbol 199 GraphicUsed by:203
Symbol 200 GraphicUsed by:203
Symbol 201 TextUses:30Used by:203
Symbol 202 TextUses:64Used by:203
Symbol 203 ButtonUses:197 198 199 200 201 202Used by:228
Symbol 204 GraphicUsed by:227
Symbol 205 TextUses:30Used by:207
Symbol 206 TextUses:30Used by:207
Symbol 207 ButtonUses:205 206 35Used by:227
Symbol 208 TextUses:30Used by:210
Symbol 209 TextUses:30Used by:210
Symbol 210 ButtonUses:208 209 35Used by:227
Symbol 211 TextUses:30Used by:213
Symbol 212 TextUses:30Used by:213
Symbol 213 ButtonUses:211 212 35Used by:227
Symbol 214 TextUses:30Used by:216
Symbol 215 TextUses:30Used by:216
Symbol 216 ButtonUses:214 215 35Used by:227
Symbol 217 TextUses:30Used by:219
Symbol 218 TextUses:30Used by:219
Symbol 219 ButtonUses:217 218 35Used by:227
Symbol 220 TextUses:30Used by:222
Symbol 221 TextUses:30Used by:222
Symbol 222 ButtonUses:220 221 35Used by:227
Symbol 223 TextUses:30Used by:225
Symbol 224 TextUses:30Used by:225
Symbol 225 ButtonUses:223 224 35Used by:227
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:204 207 210 213 216 219 222 225 226Used by:228
Symbol 228 MovieClipUses:203 227Used by:Timeline
Symbol 229 GraphicUsed by:244
Symbol 230 ButtonUses:113 114 115Used by:244
Symbol 231 FontUsed by:232 238 241 243
Symbol 232 TextUses:231Used by:244
Symbol 233 GraphicUsed by:237 240
Symbol 234 GraphicUsed by:237 240
Symbol 235 GraphicUsed by:237 240
Symbol 236 GraphicUsed by:237 240
Symbol 237 ButtonUses:233 234 235 236Used by:244
Symbol 238 TextUses:231Used by:244
Symbol 239 TextUses:169Used by:244
Symbol 240 ButtonUses:233 234 235 236Used by:244
Symbol 241 TextUses:231Used by:244
Symbol 242 TextUses:169Used by:244
Symbol 243 TextUses:231Used by:244
Symbol 244 MovieClipUses:229 230 232 167 168 170 171 172 237 238 239 240 241 242 243Used by:Timeline
Symbol 245 TextUses:131Used by:253
Symbol 246 ButtonUses:151 152 62Used by:253
Symbol 247 ButtonUses:154 62 156Used by:253 268 286 311 326
Symbol 248 TextUses:131Used by:253
Symbol 249 GraphicUsed by:253
Symbol 250 TextUses:131Used by:253
Symbol 251 TextUses:131Used by:253
Symbol 252 TextUses:131Used by:253
Symbol 253 MovieClipUses:147 43 56 141 149 245 246 247 127 248 249 250 251 183 252 184Used by:Timeline
Symbol 254 MovieClipUses:43 141 147 57Used by:Timeline
Symbol 255 GraphicUsed by:260 309 311 321
Symbol 256 GraphicUsed by:260 279 321
Symbol 257 MovieClipUses:44Used by:260 309 321
Symbol 258 GraphicUsed by:259
Symbol 259 MovieClipUses:258Used by:260 268  Timeline
Symbol 260 MovieClipUses:43 255 256 141 257 52 55 259 147Used by:268  Timeline
Symbol 261 TextUses:131Used by:268
Symbol 262 TextUses:131Used by:268
Symbol 263 TextUses:131Used by:268
Symbol 264 GraphicUsed by:268 326
Symbol 265 GraphicUsed by:268
Symbol 266 TextUses:131Used by:268
Symbol 267 TextUses:131Used by:268
Symbol 268 MovieClipUses:260 149 261 247 153 259 262 263 264 265 266 183 267Used by:Timeline
Symbol 269 GraphicUsed by:Timeline
Symbol 270 TextUses:131Used by:286
Symbol 271 GraphicUsed by:272
Symbol 272 MovieClipUses:271Used by:279
Symbol 273 GraphicUsed by:279
Symbol 274 GraphicUsed by:277
Symbol 275 GraphicUsed by:277
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:274 275 276Used by:278 286  Timeline
Symbol 278 MovieClipUses:277Used by:279
Symbol 279 MovieClipUses:43 141 147 272 273 278 256 55Used by:286  Timeline
Symbol 280 TextUses:131Used by:286
Symbol 281 TextUses:131Used by:286
Symbol 282 TextUses:155Used by:286
Symbol 283 GraphicUsed by:286
Symbol 284 TextUses:131Used by:286
Symbol 285 TextUses:131Used by:286
Symbol 286 MovieClipUses:149 270 279 247 153 280 52 281 277 282 283 284 183 285Used by:Timeline
Symbol 287 GraphicUsed by:288 308
Symbol 288 MovieClipUses:287Used by:311 326
Symbol 289 TextUses:131Used by:311
Symbol 290 TextUses:169Used by:311
Symbol 291 GraphicUsed by:311 312
Symbol 292 GraphicUsed by:311 312
Symbol 293 GraphicUsed by:311 312
Symbol 294 TextUses:169Used by:311
Symbol 295 TextUses:169Used by:311
Symbol 296 GraphicUsed by:311
Symbol 297 ShapeTweeningUsed by:300
Symbol 298 ShapeTweeningUsed by:300
Symbol 299 GraphicUsed by:300
Symbol 300 MovieClipUses:297 298 299Used by:311
Symbol 301 GraphicUsed by:302 303 304
Symbol 302 MovieClipUses:301Used by:311
Symbol 303 MovieClipUses:301Used by:311
Symbol 304 MovieClipUses:301Used by:311
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:311  Timeline
Symbol 307 TextUses:169Used by:311
Symbol 308 MovieClipUses:287Used by:309 321
Symbol 309 MovieClipUses:43 255 257 141 147 308Used by:311  Timeline
Symbol 310 TextUses:169Used by:311
Symbol 311 MovieClipUses:288 149 289 247 153 290 291 292 293 294 295 255 296 300 302 303 304 127 306 307 309 183 310Used by:Timeline
Symbol 312 MovieClipUses:291 292 293Used by:Timeline
Symbol 313 TextUses:169Used by:326
Symbol 314 GraphicUsed by:316
Symbol 315 GraphicUsed by:316 319
Symbol 316 MovieClipUses:314 315Used by:317
Symbol 317 MovieClipUses:316Used by:326
Symbol 318 TextUses:169Used by:326
Symbol 319 MovieClipUses:315Used by:321
Symbol 320 GraphicUsed by:321
Symbol 321 MovieClipUses:43 141 147 308 57 255 319 320 52 256 55 257Used by:326  Timeline
Symbol 322 TextUses:169Used by:326
Symbol 323 GraphicUsed by:326
Symbol 324 TextUses:169Used by:326
Symbol 325 TextUses:169Used by:326
Symbol 326 MovieClipUses:55 149 313 247 153 317 318 321 322 264 323 288 324 183 325Used by:Timeline
Symbol 327 GraphicUsed by:342
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:342
Symbol 330 GraphicUsed by:332
Symbol 331 GraphicUsed by:332
Symbol 332 MovieClipUses:330 331Used by:342
Symbol 333 TextUses:30Used by:342
Symbol 334 GraphicUsed by:335
Symbol 335 MovieClipUses:334Used by:342
Symbol 336 TextUses:30Used by:342
Symbol 337 TextUses:30Used by:342
Symbol 338 TextUses:30Used by:342
Symbol 339 TextUses:30Used by:342
Symbol 340 FontUsed by:341
Symbol 341 TextUses:340Used by:342
Symbol 342 MovieClipUses:327 329 332 45 333 335 336 337 338 339 341 SS2Used by:Timeline
Streaming Sound 1Used by:Symbol 82 MovieClip
Streaming Sound 2Used by:Symbol 342 MovieClip

Instance Names

"loadbar"Frame 99Symbol 27 MovieClip
"noisecube"Frame 100Symbol 40 MovieClip
"musicSphere"Frame 100Symbol 41 MovieClip
"wtf"Frame 101Symbol 140 MovieClip
"foreground"Frame 103Symbol 148 MovieClip
"lander"Frame 103Symbol 81 MovieClip
"particle"Frame 103Symbol 187 MovieClip
"planetfinder"Frame 103Symbol 130 MovieClip
"Angry"Frame 103Symbol 196 MovieClip
"popup"Frame 103Symbol 244 MovieClip
"foreground"Frame 105Symbol 254 MovieClip
"lander"Frame 105Symbol 81 MovieClip
"particle"Frame 105Symbol 187 MovieClip
"planetfinder"Frame 105Symbol 130 MovieClip
"Angry"Frame 105Symbol 196 MovieClip
"popup"Frame 105Symbol 244 MovieClip
"foreground"Frame 107Symbol 260 MovieClip
"battery"Frame 107Symbol 259 MovieClip
"lander"Frame 107Symbol 81 MovieClip
"particle"Frame 107Symbol 187 MovieClip
"planetfinder"Frame 107Symbol 130 MovieClip
"Angry"Frame 107Symbol 196 MovieClip
"popup"Frame 107Symbol 244 MovieClip
"foreground"Frame 109Symbol 279 MovieClip
"bomb"Frame 109Symbol 277 MovieClip
"lander"Frame 109Symbol 81 MovieClip
"particle"Frame 109Symbol 187 MovieClip
"planetfinder"Frame 109Symbol 130 MovieClip
"Angry"Frame 109Symbol 196 MovieClip
"popup"Frame 109Symbol 244 MovieClip
"foreground"Frame 111Symbol 309 MovieClip
"sput1"Frame 111Symbol 312 MovieClip
"sput2"Frame 111Symbol 312 MovieClip
"sput3"Frame 111Symbol 312 MovieClip
"lander"Frame 111Symbol 81 MovieClip
"particle"Frame 111Symbol 187 MovieClip
"planetfinder"Frame 111Symbol 130 MovieClip
"sputnikfinder"Frame 111Symbol 306 MovieClip
"Angry"Frame 111Symbol 196 MovieClip
"popup"Frame 111Symbol 244 MovieClip
"foreground"Frame 113Symbol 321 MovieClip
"lander"Frame 113Symbol 81 MovieClip
"particle"Frame 113Symbol 187 MovieClip
"planetfinder"Frame 113Symbol 130 MovieClip
"Angry"Frame 113Symbol 196 MovieClip
"popup"Frame 113Symbol 244 MovieClip
"eye"Symbol 55 MovieClip Frame 1Symbol 50 MovieClip
"theorb"Symbol 148 MovieClip Frame 1Symbol 43 MovieClip
"landingpad"Symbol 148 MovieClip Frame 1Symbol 147 MovieClip
"landingpad2"Symbol 148 MovieClip Frame 1Symbol 147 MovieClip
"foreground"Symbol 185 MovieClip Frame 1Symbol 148 MovieClip
"landingpad2"Symbol 253 MovieClip Frame 1Symbol 147 MovieClip
"theorb"Symbol 253 MovieClip Frame 1Symbol 43 MovieClip
"landingpad"Symbol 253 MovieClip Frame 1Symbol 147 MovieClip
"theorb"Symbol 253 MovieClip Frame 2Symbol 43 MovieClip
"landingpad"Symbol 253 MovieClip Frame 2Symbol 147 MovieClip
"landingpad2"Symbol 253 MovieClip Frame 2Symbol 147 MovieClip
"theorb"Symbol 254 MovieClip Frame 1Symbol 43 MovieClip
"landingpad"Symbol 254 MovieClip Frame 1Symbol 147 MovieClip
"landingpad2"Symbol 254 MovieClip Frame 1Symbol 147 MovieClip
"theorb"Symbol 260 MovieClip Frame 1Symbol 43 MovieClip
"rocket"Symbol 260 MovieClip Frame 1Symbol 257 MovieClip
"creat2"Symbol 260 MovieClip Frame 1Symbol 55 MovieClip
"creat1"Symbol 260 MovieClip Frame 1Symbol 55 MovieClip
"batt"Symbol 260 MovieClip Frame 1Symbol 259 MovieClip
"landingpad2"Symbol 260 MovieClip Frame 1Symbol 147 MovieClip
"landingpad1"Symbol 260 MovieClip Frame 1Symbol 147 MovieClip
"landingpad3"Symbol 260 MovieClip Frame 1Symbol 147 MovieClip
"theorb"Symbol 279 MovieClip Frame 1Symbol 43 MovieClip
"landingpad"Symbol 279 MovieClip Frame 1Symbol 147 MovieClip
"theorb"Symbol 309 MovieClip Frame 1Symbol 43 MovieClip
"rocket"Symbol 309 MovieClip Frame 1Symbol 257 MovieClip
"landingpad2"Symbol 309 MovieClip Frame 1Symbol 147 MovieClip
"theorb"Symbol 321 MovieClip Frame 1Symbol 43 MovieClip
"landingpad"Symbol 321 MovieClip Frame 1Symbol 147 MovieClip
"landingpad2"Symbol 321 MovieClip Frame 1Symbol 147 MovieClip
"landingpad3"Symbol 321 MovieClip Frame 1Symbol 147 MovieClip
"brick"Symbol 321 MovieClip Frame 1Symbol 57 MovieClip
"bioooze"Symbol 321 MovieClip Frame 1Symbol 319 MovieClip
"creature1 "Symbol 321 MovieClip Frame 1Symbol 55 MovieClip
"rocketwooohh"Symbol 321 MovieClip Frame 1Symbol 257 MovieClip
" creature2"Symbol 321 MovieClip Frame 1Symbol 55 MovieClip
"lander"Symbol 342 MovieClip Frame 200Symbol 335 MovieClip
"lander"Symbol 342 MovieClip Frame 315Symbol 335 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$Il$PTa6JMsKbR2M17WrQNq5y.."
ExportAssets (56)Timeline Frame 1Symbol 1 as "gameOver"
ExportAssets (56)Timeline Frame 1Symbol 2 as "level4"
ExportAssets (56)Timeline Frame 1Symbol 3 as "level3"
ExportAssets (56)Timeline Frame 1Symbol 4 as "level2"
ExportAssets (56)Timeline Frame 1Symbol 5 as "level1"
ExportAssets (56)Timeline Frame 1Symbol 6 as "intro"
ExportAssets (56)Timeline Frame 100Symbol 6 as "intro"
ExportAssets (56)Timeline Frame 100Symbol 5 as "level1"
ExportAssets (56)Timeline Frame 100Symbol 4 as "level2"
ExportAssets (56)Timeline Frame 100Symbol 3 as "level3"
ExportAssets (56)Timeline Frame 100Symbol 2 as "level4"
ExportAssets (56)Timeline Frame 100Symbol 1 as "gameOver"

Labels

"menu"Frame 101
"b1"Frame 102
"M1"Frame 103
"b3"Frame 104
"m3"Frame 105
"b4"Frame 106
"m4"Frame 107
"b5"Frame 108
"m5"Frame 109
"b6"Frame 110
"m6"Frame 111
"b7"Frame 112
"m7"Frame 113
"engine"Symbol 40 MovieClip Frame 2
"explode"Symbol 40 MovieClip Frame 4
"noSound"Symbol 41 MovieClip Frame 2
"intro2"Symbol 41 MovieClip Frame 3
"level1"Symbol 41 MovieClip Frame 4
"level2"Symbol 41 MovieClip Frame 5
"level3"Symbol 41 MovieClip Frame 6
"level4"Symbol 41 MovieClip Frame 7
"gameover"Symbol 41 MovieClip Frame 8
"howtoplay"Symbol 140 MovieClip Frame 2
"winner"Symbol 244 MovieClip Frame 3
"loser"Symbol 244 MovieClip Frame 4
"notime"Symbol 244 MovieClip Frame 5
"FloatBomb"Symbol 278 MovieClip Frame 1002
"snagged"Symbol 312 MovieClip Frame 2
"robot"Symbol 342 MovieClip Frame 90

Dynamic Text Variables

howMuchSymbol 31 EditableText""
timerSymbol 194 EditableText"0"
distanceSymbol 195 EditableText"32443"




http://swfchan.com/6/28817/info.shtml
Created: 11/8 -2019 18:11:50 Last modified: 11/8 -2019 18:11:50 Server time: 04/05 -2024 21:20:46