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

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

Chalket Dodger.swf

This is the info page for
Flash #66754

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


Text
Replay

last Game

Easy

Twins

Fast

Stationary

Hardcore

Lava

Change

Slow

Hard

Med

Goal

Chalket Dodger

Last Score:

instructions

Select a game mode:

Music-

1

2

3

4

5

Score:

Highscore:

7

+

Instructions-

For those having trouble reading the font
on the menu, Click HERE to go to the easy
to read menu.

HERE

The game seems simple as you begin,
arrow keys to move and jump, and
jump while touching walls to wall jump.
There will be a few turrets that shoot
"chalkets" at you, your goal is to survive
as long as possible and earn personal
high scores, to get very high points you
will need skill and focus.
The platforms and turrets will randomly
change positions after a set amount of
time so that you won't just hide in a safe
spot.  It can get pretty intense. Good luck!

Back to
regular
menu

Replay

last Game

Easy

Twins

Fast

Stationary

Hardcore

Lava

Change

Slow

Hard

Med

Goal

Last Score:

Select a game mode:

ActionScript [AS1/AS2]

Frame 1
var easyhighscore = 0; var medhighscore = 0; var hardhighscore = 0; var slowhighscore = 0; var fasthighscore = 0; var lavahighscore = 0; var rpdhighscore = 0; var stahighscore = 0; var afashighscore = 0; var rockhighscore = 0; var goalhighscore = 0; var upghighscore = 0; var dead = true; var lastgame = 2; var prevscore = 0; var menus = 0;
Frame 2
var dead = true; stop(); var touched = 0; if (menus == 1) { gotoAndStop (15); }
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) { if (_root.lastgame == 3) { _root.prevscore = _root.easyscore; } if (_root.lastgame == 4) { _root.prevscore = _root.medscore; } if (_root.lastgame == 5) { _root.prevscore = _root.hardscore; } if (_root.lastgame == 6) { _root.prevscore = _root.slowscore; } if (_root.lastgame == 7) { _root.prevscore = _root.fastscore; } if (_root.lastgame == 8) { _root.prevscore = _root.lavascore; } if (_root.lastgame == 9) { _root.prevscore = _root.rpdscore; } if (_root.lastgame == 10) { _root.prevscore = _root.stascore; } if (_root.lastgame == 11) { _root.prevscore = _root.afasscore; } if (_root.lastgame == 12) { _root.prevscore = _root.rockscore; } if (_root.lastgame == 13) { _root.prevscore = _root.goalsscore; } }
Frame 3
var ulttimer = 150; var easyscore = 0; var dead = false; _root.prevscore = easyscore; stop(); lastgame = 3;
Instance of Symbol 154 MovieClip "char" in Frame 3
onClipEvent (load) { decay = 0.9; speedu = 0; speedd = 0; speedr = 0; speedl = 0; moveup = 0; movedown = 0; moveleft = 0; moveright = 0; thrust = 1.5; bs = 0; bs2 = 0; bs3 = 0; max = 12; } onClipEvent (enterFrame) { if ((Key.isDown(39) && (!_root.ground.hitTest(_x + 12, _y, true))) && (!Key.isDown(37))) { moveright = moveright + speedr; speedr++; } else { moveright = moveright * decay; } if ((Key.isDown(37) && (!_root.ground.hitTest(_x - 12, _y, true))) && (!Key.isDown(39))) { moveright = moveright + speedr; speedr--; } else { moveright = moveright * decay; } if ((!Key.isDown(39)) && (!Key.isDown(37))) { speedr = 0; } if (speedr >= 2) { speedr = 2; } if (speedr <= -2) { speedr = -2; } if (moveright >= max) { moveright = max; } if (moveright <= (-max)) { moveright = -max; } this._y = this._y - moveup; this._y = this._y + movedown; this._x = this._x + moveright; } onClipEvent (load) { grav = 0; gravmax = 20; } onClipEvent (enterFrame) { this._y = this._y + grav; grav = grav + 1; if (grav >= gravmax) { grav = gravmax; } if ((moveright >= -0.05) && (moveright <= 0.05)) { moveright = 0; } if ((_root.ground.hitTest(_x, _y + 10, true) && (_root.ground.hitTest(_x, _y + 11, true))) && (bs == 0)) { bs = 1; grav = grav * -0.5; } else { bs = 0; } if (_root.ground.hitTest(_x, _y + 10, true) && (!_root.ground.hitTest(_x, _y + 9, true))) { grav = 0; } if (_root.ground.hitTest(_x - 5, _y + 10, true) && (!_root.ground.hitTest(_x, _y + 9, true))) { grav = 0; } if (_root.ground.hitTest(_x + 5, _y + 10, true) && (!_root.ground.hitTest(_x, _y + 9, true))) { grav = 0; } if (_root.ground.hitTest(_x + 10, _y, true) && (bs2 == 0)) { moveright = moveright * -1; bs2 = 1; } else { bs2 = 0; } if (_root.ground.hitTest(_x - 10, _y, true) && (bs3 == 0)) { moveright = moveright * -1; bs3 = 1; } else { bs3 = 0; } if (_root.ground.hitTest(_x, _y - 1, true) && (bs3 == 0)) { moveright = moveright * -1; bs3 = 1; } else { bs3 = 0; } if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 11, true))) { grav = -10; } if ((Key.isDown(38) && (!_root.ground.hitTest(_x, _y + 11, true))) && (_root.ground.hitTest(_x + 10, _y, true))) { grav = -10; moveright = -10; } if (Key.isDown(38) && (_root.ground.hitTest(_x, _y + 11, true))) { grav = -10; } if ((Key.isDown(38) && (!_root.ground.hitTest(_x, _y + 11, true))) && (_root.ground.hitTest(_x - 10, _y, true))) { grav = -10; moveright = 10; } if (_root.ground.hitTest(_x, _y - 10, true) && (bs4 == 0)) { grav = grav * -1; bs4 = 1; } else { bs4 = 0; } if (this.hitTest(_root.glitched)) { this._x = 200; this._y = 200; } if (this.hitTest(_root.glitched2)) { this._x = 200; this._y = 200; } while (_root.ground.hitTest(_x, _y + 8, true)) { _y = (_y-1); } while (_root.ground.hitTest(_x, _y - 12, true)) { _y = (_y+1); } while (_root.ground.hitTest(_x - 12, _y, true)) { _x = (_x+1); } while (_root.ground.hitTest(_x + 9, _y, true)) { _x = (_x-1); } }
Instance of Symbol 169 MovieClip "rocket" in Frame 3
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(15); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 3
onClipEvent (load) { blast = 1; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("roket" + blast, blast + 7000); blast++; timer = -50; this.swapDepths(9999); } timer++; _root.ulttimer++; _root.easyscore++; if (_root.easyscore >= _root.easyhighscore) { _root.easyhighscore = _root.easyscore; } if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Frame 4
var ulttimer = 0; stop(); var medscore = 0; var dead = false; lastgame = 4;
Instance of Symbol 169 MovieClip "rocket" in Frame 4
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 4
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 4
onClipEvent (load) { blast = 1; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rocketjetson" + blast, blast + 7000); blast++; timer = -60; this.swapDepths(99999); } timer++; _root.ulttimer++; _root.medscore++; if (_root.medscore >= _root.medhighscore) { _root.medhighscore = _root.medscore; } if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 246 MovieClip "launcher2" in Frame 4
onClipEvent (load) { blst = 6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketq.duplicateMovieClip("rockjetq" + blst, blst + 7000); blst++; timer = -60; this.swapDepths(9999999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Frame 5
var ulttimer = -190; var hardscore = 0; var dead = false; stop(); lastgame = 5;
Instance of Symbol 174 MovieClip "launcher1" in Frame 5
onClipEvent (load) { blast = 0; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rockjet" + blast, blast + 7000); blast++; timer = -60; this.swapDepths(99999); } timer++; _root.ulttimer++; _root.hardscore++; if (_root.hardscore >= _root.hardhighscore) { _root.hardhighscore = _root.hardscore; } if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 249 MovieClip "launcher3" in Frame 5
onClipEvent (load) { blt = -6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketw.duplicateMovieClip("rockjettq" + blt, blt + 7000); blt++; timer = -60; this.swapDepths(9999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 169 MovieClip "rocket" in Frame 5
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } else { deadd == false; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketw" in Frame 5
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher3._x; this._y = _root.launcher3._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } else { deadd == false; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 5
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } else { deadd == false; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Frame 6
var ulttimer = -190; var slowscore = 0; var dead = false; stop(); lastgame = 6;
Instance of Symbol 169 MovieClip "rocket" in Frame 6
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(1); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x + 3, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 90; } else { deadd == false; } if (_root.ground.hitTest(this._x - 3, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 270; } else { deadd == false; } if (_root.ground.hitTest(this._x, this._y - 3, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } else { deadd == false; } if (_root.ground.hitTest(this._x, this._y + 3, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 180; } else { deadd == false; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketw" in Frame 6
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(1); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher3._x; this._y = _root.launcher3._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x + 1, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 90; } else { deadd == false; } if (_root.ground.hitTest(this._x - 1, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 270; } else { deadd == false; } if (_root.ground.hitTest(this._x, this._y - 1, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } else { deadd == false; } if (_root.ground.hitTest(this._x, this._y + 1, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 180; } else { deadd == false; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 6
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(1); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x + 1, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 270; } else { deadd == false; } if (_root.ground.hitTest(this._x - 1, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 90; } else { deadd == false; } if (_root.ground.hitTest(this._x, this._y - 1, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } else { deadd == false; } if (_root.ground.hitTest(this._x, this._y + 10, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; this._rotation = 180; } else { deadd == false; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 6
onClipEvent (load) { blast = 1; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rockekkt" + blast, blast + 7000); blast++; timer = -60; this.swapDepths(9999); } timer++; _root.ulttimer++; _root.slowscore++; if (_root.slowscore >= _root.slowhighscore) { _root.slowhighscore = _root.slowscore; } if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 246 MovieClip "launcher2" in Frame 6
onClipEvent (load) { blst = 6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketq.duplicateMovieClip("rockjetq" + blst, blst + 7000); blst++; timer = -60; this.swapDepths(99999999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 249 MovieClip "launcher3" in Frame 6
onClipEvent (load) { blt = -6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketw.duplicateMovieClip("rockjettq" + blt, blt + 7000); blt++; timer = -60; this.swapDepths(99999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Frame 7
var ulttimer = -370; var fastscore = 0; var dead = false; stop(); lastgame = 7;
Instance of Symbol 261 MovieClip "rocketw" in Frame 7
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(15); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; this._x = _root.launcher3._x; this._y = _root.launcher3._y; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true)) { this.gotoAndStop(2); } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x + 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(2); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 7
onClipEvent (load) { blast = 1; timer = -60; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rocket" + blast, blast + 7000); blast++; timer = -60; this.swapDepths(9999); } timer++; _root.ulttimer++; _root.fastscore++; if (_root.fastscore >= _root.fasthighscore) { _root.fasthighscore = _root.fastscore; } if (_level0.ulttimer >= 100) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 246 MovieClip "launcher2" in Frame 7
onClipEvent (load) { blst = 6000; timer = -60; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketq.duplicateMovieClip("rockjetq" + blst, blst + 7000); blst++; timer = -60; this.swapDepths(99999999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 100) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 249 MovieClip "launcher3" in Frame 7
onClipEvent (load) { blt = -6000; timer = -60; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketw.duplicateMovieClip("rockjettq" + blt, blt + 7000); blt++; timer = -60; this.swapDepths(99999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 100) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 169 MovieClip "rocket" in Frame 7
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 7
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Frame 8
var ulttimer = 0; var lavascore = 0; var dead = false; stop(); lastgame = 8;
Instance of Symbol 269 MovieClip in Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.char._x, _root.char._y, true)) { _level0.gotoAndStop(2); } }
Instance of Symbol 169 MovieClip "rocket" in Frame 8
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 8
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 8
onClipEvent (load) { blast = 1; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rockfhehht" + blast, blast + 7000); blast++; timer = -60; this.swapDepths(9999); } timer++; _root.ulttimer++; _root.lavascore++; if (_root.lavascore >= _root.lavahighscore) { _root.lavahighscore = _root.lavascore; } if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 246 MovieClip "launcher2" in Frame 8
onClipEvent (load) { blst = 6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketq.duplicateMovieClip("rockjjjetq" + blst, blst + 7000); blst++; timer = -60; this.swapDepths(99999999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Frame 9
var ulttimer = -190; var rpdscore = 0; var dead = false; stop(); lastgame = 9;
Instance of Symbol 169 MovieClip "rocket" in Frame 9
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(8); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketw" in Frame 9
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(8); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher3._x; this._y = _root.launcher3._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 9
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(8); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 9
onClipEvent (load) { blast = 1; timer = -130; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rockfhet" + blast, blast + 7000); blast++; timer = -10; this.swapDepths(9999); } timer++; _root.ulttimer++; _root.rpdscore++; if (_root.rpdscore >= _root.rpdhighscore) { _root.rpdhighscore = _root.rpdscore; } if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 246 MovieClip "launcher2" in Frame 9
onClipEvent (load) { blst = 6000; timer = -130; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketq.duplicateMovieClip("rockjetq" + blst, blst + 7000); blst++; timer = -10; this.swapDepths(99999999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 249 MovieClip "launcher3" in Frame 9
onClipEvent (load) { blt = -6000; timer = -130; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketw.duplicateMovieClip("rockjettq" + blt, blt + 7000); blt++; timer = -10; this.swapDepths(99999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Frame 10
var ulttimer = 100; var stascore = 0; var dead = false; stop(); lastgame = 10;
Instance of Symbol 174 MovieClip "launcher1" in Frame 10
onClipEvent (load) { blast = 1; timer = -180; } onClipEvent (enterFrame) { this._x = 434; this._y = 29.9; myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rockfhet" + blast, blast + 7000); blast++; timer = -60; this.swapDepths(9999); } timer++; _root.stascore++; if (_root.stascore >= _root.stahighscore) { _root.stahighscore = _root.stascore; } if (_root.dead == true) { this.gotoAndStop(2); } }
Instance of Symbol 246 MovieClip "launcher2" in Frame 10
onClipEvent (load) { blst = 6000; timer = -180; } onClipEvent (enterFrame) { this._x = 523; this._y = 29.9; myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketq.duplicateMovieClip("rockjetq" + blst, blst + 7000); blst++; timer = -60; this.swapDepths(99999999); } timer++; _root.ulttimer++; if (_root.dead == true) { this.gotoAndStop(2); } }
Instance of Symbol 249 MovieClip "launcher3" in Frame 10
onClipEvent (load) { blt = -6000; timer = -180; } onClipEvent (enterFrame) { this._x = 346; this._y = 29.9; myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketw.duplicateMovieClip("rockjetson" + blt, blt + 7000); blt++; timer = -60; this.swapDepths(99999); } timer++; if (_root.dead == true) { this.gotoAndStop(2); } }
Instance of Symbol 169 MovieClip "rocket" in Frame 10
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketw" in Frame 10
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher3._x; this._y = _root.launcher3._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 10
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Frame 11
var ulttimer = -190; var afasscore = 0; var dead = false; stop(); lastgame = 11;
Instance of Symbol 169 MovieClip "rocket" in Frame 11
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = 16; xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketw" in Frame 11
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = 16; xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher3._x; this._y = _root.launcher3._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 11
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = 16; xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 11
onClipEvent (load) { blast = 1; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rocket" + blast, blast + 7000); blast++; timer = -60; this.swapDepths(9999); } timer++; _root.ulttimer++; _root.afasscore++; if (_root.afasscore >= _root.afashighscore) { _root.afashighscore = _root.afasscore; } if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 246 MovieClip "launcher2" in Frame 11
onClipEvent (load) { blst = 6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketq.duplicateMovieClip("rockjetq" + blst, blst + 7000); blst++; timer = -60; this.swapDepths(99999999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 249 MovieClip "launcher3" in Frame 11
onClipEvent (load) { blt = -6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketw.duplicateMovieClip("rockjettq" + blt, blt + 7000); blt++; timer = -60; this.swapDepths(99999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Frame 12
var ulttimer = -190; var rockscore = 0; var dead = false; stop(); lastgame = 12;
Instance of Symbol 169 MovieClip "rocket" in Frame 12
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = 12; xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x + 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(2); } }
Instance of Symbol 290 MovieClip "rocketq" in Frame 12
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = 8; xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x + 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(2); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 12
onClipEvent (enterFrame) { _root.ulttimer = _root.ulttimer + 3; _root.rockscore++; if (_root.rockscore >= _root.rockhighscore) { _root.rockhighscore = _root.rockscore; } }
Frame 13
var ulttimer = -190; var goalscore = 0; var goalsscore = 0; var dead = false; stop(); lastgame = 13;
Instance of Symbol 169 MovieClip "rocket" in Frame 13
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher1._x; this._y = _root.launcher1._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketw" in Frame 13
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher3._x; this._y = _root.launcher3._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 169 MovieClip "rocketq" in Frame 13
onClipEvent (load) { thrust = 2; decay = 0.99; maxSpeed = random(16); xSpeed = 0; ySpeed = 0; grav = 0; sight = 200; range = 100; deadd = false; this._x = _root.launcher2._x; this._y = _root.launcher2._y; } onClipEvent (enterFrame) { if (deadd == false) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180))); ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180))); speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed)); } if (speed > maxSpeed) { xSpeed = xSpeed * (maxSpeed / speed); ySpeed = ySpeed * (maxSpeed / speed); } _y = (_y - ySpeed); _x = (_x + xSpeed); if (_root.ground.hitTest(this._x, this._y, true) && (deadd == false)) { this.gotoAndPlay(2); deadd = true; } if (maxSpeed == 0) { maxSpeed = 1; } if (this.hitTest(_root.char._x, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x - 10, _root.char._y + 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (this.hitTest(_root.char._x + 10, _root.char._y - 10, true) && (deadd == false)) { _level0.gotoAndStop(2); } if (_root.dead == true) { this.gotoAndStop(14); swapDepths(9999); } }
Instance of Symbol 174 MovieClip "launcher1" in Frame 13
onClipEvent (load) { blast = 1; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocket.duplicateMovieClip("rocketjetsons" + blast, blast + 7000); blast++; timer = -60; this.swapDepths(99999); } timer++; _root.ulttimer++; if (_root.goalscore >= _root.goalhighscore) { _root.goalhighscore = _root.goalscore; } if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(400); } if ((_level0.ulttimer >= 349) && (_level0.goalscore == 0)) { _root.goal._x = _root.char._x; _root.goal._y = _root.char._y; } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 246 MovieClip "launcher2" in Frame 13
onClipEvent (load) { blst = 6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketq.duplicateMovieClip("rockjethjkq" + blst, blst + 7000); blst++; timer = -60; this.swapDepths(9999999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } _root.goalsscore = _root.goalsscore + _root.goalscore; if (_root.goalsscore >= _root.goalhighscore) { _root.goalhighscore = _root.goalsscore; } if (_root.dead == true) { this.gotoAndStop(2); } if ((_level0.ulttimer >= 349) && (_level0.goalscore == 0)) { _root.goal._x = _root.char._x; _root.goal._y = _root.char._y; } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 249 MovieClip "launcher3" in Frame 13
onClipEvent (load) { blt = -6000; timer = -100; } onClipEvent (enterFrame) { myRadians = Math.atan2(_root.char._y - this._y, _root.char._x - this._x); myDegrees = Math.round((myRadians * 180) / Math.PI); _root.yChange = Math.round(_root.char._y - this._y); _root.xChange = Math.round(_root.char._x - this._x); this._rotation = myDegrees + 90; if (timer >= 0) { _root.rocketw.duplicateMovieClip("rockjettq" + blt, blt + 7000); blt++; timer = -60; this.swapDepths(9999); } timer++; _root.ulttimer++; if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(400); } if ((_level0.ulttimer >= 349) && (_level0.goalscore == 0)) { _root.goal._x = _root.char._x; _root.goal._y = _root.char._y; } if (_root.dead == true) { this.gotoAndStop(2); } if (_root.ground.hitTest(this._x + 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x - 25, this._y, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y + 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y - 25, true)) { this._x = random(550); this._y = random(400); } if (_root.ground.hitTest(this._x, this._y, true)) { this._x = random(550); this._y = random(400); } }
Instance of Symbol 297 MovieClip "goal" in Frame 13
onClipEvent (enterFrame) { if (_root.char.hitTest(this)) { this._x = random(550); this._y = random(350); _root.goalscore = _root.goalscore + 1; } }
Frame 15
var dead = true; stop(); var touched = 0; menus = 1;
Symbol 46 Button
on (release) { getURL ("http://www.newgrounds.com", "_blank"); }
Symbol 48 MovieClip Frame 40
stop();
Symbol 73 Button
on (release) { startMovie(); }
Symbol 74 MovieClip Frame 1
function timerHandler() { if (!loadingComplete) { var _local4 = _root.getBytesLoaded() / _root.getBytesTotal(); bar._xscale = 100 * _local4; if (_local4 == 1) { loadingComplete = true; if (AUTO_PLAY) { startMovie(); } else { gotoAndStop ("loaded"); } return(undefined); } } dt = getTimer() - time; time = time + dt; frameAccum = frameAccum + dt; var _local3 = 0; while ((frameAccum >= FRAME_TIME) && (_local3 < MAX_FRAME_SKIP)) { advanceFrame(tankLogo, true, true); advanceFrame(loadingText, false, true); advanceFrame(barGfx, false, true); if (loadingComplete) { advanceFrame(this, false, false); } (frameAccum = frameAccum - FRAME_TIME); _local3++; } updateAfterEvent(); } function advanceFrame(clip, recurse, loop) { if (!clip) { return(undefined); } clip.stop(); if (clip._currentframe == clip._totalframes) { if (loop) { clip.gotoAndStop(1); } } else { clip.nextFrame(); } if (recurse) { for (childName in clip) { if (typeof(clip[childName]) == "movieclip") { advanceFrame(clip[childName], recurse, loop); } } } } function startMovie() { clearInterval(intervalId); _root.play(); } _root.stop(); stop(); var FRAME_TIME = 33.3333333333333; var AUTO_PLAY = false; var MAX_FRAME_SKIP = 5; var loadingComplete; var intervalId; var time; var frameAccum; loadingComplete = false; intervalId = setInterval(this, "timerHandler", FRAME_TIME / 2); frameAccum = 0; time = getTimer(); timerHandler();
Symbol 79 Button
on (release) { gotoAndStop(_root.lastgame); }
Symbol 84 Button
on (release) { _level0.gotoAndStop(3); }
Symbol 86 Button
on (release) { _level0.gotoAndStop(12); }
Symbol 88 Button
on (release) { _level0.gotoAndStop(11); }
Symbol 91 Button
on (release) { _level0.gotoAndStop(10); }
Symbol 93 Button
on (release) { _level0.gotoAndStop(9); }
Symbol 95 Button
on (release) { _level0.gotoAndStop(8); }
Symbol 97 Button
on (release) { _level0.gotoAndStop(7); }
Symbol 99 Button
on (release) { _level0.gotoAndStop(6); }
Symbol 101 Button
on (release) { _level0.gotoAndStop(5); }
Symbol 103 Button
on (release) { _level0.gotoAndStop(4); }
Symbol 105 Button
on (release) { _level0.gotoAndStop(13); }
Symbol 111 Button
on (release) { _level0.gotoAndStop(14); }
Symbol 133 MovieClip Frame 1
stop();
Symbol 137 Button
on (release) { _root.music.gotoAndStop(1); }
Symbol 140 Button
on (release) { _root.music.gotoAndStop(2); }
Symbol 143 Button
on (release) { _root.music.gotoAndStop(3); }
Symbol 146 Button
on (release) { _root.music.gotoAndStop(4); }
Symbol 149 Button
on (release) { _root.music.gotoAndStop(5); }
Symbol 151 Button
on (release) { _root.music.gotoAndStop(6); }
Instance of Symbol 157 MovieClip in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(350); _level0.ulttimer = 0; } }
Instance of Symbol 157 MovieClip in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Symbol 169 MovieClip Frame 1
stop(); deadd = false;
Symbol 169 MovieClip Frame 2
play(); maxSpeed = 0;
Symbol 169 MovieClip Frame 14
stop(); if ((!this.name) == rocket) { swapDepths(999999); removeMovieClip(this); } maxSpeed = 0; deadd = true;
Symbol 174 MovieClip Frame 1
stop();
Symbol 174 MovieClip Frame 2
swapDepths(_root.getNextHighestDepth()); removeMovieClip(this);
Symbol 238 MovieClip Frame 180
stop();
Instance of Symbol 157 MovieClip in Symbol 241 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(350); _level0.ulttimer = 0; } }
Instance of Symbol 157 MovieClip in Symbol 241 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 241 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 241 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 241 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 241 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Symbol 246 MovieClip Frame 1
stop();
Symbol 246 MovieClip Frame 2
swapDepths(_root.getNextHighestDepth()); removeMovieClip(this);
Instance of Symbol 157 MovieClip in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(350); _level0.ulttimer = 0; } }
Instance of Symbol 157 MovieClip in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 248 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Symbol 249 MovieClip Frame 1
stop();
Symbol 249 MovieClip Frame 2
swapDepths(_root.getNextHighestDepth()); removeMovieClip(this);
Instance of Symbol 157 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(350); _level0.ulttimer = 0; } }
Instance of Symbol 157 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 260 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 100) { this._x = random(550); this._y = random(350); _level0.ulttimer = 0; } }
Instance of Symbol 157 MovieClip in Symbol 260 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 99) { this._x = random(550); this._y = random(350); } }
Symbol 261 MovieClip Frame 1
stop();
Symbol 261 MovieClip Frame 2
if ((!this.name) == rocketw) { swapDepths(_root.getNextHighestDepth()); removeMovieClip(this); }
Instance of Symbol 157 MovieClip in Symbol 267 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(350); _level0.ulttimer = 0; } }
Instance of Symbol 157 MovieClip in Symbol 267 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 267 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 267 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 267 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 267 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 267 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(350); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 350) { this._x = random(550); this._y = random(350); _level0.ulttimer = 0; } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 275 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 349) { this._x = random(550); this._y = random(385); } }
Instance of Symbol 157 MovieClip in Symbol 281 MovieClip Frame 1
onClipEvent (enterFrame) { if (_level0.ulttimer >= 100) { this._x = random(550); this._y = random(350); _level0.ulttimer = 0; } }
Symbol 290 MovieClip Frame 1
stop();
Symbol 290 MovieClip Frame 2
if ((!this.name) == rocket) { swapDepths(_root.getNextHighestDepth()); removeMovieClip(this); }
Symbol 305 Button
on (release) { gotoAndStop (15); }
Symbol 310 Button
on (release) { _level0.gotoAndStop(2); _root.menus = 0; }
Symbol 313 Button
on (release) { gotoAndStop(_root.lastgame); }
Symbol 316 Button
on (release) { _level0.gotoAndStop(3); }
Symbol 318 Button
on (release) { _level0.gotoAndStop(12); }
Symbol 320 Button
on (release) { _level0.gotoAndStop(11); }
Symbol 323 Button
on (release) { _level0.gotoAndStop(10); }
Symbol 325 Button
on (release) { _level0.gotoAndStop(9); }
Symbol 327 Button
on (release) { _level0.gotoAndStop(8); }
Symbol 329 Button
on (release) { _level0.gotoAndStop(7); }
Symbol 331 Button
on (release) { _level0.gotoAndStop(6); }
Symbol 333 Button
on (release) { _level0.gotoAndStop(5); }
Symbol 335 Button
on (release) { _level0.gotoAndStop(4); }
Symbol 337 Button
on (release) { _level0.gotoAndStop(13); }

Library Items

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

Instance Names

"Text53"Frame 2Symbol 81 EditableText
"level1"Frame 2Symbol 84 Button
"level1"Frame 2Symbol 86 Button
"level1"Frame 2Symbol 88 Button
"level1"Frame 2Symbol 91 Button
"level1"Frame 2Symbol 93 Button
"level1"Frame 2Symbol 95 Button
"level1"Frame 2Symbol 97 Button
"level1"Frame 2Symbol 99 Button
"level1"Frame 2Symbol 101 Button
"level1"Frame 2Symbol 103 Button
"level1"Frame 2Symbol 105 Button
"level1"Frame 2Symbol 111 Button
"music"Frame 2Symbol 133 MovieClip
"char"Frame 3Symbol 154 MovieClip
"ground"Frame 3Symbol 158 MovieClip
"rocket"Frame 3Symbol 169 MovieClip
"glitched"Frame 3Symbol 171 MovieClip
"glitched2"Frame 3Symbol 171 MovieClip
"launcher1"Frame 3Symbol 174 MovieClip
"ground"Frame 4Symbol 241 MovieClip
"glitched"Frame 4Symbol 171 MovieClip
"glitched2"Frame 4Symbol 171 MovieClip
"rocket"Frame 4Symbol 169 MovieClip
"rocketq"Frame 4Symbol 169 MovieClip
"launcher1"Frame 4Symbol 174 MovieClip
"launcher2"Frame 4Symbol 246 MovieClip
"ground"Frame 5Symbol 248 MovieClip
"launcher1"Frame 5Symbol 174 MovieClip
"launcher3"Frame 5Symbol 249 MovieClip
"rocket"Frame 5Symbol 169 MovieClip
"rocketw"Frame 5Symbol 169 MovieClip
"rocketq"Frame 5Symbol 169 MovieClip
"ground"Frame 6Symbol 254 MovieClip
"rocket"Frame 6Symbol 169 MovieClip
"rocketw"Frame 6Symbol 169 MovieClip
"rocketq"Frame 6Symbol 169 MovieClip
"launcher1"Frame 6Symbol 174 MovieClip
"launcher2"Frame 6Symbol 246 MovieClip
"launcher3"Frame 6Symbol 249 MovieClip
"ground"Frame 7Symbol 260 MovieClip
"rocketw"Frame 7Symbol 261 MovieClip
"launcher1"Frame 7Symbol 174 MovieClip
"launcher2"Frame 7Symbol 246 MovieClip
"launcher3"Frame 7Symbol 249 MovieClip
"rocket"Frame 7Symbol 169 MovieClip
"rocketq"Frame 7Symbol 169 MovieClip
"ground"Frame 8Symbol 267 MovieClip
"rocket"Frame 8Symbol 169 MovieClip
"rocketq"Frame 8Symbol 169 MovieClip
"launcher1"Frame 8Symbol 174 MovieClip
"launcher2"Frame 8Symbol 246 MovieClip
"ground"Frame 9Symbol 275 MovieClip
"rocket"Frame 9Symbol 169 MovieClip
"rocketw"Frame 9Symbol 169 MovieClip
"rocketq"Frame 9Symbol 169 MovieClip
"launcher1"Frame 9Symbol 174 MovieClip
"launcher2"Frame 9Symbol 246 MovieClip
"launcher3"Frame 9Symbol 249 MovieClip
"ground"Frame 10Symbol 281 MovieClip
"launcher1"Frame 10Symbol 174 MovieClip
"launcher2"Frame 10Symbol 246 MovieClip
"launcher3"Frame 10Symbol 249 MovieClip
"rocket"Frame 10Symbol 169 MovieClip
"rocketw"Frame 10Symbol 169 MovieClip
"rocketq"Frame 10Symbol 169 MovieClip
"ground"Frame 11Symbol 254 MovieClip
"rocket"Frame 11Symbol 169 MovieClip
"rocketw"Frame 11Symbol 169 MovieClip
"rocketq"Frame 11Symbol 169 MovieClip
"launcher1"Frame 11Symbol 174 MovieClip
"launcher2"Frame 11Symbol 246 MovieClip
"launcher3"Frame 11Symbol 249 MovieClip
"ground"Frame 12Symbol 158 MovieClip
"rocket"Frame 12Symbol 169 MovieClip
"rocketq"Frame 12Symbol 290 MovieClip
"launcher1"Frame 12Symbol 174 MovieClip
"ground"Frame 13Symbol 248 MovieClip
"glitched"Frame 13Symbol 171 MovieClip
"glitched2"Frame 13Symbol 171 MovieClip
"rocket"Frame 13Symbol 169 MovieClip
"rocketw"Frame 13Symbol 169 MovieClip
"rocketq"Frame 13Symbol 169 MovieClip
"launcher1"Frame 13Symbol 174 MovieClip
"launcher2"Frame 13Symbol 246 MovieClip
"launcher3"Frame 13Symbol 249 MovieClip
"goal"Frame 13Symbol 297 MovieClip
"level1"Frame 14Symbol 310 Button
"level1"Frame 15Symbol 316 Button
"level1"Frame 15Symbol 318 Button
"level1"Frame 15Symbol 320 Button
"level1"Frame 15Symbol 323 Button
"level1"Frame 15Symbol 325 Button
"level1"Frame 15Symbol 327 Button
"level1"Frame 15Symbol 329 Button
"level1"Frame 15Symbol 331 Button
"level1"Frame 15Symbol 333 Button
"level1"Frame 15Symbol 335 Button
"level1"Frame 15Symbol 337 Button
"level1"Frame 15Symbol 111 Button
"level1"Frame 15Symbol 310 Button
"bar"Symbol 74 MovieClip Frame 1Symbol 4 MovieClip
"bargfx"Symbol 74 MovieClip Frame 1Symbol 7 MovieClip
"tankLogo"Symbol 74 MovieClip Frame 1Symbol 43 MovieClip
"bargfx"Symbol 74 MovieClip Frame 2Symbol 7 MovieClip
"loadingText"Symbol 74 MovieClip Frame 2Symbol 48 MovieClip
"bargfx"Symbol 74 MovieClip Frame 20Symbol 7 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.

Labels

"LOAD"Symbol 74 MovieClip Frame 1
"COMPLETE_STOP"Symbol 74 MovieClip Frame 2

Dynamic Text Variables

prevscoreSymbol 80 EditableText""
_level0.easyhighscoreSymbol 81 EditableText""
_level0.medhighscoreSymbol 115 EditableText""
_level0.hardhighscoreSymbol 116 EditableText""
_level0.rpdhighscoreSymbol 117 EditableText""
_level0.stahighscoreSymbol 118 EditableText""
_level0.goalhighscoreSymbol 119 EditableText""
_level0.fasthighscoreSymbol 120 EditableText""
_level0.rockhighscoreSymbol 121 EditableText""
_level0.slowhighscoreSymbol 122 EditableText""
_level0.afashighscoreSymbol 123 EditableText""
_level0.easyhighscoreSymbol 124 EditableText""
_level0.lavahighscoreSymbol 125 EditableText""
easyscoreSymbol 175 EditableText""
easyhighscoreSymbol 178 EditableText""
medscoreSymbol 242 EditableText""
medhighscoreSymbol 243 EditableText""
hardscoreSymbol 250 EditableText""
hardhighscoreSymbol 251 EditableText""
slowscoreSymbol 256 EditableText""
slowhighscoreSymbol 257 EditableText""
fastscoreSymbol 263 EditableText""
fasthighscoreSymbol 264 EditableText""
lavascoreSymbol 271 EditableText""
lavahighscoreSymbol 272 EditableText""
rpdscoreSymbol 277 EditableText"7"
rpdhighscoreSymbol 278 EditableText""
stascoreSymbol 283 EditableText""
stahighscoreSymbol 284 EditableText""
afasscoreSymbol 287 EditableText""
afashighscoreSymbol 288 EditableText""
rockscoreSymbol 292 EditableText""
rockhighscoreSymbol 293 EditableText""
goalscoreSymbol 294 EditableText""
goalhighscoreSymbol 295 EditableText""
goalsscoreSymbol 298 EditableText""
prevscoreSymbol 314 EditableText""
_level0.medhighscoreSymbol 340 EditableText""
_level0.hardhighscoreSymbol 341 EditableText""
_level0.rpdhighscoreSymbol 342 EditableText""
_level0.stahighscoreSymbol 343 EditableText""
_level0.goalhighscoreSymbol 344 EditableText""
_level0.fasthighscoreSymbol 345 EditableText""
_level0.rockhighscoreSymbol 346 EditableText""
_level0.slowhighscoreSymbol 347 EditableText""
_level0.afashighscoreSymbol 348 EditableText""
_level0.easyhighscoreSymbol 349 EditableText""
_level0.rockhighscoreSymbol 350 EditableText""




http://swfchan.com/14/66754/info.shtml
Created: 11/4 -2019 21:07:26 Last modified: 11/4 -2019 21:07:26 Server time: 17/05 -2024 13:07:31