STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229671 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5191 |
This is the info page for Flash #30388 |
999 KB Left |
Start the game |
How to play Move your mouse to the left half of the screen and the ship will move and fire to the left. Move your mouse the the right half and it will go right. Click to fire. The level ends when all the enemies are destroyed, but if you take too long... |
About Graphics, Music and Coding by Alexander Early of www.aeflash.com |
QUALITY Click here to toggle between Low and Medium quality. If the game still runs slow, set your display to 16 bit color or less. |
Download This game is much easier if you download it. You can play it without any interference at fullscreen and can play it anytime. It also tends to run faster as a standalone program. |
Play |
How |
About |
Quality |
Download |
Level Completed! |
Continue |
Time taken: |
Score deduction: |
0000 |
0000 |
GAME OVER |
Yes, I suck |
Enemies: |
Time: |
Lives: |
Score: |
Level 2 The first level was easy, but how well will you fare when evolution is happening? |
Evolution is beginning.... |
Level 3 You seem to have survived the the first onset of evolution, but beware, for others are evolving also! |
Level 4 Amazingly enough, you have destroyed the first 3 waves, but now it seems a supply ship is your only hope... |
Level 5 You better have made full use of that supply ship, for the second stage of evolution is fast occurring. |
Level 6 After defeating wave after wave of aliens, you notice something strange in the distance... |
CONGRATULATIONS!! You have completed all the levels! Look for a sequel to this game sometime in the future. |
Replay |
ActionScript [AS1/AS2]
Frame 1_root.bar._xscale = 100 * (getBytesLoaded() / getBytesTotal()); text = Math.floor((getBytesTotal() - getBytesLoaded()) / 1000) + " kb left"; if (getBytesLoaded() == getBytesTotal()) { gotoAndStop (3); }Frame 2gotoAndPlay (1);Frame 3stop(); lives = 5; score = 0; _root.reset = true; _root._quality = "MEDIUM"; removeMovieClip(_root.status); unpleasantness = false; fscommand ("fullscreen", "true"); fscommand ("showmenu", "false");Instance of Symbol 32 MovieClip in Frame 3onClipEvent (mouseMove) { this.gotoAndStop(_root.boxframe); }Frame 4stop(); lvl = "level2";Instance of Symbol 8 MovieClip "ground2" in Frame 4onClipEvent (enterFrame) { this._x = _root.ground._x + 800; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 8 MovieClip "ground" in Frame 4onClipEvent (enterFrame) { this._x = this._x + _root.scrollfactor; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 41 MovieClip "control" in Frame 4onClipEvent (load) { _root.green.halt = true; _root.dot.halt = true; _root.starttime = getTimer(); _root.enumber = 5; _root.j = 5; _root.reset = false; _root.shot.go = false; _root.gshot.go = false; i = 1; _root.scrollfactor = 0; _root.ship.death = false; g = 1; do { duplicateMovieClip (_root.green, "green" + g, _root.j); _root["green" + g].halt = false; _root["green" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.dot, "dot" + g, _root.j); _root["dot" + g].ftarget = _root["green" + g]; _root["dot" + g].lev = g; _root["dot" + g].halt = false; _root["dot" + g].gotoAndStop(1); _root.j++; g++; } while (g <= _root.enumber); } onClipEvent (enterFrame) { if (_root._xmouse < 0) { _root._xmouse = 0; } _root.timer = Math.floor((getTimer() - _root.starttime) / 1000); _root.scrollfactor = (_root._xmouse - 200) / -20; if (_root.ship.death == true) { _root.scrollfactor = 0; } if (_root.enumber == 0) { _root.gwindow.gotoAndStop(2); } if (_root.lives == 0) { _root.gwindow.gotoAndStop(3); } } onClipEvent (mouseDown) { if (_root.ship.death != true) { if (i == 4) { i = 1; } s = new Sound(); s.attachSound("shot1.wav"); s.start(); duplicateMovieClip (_root.shot, "shot" + i, i); if (_root._xmouse > 200) { _root["shot" + i]._xscale = -100; } i++; } if (_root.ship.death == true) { if (_root.lives > 0) { _root.ship.gotoAndStop(1); _root.ship._y = _root.ship._y - 300; _root.ship.death = false; } } }Instance of Symbol 43 MovieClip "shot" in Frame 4onClipEvent (load) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = _root.ship._x; this._y = _root.ship._y; interval = -25; if (_root._xmouse > 200) { interval = 25; } } } onClipEvent (enterFrame) { if (this.go != false) { this._x = this._x + interval; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } } }Instance of Symbol 45 MovieClip "gshot" in Frame 4onClipEvent (enterFrame) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = this._x + _root.scrollfactor; if (this.hitTest(_root.ship) == true) { removeMovieClip(this); _root.ship.death = true; _root.ship.gotoAndStop(3); } this._x = this._x + xvector; this._y = this._y + yvector; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } if (this._y < -5) { removeMovieClip(this); } if (this._y > 305) { removeMovieClip(this); } } }Instance of Symbol 60 MovieClip "green" in Frame 4onClipEvent (load) { this.stop(); if (this.halt != true) { xvector = random(6) - 3; yvector = random(6) - 3; this._x = (random(900) + (random(2) * 1100)) - 800; this._y = random(300); this.stop(); a = random(50); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 25); yvector = yvector + ((random(50) - 25) / 25); if (xvector > 4) { xvector = 4; } if (xvector < -4) { xvector = -4; } if (yvector > 4) { yvector = 4; } if (yvector < -4) { yvector = -4; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 24; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(2); } } }Instance of Symbol 68 MovieClip "ship" in Frame 4onClipEvent (load) { } onClipEvent (enterFrame) { if (death != true) { this._y = this._y + ((_root._ymouse - this._y) / 10); if (_root._xmouse < 200) { this._x = this._x + ((250 - this._x) / 10); this.gotoAndStop(2); } if (_root._xmouse > 200) { this._x = this._x + ((150 - this._x) / 10); this.gotoAndStop(1); } } }Instance of Symbol 71 MovieClip "dot" in Frame 4onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 84 MovieClip "gwindow" in Frame 4onClipEvent (enterFrame) { this.swapDepths(_root.j + 100); if (_root.reset == true) { removeMovieClip(this); } }Instance of Symbol 94 MovieClip "status" in Frame 4onClipEvent (enterFrame) { this.swapDepths(_root.j + 102); }Frame 5reset = true; stopAllSounds(); gotoAndPlay (3);Frame 6stop(); reset = true; lvl = "level3";Instance of Symbol 8 MovieClip "ground2" in Frame 6onClipEvent (enterFrame) { this._x = _root.ground._x + 800; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 8 MovieClip "ground" in Frame 6onClipEvent (enterFrame) { this._x = this._x + _root.scrollfactor; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 41 MovieClip "control" in Frame 7onClipEvent (load) { _root.unpleasantness = false; _root.green.halt = true; _root.dot.halt = true; _root.starttime = getTimer(); _root.enumber = 8; _root.j = 5; _root.reset = false; _root.shot.go = false; _root.gshot.go = false; i = 1; _root.scrollfactor = 0; _root.ship.death = false; g = 1; do { duplicateMovieClip (_root.green, "green" + g, _root.j); _root["green" + g].halt = false; _root["green" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.dot, "dot" + g, _root.j); _root["dot" + g].ftarget = _root["green" + g]; _root["dot" + g].lev = g; _root["dot" + g].halt = false; _root["dot" + g].gotoAndStop(1); _root.j++; g++; } while (g <= _root.enumber); } onClipEvent (enterFrame) { if (_root._xmouse < 0) { _root._xmouse = 0; } _root.timer = Math.floor((getTimer() - _root.starttime) / 1000); _root.scrollfactor = (_root._xmouse - 200) / -20; if (_root.timer == 24) { _root.unpleasantness = true; } if (_root.ship.death == true) { _root.scrollfactor = 0; } if (_root.enumber == 0) { _root.gwindow.gotoAndStop(2); } if (_root.lives == 0) { _root.gwindow.gotoAndStop(3); } } onClipEvent (mouseDown) { if (_root.ship.death != true) { if (i == 4) { i = 1; } s = new Sound(); s.attachSound("shot1.wav"); s.start(); duplicateMovieClip (_root.shot, "shot" + i, i); if (_root._xmouse > 200) { _root["shot" + i]._xscale = -100; } i++; } if (_root.ship.death == true) { if (_root.lives > 0) { _root.ship.gotoAndStop(1); _root.ship._y = _root.ship._y - 300; _root.ship.death = false; } } }Instance of Symbol 43 MovieClip "shot" in Frame 7onClipEvent (load) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = _root.ship._x; this._y = _root.ship._y; interval = -25; if (_root._xmouse > 200) { interval = 25; } } } onClipEvent (enterFrame) { if (this.go != false) { this._x = this._x + interval; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } } }Instance of Symbol 45 MovieClip "gshot" in Frame 7onClipEvent (enterFrame) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = this._x + _root.scrollfactor; if (this.hitTest(_root.ship) == true) { removeMovieClip(this); _root.ship.death = true; _root.ship.gotoAndStop(3); } this._x = this._x + xvector; this._y = this._y + yvector; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } if (this._y < -5) { removeMovieClip(this); } if (this._y > 305) { removeMovieClip(this); } } }Instance of Symbol 60 MovieClip "green" in Frame 7onClipEvent (load) { this.stop(); if (this.halt != true) { utime = random(450); xvector = random(6) - 3; yvector = random(6) - 3; this._x = (random(900) + (random(2) * 1100)) - 800; this._y = random(300); this.stop(); a = random(50); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { if (unpleasant != true) { if (_root.unpleasantness == true) { utime--; if (utime == 0) { unpleasant = true; this.gotoAndStop(3); } } this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 25); yvector = yvector + ((random(50) - 25) / 25); if (xvector > 4) { xvector = 4; } if (xvector < -4) { xvector = -4; } if (yvector > 4) { yvector = 4; } if (yvector < -4) { yvector = -4; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 24; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(2); } } if (unpleasant == true) { this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 12.5); yvector = yvector + ((random(50) - 25) / 12.5); if (xvector > 8) { xvector = 8; } if (xvector < -8) { xvector = -8; } if (yvector > 8) { yvector = 8; } if (yvector < -8) { yvector = -8; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 18; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(4); } } } } }Instance of Symbol 68 MovieClip "ship" in Frame 7onClipEvent (load) { } onClipEvent (enterFrame) { if (death != true) { this._y = this._y + ((_root._ymouse - this._y) / 10); if (_root._xmouse < 200) { this._x = this._x + ((250 - this._x) / 10); this.gotoAndStop(2); } if (_root._xmouse > 200) { this._x = this._x + ((150 - this._x) / 10); this.gotoAndStop(1); } } }Instance of Symbol 71 MovieClip "dot" in Frame 7onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 100 MovieClip in Frame 7onClipEvent (enterFrame) { this.swapDepths(_root.j + 101); if (_root.unpleasantness == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } }Instance of Symbol 84 MovieClip "gwindow" in Frame 7onClipEvent (enterFrame) { this.swapDepths(_root.j + 100); if (_root.reset == true) { removeMovieClip(this); } }Frame 8reset = true; stopAllSounds(); gotoAndPlay (3);Frame 9stop(); reset = true; lvl = "level4";Instance of Symbol 8 MovieClip "ground2" in Frame 9onClipEvent (enterFrame) { this._x = _root.ground._x + 800; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 8 MovieClip "ground" in Frame 9onClipEvent (enterFrame) { this._x = this._x + _root.scrollfactor; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 41 MovieClip "control" in Frame 10onClipEvent (load) { _root.unpleasantness = false; _root.green.halt = true; _root.grey.halt = true; _root.dot.halt = true; _root.greydot.halt = true; _root.starttime = getTimer(); _root.enumber = 10; _root.j = 5; _root.reset = false; _root.shot.go = false; _root.gshot.go = false; i = 1; _root.scrollfactor = 0; _root.ship.death = false; g = 1; do { duplicateMovieClip (_root.green, "green" + g, _root.j); _root["green" + g].halt = false; _root["green" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.dot, "dot" + g, _root.j); _root["dot" + g].ftarget = _root["green" + g]; _root["dot" + g].lev = g; _root["dot" + g].halt = false; _root["dot" + g].gotoAndStop(1); _root.j++; g++; } while (this.g <= _root.enumber); _root.enumber = 11; do { duplicateMovieClip (_root.grey, "grey" + g, _root.j); _root["grey" + g].halt = false; _root["grey" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.greydot, "greydot" + g, _root.j); _root["greydot" + g].ftarget = _root["grey" + g]; _root["greydot" + g].lev = g; _root["greydot" + g].halt = false; _root["greydot" + g].gotoAndStop(1); _root.j++; g++; } while (this.g <= _root.enumber); } onClipEvent (enterFrame) { if (_root._xmouse < 0) { _root._xmouse = 0; } _root.timer = Math.floor((getTimer() - _root.starttime) / 1000); _root.scrollfactor = (_root._xmouse - 200) / -20; if (_root.timer == 15) { _root.unpleasantness = true; } if (_root.ship.death == true) { _root.scrollfactor = 0; } if (_root.enumber == 0) { _root.gwindow.gotoAndStop(2); } if (_root.lives == 0) { _root.gwindow.gotoAndStop(3); } } onClipEvent (mouseDown) { if (_root.ship.death != true) { if (i == 4) { i = 1; } s = new Sound(); s.attachSound("shot1.wav"); s.start(); duplicateMovieClip (_root.shot, "shot" + i, i); if (_root._xmouse > 200) { _root["shot" + i]._xscale = -100; } i++; } if (_root.ship.death == true) { if (_root.lives > 0) { _root.ship.gotoAndStop(1); _root.ship._y = _root.ship._y - 300; _root.ship.death = false; } } }Instance of Symbol 43 MovieClip "shot" in Frame 10onClipEvent (load) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = _root.ship._x; this._y = _root.ship._y; interval = -25; if (_root._xmouse > 200) { interval = 25; } } } onClipEvent (enterFrame) { if (this.go != false) { this._x = this._x + interval; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } } }Instance of Symbol 45 MovieClip "gshot" in Frame 10onClipEvent (enterFrame) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = this._x + _root.scrollfactor; if (this.hitTest(_root.ship) == true) { removeMovieClip(this); _root.ship.death = true; _root.ship.gotoAndStop(3); } this._x = this._x + xvector; this._y = this._y + yvector; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } if (this._y < -5) { removeMovieClip(this); } if (this._y > 305) { removeMovieClip(this); } } }Instance of Symbol 106 MovieClip "grey" in Frame 10onClipEvent (load) { this.stop(); if (this.halt != true) { utime = random(450); xvector = random(6) - 3; yvector = random(6) - 3; this._x = (random(900) + (random(2) * 1100)) - 800; this._y = random(300); this.stop(); a = random(50); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { this._x = this._x + ((_root.ship._x - this._x) / 20); this._y = this._y + ((_root.ship._y - this._y) / 20); this._x = (this._x + _root.scrollfactor) + xvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (death != true) { if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(2); } } } }Instance of Symbol 60 MovieClip "green" in Frame 10onClipEvent (load) { this.stop(); if (this.halt != true) { utime = random(450); xvector = random(6) - 3; yvector = random(6) - 3; this._x = (random(900) + (random(2) * 1100)) - 800; this._y = random(300); this.stop(); a = random(50); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { if (unpleasant != true) { if (_root.unpleasantness == true) { utime--; if (utime == 0) { unpleasant = true; this.gotoAndStop(3); } } this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 25); yvector = yvector + ((random(50) - 25) / 25); if (xvector > 4) { xvector = 4; } if (xvector < -4) { xvector = -4; } if (yvector > 4) { yvector = 4; } if (yvector < -4) { yvector = -4; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 24; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(2); } } if (unpleasant == true) { this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 12.5); yvector = yvector + ((random(50) - 25) / 12.5); if (xvector > 8) { xvector = 8; } if (xvector < -8) { xvector = -8; } if (yvector > 8) { yvector = 8; } if (yvector < -8) { yvector = -8; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 18; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(4); } } } } }Instance of Symbol 68 MovieClip "ship" in Frame 10onClipEvent (load) { } onClipEvent (enterFrame) { if (death != true) { this._y = this._y + ((_root._ymouse - this._y) / 10); if (_root._xmouse < 200) { this._x = this._x + ((250 - this._x) / 10); this.gotoAndStop(2); } if (_root._xmouse > 200) { this._x = this._x + ((150 - this._x) / 10); this.gotoAndStop(1); } } }Instance of Symbol 71 MovieClip "dot" in Frame 10onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 100 MovieClip in Frame 10onClipEvent (enterFrame) { this.swapDepths(_root.j + 101); if (_root.unpleasantness == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } }Instance of Symbol 71 MovieClip "greydot" in Frame 10onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 84 MovieClip "gwindow" in Frame 10onClipEvent (enterFrame) { this.swapDepths(_root.j + 100); if (_root.reset == true) { removeMovieClip(this); } }Frame 11reset = true; stopAllSounds(); gotoAndPlay (3);Frame 12stop(); reset = true; lvl = "level5";Instance of Symbol 8 MovieClip "ground2" in Frame 12onClipEvent (enterFrame) { this._x = _root.ground._x + 800; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 8 MovieClip "ground" in Frame 12onClipEvent (enterFrame) { this._x = this._x + _root.scrollfactor; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 41 MovieClip "control" in Frame 13onClipEvent (load) { _root.unpleasantness = false; _root.green.halt = true; _root.grey.halt = true; _root.dot.halt = true; _root.greydot.halt = true; _root.starttime = getTimer(); _root.enumber = 10; _root.j = 5; _root.reset = false; _root.shot.go = false; _root.gshot.go = false; i = 1; _root.scrollfactor = 0; _root.ship.death = false; g = 1; do { duplicateMovieClip (_root.green, "green" + g, _root.j); _root["green" + g].halt = false; _root["green" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.dot, "dot" + g, _root.j); _root["dot" + g].ftarget = _root["green" + g]; _root["dot" + g].lev = g; _root["dot" + g].halt = false; _root["dot" + g].gotoAndStop(1); _root.j++; g++; } while (this.g <= _root.enumber); _root.enumber = 11; do { duplicateMovieClip (_root.grey, "grey" + g, _root.j); _root["grey" + g].halt = false; _root["grey" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.greydot, "greydot" + g, _root.j); _root["greydot" + g].ftarget = _root["grey" + g]; _root["greydot" + g].lev = g; _root["greydot" + g].halt = false; _root["greydot" + g].gotoAndStop(1); _root.j++; g++; } while (this.g <= _root.enumber); } onClipEvent (enterFrame) { if (_root._xmouse < 0) { _root._xmouse = 0; } _root.timer = Math.floor((getTimer() - _root.starttime) / 1000); _root.scrollfactor = (_root._xmouse - 200) / -20; if (_root.timer == 15) { _root.unpleasantness = true; } if (_root.ship.death == true) { _root.scrollfactor = 0; } if (_root.enumber == 0) { _root.gwindow.gotoAndStop(2); } if (_root.lives == 0) { _root.gwindow.gotoAndStop(3); } } onClipEvent (mouseDown) { if (_root.ship.death != true) { if (i == 4) { i = 1; } s = new Sound(); s.attachSound("shot1.wav"); s.start(); duplicateMovieClip (_root.shot, "shot" + i, i); if (_root._xmouse > 200) { _root["shot" + i]._xscale = -100; } i++; } if (_root.ship.death == true) { if (_root.lives > 0) { _root.ship.gotoAndStop(1); _root.ship._y = _root.ship._y - 300; _root.ship.death = false; } } }Instance of Symbol 43 MovieClip "shot" in Frame 13onClipEvent (load) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = _root.ship._x; this._y = _root.ship._y; interval = -25; if (_root._xmouse > 200) { interval = 25; } } } onClipEvent (enterFrame) { if (this.go != false) { this._x = this._x + interval; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } } }Instance of Symbol 45 MovieClip "gshot" in Frame 13onClipEvent (enterFrame) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = this._x + _root.scrollfactor; if (_root.supplyship.death != true) { if (this.hitTest(_root.supplyship) == true) { _root.supplyship.gotoAndPlay(1); _root.supplyship.health--; removeMovieClip(this); } } if (this.hitTest(_root.ship) == true) { _root.ship.death = true; _root.ship.gotoAndStop(3); } this._x = this._x + xvector; this._y = this._y + yvector; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } if (this._y < -5) { removeMovieClip(this); } if (this._y > 305) { removeMovieClip(this); } } }Instance of Symbol 106 MovieClip "grey" in Frame 13onClipEvent (load) { this.stop(); if (this.halt != true) { utime = random(450); xvector = random(6) - 3; yvector = random(6) - 3; this._x = (random(900) + (random(2) * 1100)) - 800; this._y = random(300); this.stop(); a = random(50); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { this._x = this._x + ((_root.ship._x - this._x) / 20); this._y = this._y + ((_root.ship._y - this._y) / 20); this._x = (this._x + _root.scrollfactor) + xvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (death != true) { if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (_root.supplyship.death != true) { if (this.hitTest(_root.supplyship) == true) { death = true; _root.supplyship.gotoAndPlay(1); _root.supplyship.health--; } } if (death == true) { this.gotoAndStop(2); } } } }Instance of Symbol 108 MovieClip "life" in Frame 13onClipEvent (enterFrame) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = this._x + _root.scrollfactor; this._y = this._y + 3; if (this.hitTest(_root.ship) == true) { pickup = new Sound(); pickup.attachSound("Effect2.wav"); pickup.start(); removeMovieClip(this); _root.lives++; } if (this._y > 305) { removeMovieClip(this); } } }Instance of Symbol 132 MovieClip "supplyship" in Frame 13onClipEvent (load) { health = 5; } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { this._x = this._x + (_root.scrollfactor - 2); this._y = this._y + ((100 - this._y) / 25); if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 600) { this._visible = true; } if (this._x > -200) { this._visible = true; } if (this._x > 600) { this._visible = false; } if (this._x < -200) { this._visible = false; } if (death != true) { if (_root.enumber != 0) { if (a == true) { duplicateMovieClip (_root.life, "life" + _root.j, _root.j); _root["life" + _root.j]._x = this._x; _root["life" + _root.j]._y = this._y; _root["life" + _root.j].go = true; _root.j++; a = false; } } } if (health <= 0) { death = true; } if (death == true) { this.gotoAndStop(16); } } } }Instance of Symbol 134 MovieClip in Frame 13onClipEvent (enterFrame) { if (this.halt != true) { this._x = ((_root.supplyship._x + 1600) / 16) + 200; this._y = _root.supplyship._y / 16; if (_root.supplyship.death == true) { this._visible = false; } } }Instance of Symbol 60 MovieClip "green" in Frame 13onClipEvent (load) { this.stop(); if (this.halt != true) { utime = random(450); xvector = random(6) - 3; yvector = random(6) - 3; this._x = (random(900) + (random(2) * 1100)) - 800; this._y = random(300); this.stop(); a = random(50); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { if (_root.supplyship.death != true) { if (this.hitTest(_root.supplyship) == true) { death = true; _root.supplyship.gotoAndPlay(1); _root.supplyship.health--; } } if (unpleasant != true) { if (_root.unpleasantness == true) { utime--; if (utime == 0) { unpleasant = true; this.gotoAndStop(3); } } this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 25); yvector = yvector + ((random(50) - 25) / 25); if (xvector > 4) { xvector = 4; } if (xvector < -4) { xvector = -4; } if (yvector > 4) { yvector = 4; } if (yvector < -4) { yvector = -4; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 24; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(2); } } if (unpleasant == true) { this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 12.5); yvector = yvector + ((random(50) - 25) / 12.5); if (xvector > 8) { xvector = 8; } if (xvector < -8) { xvector = -8; } if (yvector > 8) { yvector = 8; } if (yvector < -8) { yvector = -8; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 18; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(4); } } } } }Instance of Symbol 68 MovieClip "ship" in Frame 13onClipEvent (load) { } onClipEvent (enterFrame) { if (death != true) { this._y = this._y + ((_root._ymouse - this._y) / 10); if (_root._xmouse < 200) { this._x = this._x + ((250 - this._x) / 10); this.gotoAndStop(2); } if (_root._xmouse > 200) { this._x = this._x + ((150 - this._x) / 10); this.gotoAndStop(1); } } }Instance of Symbol 71 MovieClip "dot" in Frame 13onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 100 MovieClip in Frame 13onClipEvent (enterFrame) { this.swapDepths(_root.j + 101); if (_root.unpleasantness == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } }Instance of Symbol 71 MovieClip "greydot" in Frame 13onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 84 MovieClip "gwindow" in Frame 13onClipEvent (enterFrame) { this.swapDepths(_root.j + 100); if (_root.reset == true) { removeMovieClip(this); } }Frame 14reset = true; stopAllSounds(); gotoAndPlay (3);Frame 15stop(); reset = true; lvl = "level6";Instance of Symbol 8 MovieClip "ground2" in Frame 15onClipEvent (enterFrame) { this._x = _root.ground._x + 800; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 8 MovieClip "ground" in Frame 15onClipEvent (enterFrame) { this._x = this._x + _root.scrollfactor; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 41 MovieClip "control" in Frame 16onClipEvent (load) { _root.unpleasantness = false; _root.blue.halt = true; _root.grey.halt = true; _root.dot.halt = true; _root.greydot.halt = true; _root.starttime = getTimer(); _root.enumber = 10; _root.j = 5; _root.reset = false; _root.shot.go = false; _root.gshot.go = false; i = 1; _root.scrollfactor = 0; _root.ship.death = false; g = 1; do { duplicateMovieClip (_root.blue, "green" + g, _root.j); _root["green" + g].halt = false; _root["green" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.dot, "dot" + g, _root.j); _root["dot" + g].ftarget = _root["green" + g]; _root["dot" + g].lev = g; _root["dot" + g].halt = false; _root["dot" + g].gotoAndStop(1); _root.j++; g++; } while (this.g <= _root.enumber); _root.enumber = 11; do { duplicateMovieClip (_root.grey, "grey" + g, _root.j); _root["grey" + g].halt = false; _root["grey" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.greydot, "greydot" + g, _root.j); _root["greydot" + g].ftarget = _root["grey" + g]; _root["greydot" + g].lev = g; _root["greydot" + g].halt = false; _root["greydot" + g].gotoAndStop(1); _root.j++; g++; } while (this.g <= _root.enumber); } onClipEvent (enterFrame) { if (_root._xmouse < 0) { _root._xmouse = 0; } _root.timer = Math.floor((getTimer() - _root.starttime) / 1000); _root.scrollfactor = (_root._xmouse - 200) / -20; if (_root.timer == 15) { _root.unpleasantness = true; } if (_root.ship.death == true) { _root.scrollfactor = 0; } if (_root.enumber == 0) { _root.gwindow.gotoAndStop(2); } if (_root.lives == 0) { _root.gwindow.gotoAndStop(3); } } onClipEvent (mouseDown) { if (_root.ship.death != true) { if (i == 4) { i = 1; } s = new Sound(); s.attachSound("shot1.wav"); s.start(); duplicateMovieClip (_root.shot, "shot" + i, i); if (_root._xmouse > 200) { _root["shot" + i]._xscale = -100; } i++; } if (_root.ship.death == true) { if (_root.lives > 0) { _root.ship.gotoAndStop(1); _root.ship._y = _root.ship._y - 300; _root.ship.death = false; } } }Instance of Symbol 43 MovieClip "shot" in Frame 16onClipEvent (load) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = _root.ship._x; this._y = _root.ship._y; interval = -25; if (_root._xmouse > 200) { interval = 25; } } } onClipEvent (enterFrame) { if (this.go != false) { this._x = this._x + interval; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } } }Instance of Symbol 45 MovieClip "gshot" in Frame 16onClipEvent (enterFrame) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = this._x + _root.scrollfactor; if (this.hitTest(_root.ship) == true) { removeMovieClip(this); _root.ship.death = true; _root.ship.gotoAndStop(3); } this._x = this._x + xvector; this._y = this._y + yvector; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } if (this._y < -5) { removeMovieClip(this); } if (this._y > 305) { removeMovieClip(this); } } }Instance of Symbol 106 MovieClip "grey" in Frame 16onClipEvent (load) { this.stop(); if (this.halt != true) { utime = random(450); xvector = random(6) - 3; yvector = random(6) - 3; this._x = (random(900) + (random(2) * 1100)) - 800; this._y = random(300); this.stop(); a = random(50); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { xdif = _root.ship._x - this._x; ydif = _root.ship._y - this._y; this._x = this._x + ((_root.ship._x - this._x) / 10); this._y = this._y + ((_root.ship._y - this._y) / 10); this._x = (this._x + _root.scrollfactor) + xvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (death != true) { if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(2); } } } }Instance of Symbol 150 MovieClip "blue" in Frame 16onClipEvent (load) { this.stop(); if (this.halt != true) { utime = random(450); xvector = random(6) - 3; yvector = random(6) - 3; this._x = (random(900) + (random(2) * 1100)) - 800; this._y = random(300); this.stop(); a = random(25); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { if (unpleasant != true) { if (_root.unpleasantness == true) { utime--; if (utime == 0) { unpleasant = true; this.gotoAndStop(3); } } this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 12.5); yvector = yvector + ((random(50) - 25) / 12.5); if (xvector > 4) { xvector = 4; } if (xvector < -4) { xvector = -4; } if (yvector > 4) { yvector = 4; } if (yvector < -4) { yvector = -4; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 18; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(2); } } if (unpleasant == true) { this._x = (this._x + _root.scrollfactor) + xvector; this._y = this._y + yvector; if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (this._y < 0) { this._y = 0; yvector = yvector * -1; } if (this._y > 300) { this._y = 300; yvector = yvector * -1; } d = 1; if (death != true) { xvector = xvector + ((random(50) - 25) / 10); yvector = yvector + ((random(50) - 25) / 10); if (xvector > 10) { xvector = 10; } if (xvector < -10) { xvector = -10; } if (yvector > 10) { yvector = 10; } if (yvector < -10) { yvector = -10; } if (this._visible == true) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 12; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(4); } } } } }Instance of Symbol 68 MovieClip "ship" in Frame 16onClipEvent (load) { } onClipEvent (enterFrame) { if (death != true) { this._y = this._y + ((_root._ymouse - this._y) / 10); if (_root._xmouse < 200) { this._x = this._x + ((250 - this._x) / 10); this.gotoAndStop(2); } if (_root._xmouse > 200) { this._x = this._x + ((150 - this._x) / 10); this.gotoAndStop(1); } } }Instance of Symbol 152 MovieClip "dot" in Frame 16onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 100 MovieClip in Frame 16onClipEvent (enterFrame) { this.swapDepths(_root.j + 101); if (_root.unpleasantness == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } }Instance of Symbol 71 MovieClip "greydot" in Frame 16onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 84 MovieClip "gwindow" in Frame 16onClipEvent (enterFrame) { this.swapDepths(_root.j + 100); if (_root.reset == true) { removeMovieClip(this); } }Frame 17reset = true; stopAllSounds(); gotoAndPlay (3);Frame 18stop(); reset = true; lvl = "endgame";Instance of Symbol 8 MovieClip "ground2" in Frame 18onClipEvent (enterFrame) { this._x = _root.ground._x + 800; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 8 MovieClip "ground" in Frame 18onClipEvent (enterFrame) { this._x = this._x + _root.scrollfactor; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 41 MovieClip "control" in Frame 19onClipEvent (load) { _root.bossparts = 4; _root.unpleasantness = false; _root.grey.halt = true; _root.greydot.halt = true; _root.starttime = getTimer(); _root.enumber = 2; _root.j = 5; _root.reset = false; _root.shot.go = false; _root.gshot.go = false; i = 1; _root.scrollfactor = 0; _root.ship.death = false; } onClipEvent (enterFrame) { _root.timer = Math.floor((getTimer() - _root.starttime) / 1000); _root.scrollfactor = (_root._xmouse - 200) / -20; if (_root.ship.death == true) { _root.scrollfactor = 0; } if (_root.enumber == 0) { _root.gwindow.gotoAndStop(2); } if (_root.lives == 0) { _root.gwindow.gotoAndStop(3); } } onClipEvent (mouseDown) { if (_root.ship.death != true) { if (i == 4) { i = 1; } s = new Sound(); s.attachSound("shot1.wav"); s.start(); duplicateMovieClip (_root.shot, "shot" + i, i); if (_root._xmouse > 200) { _root["shot" + i]._xscale = -100; } i++; } if (_root.ship.death == true) { if (_root.lives > 0) { _root.ship.gotoAndStop(1); _root.ship._y = _root.ship._y - 300; _root.ship.death = false; } } }Instance of Symbol 43 MovieClip "shot" in Frame 19onClipEvent (load) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = _root.ship._x; this._y = _root.ship._y; interval = -25; if (_root._xmouse > 200) { interval = 25; } } } onClipEvent (enterFrame) { if (this.go != false) { this._x = this._x + interval; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } } }Instance of Symbol 45 MovieClip "gshot" in Frame 19onClipEvent (enterFrame) { if (this.go != false) { if (_root.reset == true) { removeMovieClip(this); } this._x = this._x + _root.scrollfactor; if (this.hitTest(_root.ship) == true) { removeMovieClip(this); _root.ship.death = true; _root.ship.gotoAndStop(3); } this._x = this._x + xvector; this._y = this._y + yvector; if (this._x < -75) { removeMovieClip(this); } if (this._x > 475) { removeMovieClip(this); } if (this._y < -5) { removeMovieClip(this); } if (this._y > 305) { removeMovieClip(this); } } }Instance of Symbol 106 MovieClip "grey" in Frame 19onClipEvent (load) { this.stop(); if (this.halt != true) { utime = random(450); xvector = random(6) - 3; yvector = random(6) - 3; this.stop(); a = random(50); } } onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { if (death != true) { xdif = _root.ship._x - this._x; ydif = _root.ship._y - this._y; this._x = this._x + ((_root.ship._x - this._x) / 10); this._y = this._y + ((_root.ship._y - this._y) / 10); this._x = (this._x + _root.scrollfactor) + xvector; if (this._x < 416) { this._visible = true; } if (this._x > -16) { this._visible = true; } if (this._x > 416) { this._visible = false; } if (this._x < -16) { this._visible = false; } if (death != true) { if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { death = true; _root.ship.death = true; _root.ship.gotoAndStop(3); } } d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { death = true; removeMovieClip(_root["shot" + d]); } d++; } while (d <= 4); } if (death == true) { this.gotoAndStop(2); } } } }Instance of Symbol 158 MovieClip "bossbody" in Frame 19onClipEvent (load) { this._x = 800; } onClipEvent (enterFrame) { this._x = this._x + (_root.scrollfactor + 1); if (this._x < -1600) { this._x = this._x + 3200; } if (this._x > 1600) { this._x = this._x - 3200; } if (death == true) { this.gotoAndStop(2); } }Instance of Symbol 160 MovieClip in Frame 19onClipEvent (enterFrame) { if (this.halt != true) { this._x = ((_root.bossbody._x + 1600) / 16) + 200; this._y = _root.bossbody._y / 16; if (_root.bossbody.death == true) { this._visible = false; } } }Instance of Symbol 164 MovieClip "bosshead" in Frame 19onClipEvent (load) { health = 30; } onClipEvent (enterFrame) { this._x = _root.bossbody._x + _root.scrollfactor; if (death != true) { if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { _root.ship.death = true; _root.ship.gotoAndStop(3); if (_root.bossparts == 0) { health--; this.hit.gotoAndPlay(2); } } } if (_root.bossparts == 0) { d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { removeMovieClip(_root["shot" + d]); this.hit.gotoAndPlay(2); health--; } d++; } while (d <= 4); } } if (health == 0) { death = true; this.gotoAndStop(2); } }Instance of Symbol 168 MovieClip in Frame 19onClipEvent (load) { a = 18; health = 20; } onClipEvent (enterFrame) { this._x = (_root.bossbody._x + _root.scrollfactor) + 100; this._y = _root.bossbody._y - 100; this._rotation = (180 / Math.pi) * Math.atan((_root.ship._y - this._y) / (_root.ship._x - this._x)); if ((_root.ship._x - this._x) < 0) { this._rotation = this._rotation + 180; } if (death != true) { if (this._x < 550) { if (this._x > -150) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 24; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { health--; this.hit.gotoAndPlay(2); _root.ship.death = true; _root.ship.gotoAndStop(3); } } d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { removeMovieClip(_root["shot" + d]); this.hit.gotoAndPlay(2); health--; } d++; } while (d <= 4); } if (health == 0) { death = true; this.gotoAndStop(2); } }Instance of Symbol 168 MovieClip in Frame 19onClipEvent (load) { a = 6; health = 20; } onClipEvent (enterFrame) { this._x = (_root.bossbody._x + _root.scrollfactor) - 100; this._y = _root.bossbody._y + 100; this._rotation = (180 / Math.pi) * Math.atan((_root.ship._y - this._y) / (_root.ship._x - this._x)); if ((_root.ship._x - this._x) < 0) { this._rotation = this._rotation + 180; } if (death != true) { if (this._x < 550) { if (this._x > -150) { a--; if (a == 0) { duplicateMovieClip (_root.gshot, "gshot" + _root.j, _root.j); _root["gshot" + _root.j]._x = this._x; _root["gshot" + _root.j]._y = this._y; _root["gshot" + _root.j].xvector = (this._x - _root.ship._x) / -20; _root["gshot" + _root.j].yvector = (this._y - _root.ship._y) / -20; _root["gshot" + _root.j].go = true; a = 24; f = new Sound(); f.attachSound("laser2.wav"); f.start(); _root.j++; } } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { this.hit.gotoAndPlay(2); health--; _root.ship.death = true; _root.ship.gotoAndStop(3); } } d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { removeMovieClip(_root["shot" + d]); this.hit.gotoAndPlay(2); health--; } d++; } while (d <= 4); } if (health == 0) { death = true; this.gotoAndStop(2); } }Instance of Symbol 173 MovieClip in Frame 19onClipEvent (load) { a = 45; health = 20; g = 1; } onClipEvent (enterFrame) { this._x = (_root.bossbody._x + _root.scrollfactor) - 100; this._y = _root.bossbody._y - 100; if (death != true) { if (this._x < 600) { if (this._x > -200) { a--; if (a == 0) { duplicateMovieClip (_root.grey, "grey" + g, _root.j); _root["grey" + g].halt = false; _root["grey" + g]._x = this._x; _root["grey" + g]._y = this._y; _root["grey" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.greydot, "greydot" + g, _root.j); _root["greydot" + g].ftarget = _root["grey" + g]; _root["greydot" + g].lev = g; _root["greydot" + g].halt = false; _root["greydot" + g].gotoAndStop(1); g++; a = 90; _root.enumber++; _root.j++; } } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { health--; this.hit.gotoAndPlay(2); _root.ship.death = true; _root.ship.gotoAndStop(3); } } d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { removeMovieClip(_root["shot" + d]); this.hit.gotoAndPlay(2); health--; } d++; } while (d <= 4); } if (health == 0) { death = true; this.gotoAndStop(2); } }Instance of Symbol 173 MovieClip in Frame 19onClipEvent (load) { a = 22; health = 20; g = 1000; } onClipEvent (enterFrame) { this._x = (_root.bossbody._x + _root.scrollfactor) + 100; this._y = _root.bossbody._y + 100; if (death != true) { if (this._x < 600) { if (this._x > -200) { a--; if (a == 0) { duplicateMovieClip (_root.grey, "grey" + g, _root.j); _root["grey" + g].halt = false; _root["grey" + g]._x = this._x; _root["grey" + g]._y = this._y; _root["grey" + g].gotoAndStop(1); _root.j++; duplicateMovieClip (_root.greydot, "greydot" + g, _root.j); _root["greydot" + g].ftarget = _root["grey" + g]; _root["greydot" + g].lev = g; _root["greydot" + g].halt = false; _root["greydot" + g].gotoAndStop(1); g++; _root.enumber++; a = 90; _root.j++; } } } if (_root.ship.death != true) { if (this.hitTest(_root.ship) == true) { health--; this.hit.gotoAndPlay(2); _root.ship.death = true; _root.ship.gotoAndStop(3); } } d = 1; do { if (this.hitTest(_root["shot" + d]) == true) { removeMovieClip(_root["shot" + d]); this.hit.gotoAndPlay(2); health--; } d++; } while (d <= 4); } if (health == 0) { death = true; this.gotoAndStop(2); } }Instance of Symbol 68 MovieClip "ship" in Frame 19onClipEvent (load) { } onClipEvent (enterFrame) { if (death != true) { this._y = this._y + ((_root._ymouse - this._y) / 10); if (_root._xmouse < 200) { this._x = this._x + ((250 - this._x) / 10); this.gotoAndStop(2); } if (_root._xmouse > 200) { this._x = this._x + ((150 - this._x) / 10); this.gotoAndStop(1); } } }Instance of Symbol 71 MovieClip "greydot" in Frame 19onClipEvent (enterFrame) { if (_root.reset == true) { removeMovieClip(this); } if (this.halt != true) { this.swapDepths((_root.j + lev) + 102); this._x = ((ftarget._x + 1600) / 16) + 200; this._y = ftarget._y / 16; if (ftarget.death == true) { this._visible = false; } if (ftarget.unpleasant == true) { this.gotoAndStop(2); } if (_root.reset == true) { removeMovieClip(this); } } }Instance of Symbol 84 MovieClip "gwindow" in Frame 19onClipEvent (enterFrame) { this.swapDepths(_root.j + 100); if (_root.reset == true) { removeMovieClip(this); } }Frame 20reset = true; stopAllSounds(); gotoAndPlay (3);Frame 21removeMovieClip(_root.status); reset = true; stop();Instance of Symbol 8 MovieClip "ground2" in Frame 21onClipEvent (enterFrame) { this._x = _root.ground._x + 800; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Instance of Symbol 8 MovieClip "ground" in Frame 21onClipEvent (enterFrame) { this._x = this._x + _root.scrollfactor; if (this._x < -600) { this._x = this._x + 1600; } if (this._x > 1000) { this._x = this._x - 1600; } }Symbol 16 Buttonon (release) { gotoAndStop (4); } on (rollOver) { _root.boxframe = 2; } on (rollOut) { _root.boxframe = 1; } on (keyPress "2") { gotoAndStop (6); } on (keyPress "3") { gotoAndStop (9); } on (keyPress "4") { gotoAndStop (12); } on (keyPress "5") { gotoAndStop (15); } on (keyPress "6") { gotoAndStop (18); }Symbol 17 Buttonon (rollOver) { _root.boxframe = 3; } on (rollOut) { _root.boxframe = 1; }Symbol 18 Buttonon (release) { getURL ("http://www.aeflash.com", "_blank"); } on (rollOver) { _root.boxframe = 4; } on (rollOut) { _root.boxframe = 1; }Symbol 21 MovieClip Frame 15stop();Symbol 23 MovieClip Frame 15stop();Symbol 25 MovieClip Frame 15stop();Symbol 27 MovieClip Frame 15stop();Symbol 29 MovieClip Frame 15stop();Symbol 31 MovieClip Frame 15stop();Symbol 32 MovieClip Frame 1stop();Symbol 32 MovieClip Frame 2stop();Symbol 32 MovieClip Frame 3stop();Symbol 32 MovieClip Frame 4stop();Symbol 32 MovieClip Frame 5stop();Symbol 32 MovieClip Frame 6stop();Symbol 36 Buttonon (release) { if (_root._quality == "MEDIUM") { _root._quality = "LOW"; } else { _root._quality = "MEDIUM"; } } on (rollOver) { _root.boxframe = 5; } on (rollOut) { _root.boxframe = 1; }Symbol 38 Buttonon (release) { getURL ("http://www.aeflash.com/anims/evolvron.exe", "_blank"); } on (rollOver) { _root.boxframe = 6; } on (rollOut) { _root.boxframe = 1; }Symbol 51 MovieClip Frame 2_root.enumber--; _root.score = _root.score + 50;Symbol 51 MovieClip Frame 29stop();Symbol 58 MovieClip Frame 16_root.score = _root.score - 50;Symbol 58 MovieClip Frame 45gotoAndPlay (17);Symbol 59 MovieClip Frame 2_root.enumber--; _root.score = _root.score + 80;Symbol 59 MovieClip Frame 20stop();Symbol 60 MovieClip Frame 1stop();Symbol 60 MovieClip Frame 2stop();Symbol 60 MovieClip Frame 3stop();Symbol 60 MovieClip Frame 4stop();Symbol 65 MovieClip Frame 16stop();Symbol 66 MovieClip Frame 16stop();Symbol 67 MovieClip Frame 1if (_root.lives != 0) { _root.lives--; }Symbol 67 MovieClip Frame 21stop();Symbol 68 MovieClip Frame 1stop();Symbol 68 MovieClip Frame 2stop();Symbol 68 MovieClip Frame 3stop();Symbol 71 MovieClip Frame 1stop();Symbol 71 MovieClip Frame 2stop();Symbol 73 Buttonon (release) { _root.gotoAndStop(_root.lvl); }Symbol 82 Buttonon (release) { _root.reset = true; _root.gotoAndStop(1); }Symbol 84 MovieClip Frame 1stop();Symbol 84 MovieClip Frame 2stop(); _root.score = _root.score - Math.floor(2.5 * _root.timer); ttaken = _root.timer; scored = Math.floor(2.5 * _root.timer);Symbol 84 MovieClip Frame 3stop();Symbol 94 MovieClip Frame 1enumber = _root.enumber; time = _root.timer; lives = _root.lives; score = _root.score;Symbol 96 Buttonon (release) { nextFrame(); }Symbol 99 MovieClip Frame 181stop();Symbol 100 MovieClip Frame 1stop();Symbol 100 MovieClip Frame 2stop();Symbol 105 MovieClip Frame 2_root.enumber--; _root.score = _root.score + 80;Symbol 105 MovieClip Frame 20stop();Symbol 106 MovieClip Frame 1stop();Symbol 106 MovieClip Frame 2stop();Symbol 123 MovieClip Frame 90_root.supplyship.a = true;Symbol 131 MovieClip Frame 21stop();Symbol 132 MovieClip Frame 15stop();Symbol 132 MovieClip Frame 16stop();Symbol 136 MovieClip Frame 29gotoAndPlay (17);Symbol 148 MovieClip Frame 1_root.score = _root.score - 100;Symbol 148 MovieClip Frame 38gotoAndPlay (21);Symbol 149 MovieClip Frame 2_root.enumber--; _root.score = _root.score + 150;Symbol 149 MovieClip Frame 20stop();Symbol 150 MovieClip Frame 1stop();Symbol 150 MovieClip Frame 2stop();Symbol 150 MovieClip Frame 3stop();Symbol 150 MovieClip Frame 4stop();Symbol 152 MovieClip Frame 1stop();Symbol 152 MovieClip Frame 2stop();Symbol 157 MovieClip Frame 61_root.enumber--; stop(); _root.score = _root.score + 1000;Symbol 158 MovieClip Frame 1stop();Symbol 158 MovieClip Frame 2stop();Symbol 162 MovieClip Frame 1stop();Symbol 162 MovieClip Frame 6gotoAndStop (1);Symbol 163 MovieClip Frame 9_root.bossbody.death = true;Symbol 163 MovieClip Frame 28stop(); _root.enumber--;Symbol 164 MovieClip Frame 1stop();Symbol 164 MovieClip Frame 2stop();Symbol 166 MovieClip Frame 1stop();Symbol 167 MovieClip Frame 26stop(); _root.bossparts--; _root.score = _root.score + 150;Symbol 168 MovieClip Frame 1stop();Symbol 168 MovieClip Frame 2stop();Symbol 171 MovieClip Frame 1stop();Symbol 172 MovieClip Frame 23stop(); _root.bossparts--; _root.score = _root.score + 200;Symbol 173 MovieClip Frame 1stop();Symbol 173 MovieClip Frame 2stop();Symbol 175 Buttonon (release) { gotoAndStop (3); }
Library Items
Symbol 1 Sound [shot1.wav] | ||
Symbol 2 Sound [laser2.wav] | ||
Symbol 3 Sound [Effect2.wav] | ||
Symbol 4 Sound [gl.wav] | Used by:67 131 157 167 | |
Symbol 5 Graphic | Used by:Timeline | |
Symbol 6 Graphic | Used by:Timeline | |
Symbol 7 Graphic | Used by:8 | |
Symbol 8 MovieClip | Uses:7 | Used by:Timeline |
Symbol 9 Graphic | Used by:Timeline | |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip | Uses:10 | Used by:Timeline |
Symbol 12 Font | Used by:13 22 24 26 28 30 33 34 35 37 39 72 74 75 76 81 83 86 87 88 89 90 91 92 93 95 97 101 107 135 153 174 176 | |
Symbol 13 EditableText | Uses:12 | Used by:Timeline |
Symbol 14 Graphic | Used by:94 Timeline | |
Symbol 15 Graphic | Used by:16 17 18 36 38 73 82 96 175 | |
Symbol 16 Button | Uses:15 | Used by:Timeline |
Symbol 17 Button | Uses:15 | Used by:Timeline |
Symbol 18 Button | Uses:15 | Used by:Timeline |
Symbol 19 Graphic | Used by:32 84 Timeline | |
Symbol 20 Graphic | Used by:21 | |
Symbol 21 MovieClip | Uses:20 | Used by:32 |
Symbol 22 Text | Uses:12 | Used by:23 |
Symbol 23 MovieClip | Uses:22 | Used by:32 |
Symbol 24 Text | Uses:12 | Used by:25 |
Symbol 25 MovieClip | Uses:24 | Used by:32 |
Symbol 26 Text | Uses:12 | Used by:27 |
Symbol 27 MovieClip | Uses:26 | Used by:32 |
Symbol 28 Text | Uses:12 | Used by:29 |
Symbol 29 MovieClip | Uses:28 | Used by:32 |
Symbol 30 Text | Uses:12 | Used by:31 |
Symbol 31 MovieClip | Uses:30 | Used by:32 |
Symbol 32 MovieClip | Uses:19 21 23 25 27 29 31 | Used by:Timeline |
Symbol 33 Text | Uses:12 | Used by:Timeline |
Symbol 34 Text | Uses:12 | Used by:Timeline |
Symbol 35 Text | Uses:12 | Used by:Timeline |
Symbol 36 Button | Uses:15 | Used by:Timeline |
Symbol 37 Text | Uses:12 | Used by:Timeline |
Symbol 38 Button | Uses:15 | Used by:Timeline |
Symbol 39 Text | Uses:12 | Used by:Timeline |
Symbol 40 Graphic | Used by:Timeline | |
Symbol 41 MovieClip | Used by:Timeline | |
Symbol 42 Graphic | Used by:43 | |
Symbol 43 MovieClip | Uses:42 | Used by:62 Timeline |
Symbol 44 Graphic | Used by:45 47 51 | |
Symbol 45 MovieClip | Uses:44 | Used by:Timeline |
Symbol 46 Graphic | Used by:47 51 58 136 148 | |
Symbol 47 MovieClip | Uses:44 46 | Used by:60 |
Symbol 48 Graphic | Used by:51 59 67 105 131 149 157 163 167 172 | |
Symbol 49 Graphic | Used by:51 59 67 105 131 149 157 163 167 172 | |
Symbol 50 Sound | Used by:51 59 60 105 148 149 157 163 167 | |
Symbol 51 MovieClip | Uses:44 46 48 49 50 | Used by:60 |
Symbol 52 ShapeTweening | Used by:58 | |
Symbol 53 ShapeTweening | Used by:58 | |
Symbol 54 ShapeTweening | Used by:58 | |
Symbol 55 Graphic | Used by:58 59 136 | |
Symbol 56 Graphic | Used by:58 | |
Symbol 57 Graphic | Used by:58 136 148 | |
Symbol 58 MovieClip | Uses:52 46 53 54 55 56 57 | Used by:60 |
Symbol 59 MovieClip | Uses:55 48 49 50 | Used by:60 150 |
Symbol 60 MovieClip | Uses:47 51 58 50 59 | Used by:Timeline |
Symbol 61 Graphic | Used by:65 66 67 | |
Symbol 62 MovieClip | Uses:43 | Used by:65 66 67 |
Symbol 63 Graphic | Used by:65 66 67 108 | |
Symbol 64 Graphic | Used by:65 66 | |
Symbol 65 MovieClip | Uses:61 62 63 64 | Used by:68 |
Symbol 66 MovieClip | Uses:61 62 63 64 | Used by:68 |
Symbol 67 MovieClip | Uses:61 62 63 48 49 4 | Used by:68 |
Symbol 68 MovieClip | Uses:65 66 67 | Used by:Timeline |
Symbol 69 Graphic | Used by:71 | |
Symbol 70 Graphic | Used by:71 152 | |
Symbol 71 MovieClip | Uses:69 70 | Used by:Timeline |
Symbol 72 Text | Uses:12 | Used by:84 |
Symbol 73 Button | Uses:15 | Used by:84 |
Symbol 74 Text | Uses:12 | Used by:84 Timeline |
Symbol 75 Text | Uses:12 | Used by:84 |
Symbol 76 Text | Uses:12 | Used by:84 |
Symbol 77 Font | Used by:78 79 | |
Symbol 78 EditableText | Uses:77 | Used by:84 |
Symbol 79 EditableText | Uses:77 | Used by:84 |
Symbol 80 Sound | Used by:84 Timeline | |
Symbol 81 Text | Uses:12 | Used by:84 |
Symbol 82 Button | Uses:15 | Used by:84 |
Symbol 83 Text | Uses:12 | Used by:84 |
Symbol 84 MovieClip | Uses:19 72 73 74 75 76 78 79 80 81 82 83 | Used by:Timeline |
Symbol 85 Graphic | Used by:94 | |
Symbol 86 Text | Uses:12 | Used by:94 |
Symbol 87 EditableText | Uses:12 | Used by:94 |
Symbol 88 Text | Uses:12 | Used by:94 |
Symbol 89 EditableText | Uses:12 | Used by:94 |
Symbol 90 Text | Uses:12 | Used by:94 |
Symbol 91 EditableText | Uses:12 | Used by:94 |
Symbol 92 Text | Uses:12 | Used by:94 |
Symbol 93 EditableText | Uses:12 | Used by:94 |
Symbol 94 MovieClip | Uses:85 86 87 88 89 90 91 92 93 14 | Used by:Timeline |
Symbol 95 Text | Uses:12 | Used by:Timeline |
Symbol 96 Button | Uses:15 | Used by:Timeline |
Symbol 97 Text | Uses:12 | Used by:98 |
Symbol 98 MovieClip | Uses:97 | Used by:99 |
Symbol 99 MovieClip | Uses:98 | Used by:100 |
Symbol 100 MovieClip | Uses:99 | Used by:Timeline |
Symbol 101 Text | Uses:12 | Used by:Timeline |
Symbol 102 Graphic | Used by:104 105 | |
Symbol 103 Graphic | Used by:104 | |
Symbol 104 MovieClip | Uses:102 103 | Used by:106 |
Symbol 105 MovieClip | Uses:102 48 49 50 | Used by:106 |
Symbol 106 MovieClip | Uses:104 105 | Used by:Timeline |
Symbol 107 Text | Uses:12 | Used by:Timeline |
Symbol 108 MovieClip | Uses:63 | Used by:Timeline |
Symbol 109 Graphic | Used by:123 | |
Symbol 110 Graphic | Used by:120 | |
Symbol 111 ShapeTweening | Used by:120 | |
Symbol 112 ShapeTweening | Used by:120 | |
Symbol 113 ShapeTweening | Used by:120 | |
Symbol 114 ShapeTweening | Used by:120 | |
Symbol 115 ShapeTweening | Used by:120 | |
Symbol 116 ShapeTweening | Used by:120 | |
Symbol 117 ShapeTweening | Used by:120 | |
Symbol 118 ShapeTweening | Used by:120 | |
Symbol 119 Graphic | Used by:120 | |
Symbol 120 MovieClip | Uses:110 111 112 113 114 115 116 117 118 119 | Used by:123 131 134 |
Symbol 121 Graphic | Used by:123 134 | |
Symbol 122 Sound | Used by:123 | |
Symbol 123 MovieClip | Uses:109 120 121 122 | Used by:132 |
Symbol 124 Graphic | Used by:132 | |
Symbol 125 Sound | Used by:132 162 166 171 | |
Symbol 126 Graphic | Used by:131 | |
Symbol 127 Graphic | Used by:131 | |
Symbol 128 Graphic | Used by:131 | |
Symbol 129 Graphic | Used by:131 | |
Symbol 130 Sound | Used by:131 157 172 | |
Symbol 131 MovieClip | Uses:49 126 120 127 48 4 128 129 130 | Used by:132 |
Symbol 132 MovieClip | Uses:123 124 125 131 | Used by:Timeline |
Symbol 133 Graphic | Used by:134 | |
Symbol 134 MovieClip | Uses:133 120 121 | Used by:Timeline |
Symbol 135 Text | Uses:12 | Used by:Timeline |
Symbol 136 MovieClip | Uses:57 55 46 | Used by:150 |
Symbol 137 ShapeTweening | Used by:148 | |
Symbol 138 Graphic | Used by:148 149 | |
Symbol 139 Graphic | Used by:148 | |
Symbol 140 Graphic | Used by:148 | |
Symbol 141 Graphic | Used by:148 | |
Symbol 142 Graphic | Used by:148 | |
Symbol 143 Graphic | Used by:148 | |
Symbol 144 Graphic | Used by:148 | |
Symbol 145 Graphic | Used by:148 | |
Symbol 146 Graphic | Used by:148 | |
Symbol 147 Graphic | Used by:148 | |
Symbol 148 MovieClip | Uses:137 57 46 50 138 139 140 141 142 143 144 145 146 147 | Used by:150 |
Symbol 149 MovieClip | Uses:138 48 49 50 | Used by:150 |
Symbol 150 MovieClip | Uses:136 59 148 149 | Used by:Timeline |
Symbol 151 Graphic | Used by:152 | |
Symbol 152 MovieClip | Uses:70 151 | Used by:Timeline |
Symbol 153 Text | Uses:12 | Used by:Timeline |
Symbol 154 Graphic | Used by:156 | |
Symbol 155 Graphic | Used by:156 | |
Symbol 156 MovieClip | Uses:154 155 | Used by:157 158 |
Symbol 157 MovieClip | Uses:156 48 49 50 130 4 | Used by:158 |
Symbol 158 MovieClip | Uses:156 157 | Used by:Timeline |
Symbol 159 Graphic | Used by:160 | |
Symbol 160 MovieClip | Uses:159 | Used by:Timeline |
Symbol 161 Graphic | Used by:162 163 | |
Symbol 162 MovieClip | Uses:161 125 | Used by:164 |
Symbol 163 MovieClip | Uses:161 48 49 50 | Used by:164 |
Symbol 164 MovieClip | Uses:162 163 | Used by:Timeline |
Symbol 165 Graphic | Used by:166 167 | |
Symbol 166 MovieClip | Uses:165 125 | Used by:168 |
Symbol 167 MovieClip | Uses:165 48 49 4 50 | Used by:168 |
Symbol 168 MovieClip | Uses:166 167 | Used by:Timeline |
Symbol 169 Graphic | Used by:170 | |
Symbol 170 MovieClip | Uses:169 | Used by:171 172 |
Symbol 171 MovieClip | Uses:170 125 | Used by:173 |
Symbol 172 MovieClip | Uses:170 48 49 130 | Used by:173 |
Symbol 173 MovieClip | Uses:171 172 | Used by:Timeline |
Symbol 174 Text | Uses:12 | Used by:Timeline |
Symbol 175 Button | Uses:15 | Used by:Timeline |
Symbol 176 Text | Uses:12 | Used by:Timeline |
Instance Names
"ground2" | Frame 1 | Symbol 8 MovieClip |
"bar" | Frame 1 | Symbol 11 MovieClip |
"ground2" | Frame 3 | Symbol 8 MovieClip |
"ground2" | Frame 4 | Symbol 8 MovieClip |
"ground" | Frame 4 | Symbol 8 MovieClip |
"control" | Frame 4 | Symbol 41 MovieClip |
"shot" | Frame 4 | Symbol 43 MovieClip |
"gshot" | Frame 4 | Symbol 45 MovieClip |
"green" | Frame 4 | Symbol 60 MovieClip |
"ship" | Frame 4 | Symbol 68 MovieClip |
"dot" | Frame 4 | Symbol 71 MovieClip |
"gwindow" | Frame 4 | Symbol 84 MovieClip |
"status" | Frame 4 | Symbol 94 MovieClip |
"ground2" | Frame 6 | Symbol 8 MovieClip |
"ground" | Frame 6 | Symbol 8 MovieClip |
"control" | Frame 7 | Symbol 41 MovieClip |
"shot" | Frame 7 | Symbol 43 MovieClip |
"gshot" | Frame 7 | Symbol 45 MovieClip |
"green" | Frame 7 | Symbol 60 MovieClip |
"ship" | Frame 7 | Symbol 68 MovieClip |
"dot" | Frame 7 | Symbol 71 MovieClip |
"gwindow" | Frame 7 | Symbol 84 MovieClip |
"ground2" | Frame 9 | Symbol 8 MovieClip |
"ground" | Frame 9 | Symbol 8 MovieClip |
"control" | Frame 10 | Symbol 41 MovieClip |
"shot" | Frame 10 | Symbol 43 MovieClip |
"gshot" | Frame 10 | Symbol 45 MovieClip |
"grey" | Frame 10 | Symbol 106 MovieClip |
"green" | Frame 10 | Symbol 60 MovieClip |
"ship" | Frame 10 | Symbol 68 MovieClip |
"dot" | Frame 10 | Symbol 71 MovieClip |
"greydot" | Frame 10 | Symbol 71 MovieClip |
"gwindow" | Frame 10 | Symbol 84 MovieClip |
"ground2" | Frame 12 | Symbol 8 MovieClip |
"ground" | Frame 12 | Symbol 8 MovieClip |
"control" | Frame 13 | Symbol 41 MovieClip |
"shot" | Frame 13 | Symbol 43 MovieClip |
"gshot" | Frame 13 | Symbol 45 MovieClip |
"grey" | Frame 13 | Symbol 106 MovieClip |
"life" | Frame 13 | Symbol 108 MovieClip |
"supplyship" | Frame 13 | Symbol 132 MovieClip |
"green" | Frame 13 | Symbol 60 MovieClip |
"ship" | Frame 13 | Symbol 68 MovieClip |
"dot" | Frame 13 | Symbol 71 MovieClip |
"greydot" | Frame 13 | Symbol 71 MovieClip |
"gwindow" | Frame 13 | Symbol 84 MovieClip |
"ground2" | Frame 15 | Symbol 8 MovieClip |
"ground" | Frame 15 | Symbol 8 MovieClip |
"control" | Frame 16 | Symbol 41 MovieClip |
"shot" | Frame 16 | Symbol 43 MovieClip |
"gshot" | Frame 16 | Symbol 45 MovieClip |
"grey" | Frame 16 | Symbol 106 MovieClip |
"blue" | Frame 16 | Symbol 150 MovieClip |
"ship" | Frame 16 | Symbol 68 MovieClip |
"dot" | Frame 16 | Symbol 152 MovieClip |
"greydot" | Frame 16 | Symbol 71 MovieClip |
"gwindow" | Frame 16 | Symbol 84 MovieClip |
"ground2" | Frame 18 | Symbol 8 MovieClip |
"ground" | Frame 18 | Symbol 8 MovieClip |
"control" | Frame 19 | Symbol 41 MovieClip |
"shot" | Frame 19 | Symbol 43 MovieClip |
"gshot" | Frame 19 | Symbol 45 MovieClip |
"grey" | Frame 19 | Symbol 106 MovieClip |
"bossbody" | Frame 19 | Symbol 158 MovieClip |
"bosshead" | Frame 19 | Symbol 164 MovieClip |
"ship" | Frame 19 | Symbol 68 MovieClip |
"greydot" | Frame 19 | Symbol 71 MovieClip |
"gwindow" | Frame 19 | Symbol 84 MovieClip |
"ground2" | Frame 21 | Symbol 8 MovieClip |
"ground" | Frame 21 | Symbol 8 MovieClip |
"hit" | Symbol 164 MovieClip Frame 1 | Symbol 162 MovieClip |
"hit" | Symbol 168 MovieClip Frame 1 | Symbol 166 MovieClip |
"hit" | Symbol 173 MovieClip Frame 1 | Symbol 171 MovieClip |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "shot1.wav" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "laser2.wav" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "Effect2.wav" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "gl.wav" |
ExportAssets (56) | Timeline Frame 4 | Symbol 4 as "gl.wav" |
ExportAssets (56) | Timeline Frame 13 | Symbol 4 as "gl.wav" |
ExportAssets (56) | Timeline Frame 19 | Symbol 4 as "gl.wav" |
ExportAssets (56) | Timeline Frame 19 | Symbol 4 as "gl.wav" |
Labels
"level1" | Frame 4 |
"level2" | Frame 6 |
"level3" | Frame 9 |
"level4" | Frame 12 |
"level5" | Frame 15 |
"level6" | Frame 18 |
"endgame" | Frame 21 |
"status" | Frame 21 |
Dynamic Text Variables
text | Symbol 13 EditableText | "999 KB Left" |
ttaken | Symbol 78 EditableText | "0000" |
scored | Symbol 79 EditableText | "0000" |
enumber | Symbol 87 EditableText | "" |
time | Symbol 89 EditableText | "" |
lives | Symbol 91 EditableText | "" |
score | Symbol 93 EditableText | "" |
|