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

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

Labyrinth - The Unknown.swf

This is the info page for
Flash #46405

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


Text
Games
Tests
Animations
Downloads

ryan.cyberemail.org

Games

Created by Ryan Beruldsen

Labyrinth

will it destroy you?

instructions

code

play

You must reach the end of five gruelling levels
to complete this game. To do
this, follow each maze, avoid the
various obstacles and find the white portal at each level.
electric barriers are disabled by two shots, wheras missiles
are distroyed with one...the LABYRINTH...will it destroy you?
controls:
ship movment/acceleration: mouse
shoot: click

click to play

stage 1: labyrinth

hhhh

code: alpha
click to play

stage 2: navigation & strategy

code: beta
click to play

stage 3: omega

ActionScript [AS1/AS2]

Frame 1
stop(); logd._alpha = 0; perc._alpha = 0; font = true; po = perc._xscale; loaded = false; lod = 0; this.onEnterFrame = function () { if (font == true) { if ((perc._alpha < 100) && (loaded == false)) { logd._alpha = logd._alpha + 10; perc._alpha = perc._alpha + 10; } perc._xscale = (po / 100) * Math.floor((100 * this.getBytesLoaded()) / this.getBytesTotal()); lod = Math.floor((100 * this.getBytesLoaded()) / this.getBytesTotal()); trace(lod); if (lod == 100) { trace(logd._alpha); loaded = true; logd._alpha = logd._alpha - 10; perc._alpha = perc._alpha - 10; if (logd._alpha < 1) { play(); font = false; } } } };
Frame 2
init = function () { i = 1; while (i < 200) { attachMovie("line", "line" + i, i); this["line" + i]._x = getRandom(0, 513); this["line" + i]._y = getRandom(0, 400); this["line" + i]._xscale = 50; this["line" + i]._alpha = 10; i++; } }; init();
Frame 70
play(); if (((((lvl1 == true) || (lvl2 == true)) || (lvl3 == true)) || (lvl4 == true)) || (lvl5 == true)) { gotoAndPlay (198); } lvl1 = false; lvl2 = false; lvl3 = false; lvl4 = false; lvl5 = false;
Frame 201
function adjustPos(o) { if (o._y < 0) { o._y = Stage.height; } else if (o._y > Stage.height) { o._y = 0; } if (o._x < 0) { o._x = Stage.width; } else if (o._x > Stage.width) { o._x = 0; } } function adjustPos2(o) { if (o._y < 0) { o._y = getRandom(400, 450); } else if (o._y > Stage.height) { o._y = getRandom(0, -50); } if (o._x < 0) { o._x = getRandom(513, 550); } else if (o._x > Stage.width) { o._x = getRandom(0, -50); } } function d2r(d) { return((d * Math.PI) / 180); } function getRandom(minimum, maximum) { return(Math.floor((Math.random() * ((maximum - minimum) + 1)) + minimum)); } function dist2(obj1, obj2) { return(Math.pow(obj1._x - obj2._x, 2) + Math.pow(obj1._y - obj2._y, 2)); } function moveBullet(object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(object._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(object._rotation + no))); } function moveCompBullet(com, object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(com._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(com._rotation + no))); } function dist(obj1, obj2) { return(Math.sqrt(dist2(obj1, obj2))); } function faceObj(o, o2, no) { return(r2d(Math.atan2(o._y - o2._y, o._x - o2._x)) + no); } stop(); titles = false; init = function () { i = 1; while (i < 200) { attachMovie("line", "line" + i, i); this["line" + i]._x = getRandom(0, 513); this["line" + i]._y = getRandom(0, 400); this["line" + i]._xscale = 50; this["line" + i]._alpha = 10; i++; } }; link.onPress = function () { getURL ("http://ryan.cyberemail.org", "_blank"); }; mouse = new Object(); instr.onPress = function () { gotoAndStop (203); prevFrame(); }; titles = false; plays.onPress = function () { gotoAndStop (204); }; code.onPress = function () { gotoAndStop (204); prevFrame(); }; this.onEnterFrame = function () { mouse._x = _xmouse; mouse._y = _ymouse; plays._alpha = 100 - dist(mouse, plays); instr._alpha = 100 - dist(mouse, instr); code._alpha = 100 - dist(mouse, code); f = 1; while (f < 200) { moveBullet(this["line" + f], 20, 90); this["line" + f]._xscale = 100; this["line" + f]._rotation = -40; adjustPos2(this["line" + f]); f++; } }; init();
Frame 202
stop(); instr.onPress = function () { if (this._currentframe == 2) { gotoAndPlay (202); } else { stop(); } }; titles = false; plays.onPress = function () { gotoAndStop (204); }; code.onPress = function () { play(); }; link.onPress = function () { getURL ("http://ryan.cyberemail.org", "_blank"); }; stop();
Frame 203
stop(); titles = false; instr.onPress = function () { prevFrame(); }; link.onPress = function () { getURL ("http://ryan.cyberemail.org", "_blank"); }; plays.onPress = function () { if (codes.text == "beta") { gotoAndStop (210); } else if (codes.text == "alpha") { gotoAndStop (207); } else { gotoAndStop (204); } }; code.onPress = function () { stop(); }; stop();
Frame 204
this.onMouseDown = function () { if (titles == true) { play(); } }; stop(); titles = true;
Frame 205
titles = false; function r2d(r) { return((r * 180) / Math.PI); } function adjustPos(o) { if (o._y < 0) { o._y = Stage.height; } else if (o._y > Stage.height) { o._y = 0; } if (o._x < 0) { o._x = Stage.width; } else if (o._x > Stage.width) { o._x = 0; } } function adjustPos2(o) { if (o._y < 0) { o._y = getRandom(400, 450); } else if (o._y > Stage.height) { o._y = getRandom(0, -50); } if (o._x < 0) { o._x = getRandom(513, 550); } else if (o._x > Stage.width) { o._x = getRandom(0, -50); } } function d2r(d) { return((d * Math.PI) / 180); } function getRandom(minimum, maximum) { return(Math.floor((Math.random() * ((maximum - minimum) + 1)) + minimum)); } function dist2(obj1, obj2) { return(Math.pow(obj1._x - obj2._x, 2) + Math.pow(obj1._y - obj2._y, 2)); } function moveBullet(object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(object._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(object._rotation + no))); } function moveCompBullet(com, object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(com._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(com._rotation + no))); } function dist(obj1, obj2) { return(Math.sqrt(dist2(obj1, obj2))); } function faceObj(o, o2, no) { return(r2d(Math.atan2(o._y - o2._y, o._x - o2._x)) + no); } stop(); lvl1 = true; mo = new Object(); speed = 0; id = 1; id2 = 1; this.onMouseDown = function () { if (dead == false) { attachMovie("laser", "laser" + id2, id2); this["laser" + id2]._xscale = 10; this["laser" + id2]._yscale = this["laser" + id2]._xscale; this["laser" + id2]._x = ship._x; this["laser" + id2]._y = ship._y; this["laser" + id2]._visible = false; this["laser" + id2]._alpha = 50; this["laser" + id2].ex = false; this["laser" + id2].ex2 = false; this["laser" + id2].act = false; this["laser" + id2]._rotation = ship._rotation + 90; this["laser" + id2].onEnterFrame = function () { if (this.ex2 == false) { moveCompBullet(ship, this, spug * 2, 90); } if (maz2.hitTest(this._x, this._y, true) && (this.ex == false)) { this.nextFrame(); this.ex = true; } if (dist(this, ship) > 25) { this.act = true; this._visible = true; } else if (this.act == false) { this._visible = false; } if (this.ex == false) { moveBullet(this, 50, 0); } }; id2++; } }; init = function () { i = 1; while (i < 200) { attachMovie("line", "line" + i, i); this["line" + i]._x = getRandom(0, 513); this["line" + i]._y = getRandom(0, 400); this["line" + i]._xscale = 50; this["line" + i]._alpha = 10; i++; } }; init(); grun = false; dead = false; dead2 = false; o = 1; while (o < 10) { this["miss" + o].dead = false; this["miss" + o].launched = false; this["miss" + o]._visible = false; this["miss" + o].onEnterFrame = function () { if (ship._y < this._y) { if (this.dead == false) { this._visible = true; } this.launched = true; } moveCompBullet(ship, this, spug * 2, 90); if (this.launched == true) { missileCheck(this); } }; o++; } missileCheck = function (mis) { z = 0; while (z < id2) { if (mis.hitTest(this["laser" + z]._x, this["laser" + z]._y) && (mis.dead == false)) { mis.play(); mis.dead = true; this["laser" + z].removeMovieClip(); } z++; } f = 1; while (f < 10) { if ((((dist(mis, this["miss" + f]) < 5) && (dist(mis, this["miss" + f]) > 0)) && (mis.dead == false)) && (this["miss" + f].dead == false)) { this["miss" + f].dead = true; this["miss" + f].play(); mis.play(); mis.dead = true; } f++; } if (mis.dead == false) { if (dead == false) { mis._rotation = faceObj(mis, ship, -360); } moveBullet(mis, 30, 90); } if ((mis.hitTest(ship._x, ship._y, true) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (((dist(miss, ship) < 10) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (maz2.hitTest(mis._x, mis._y, true) && (mis.dead == false)) { mis.play(); mis.dead = true; } }; nextLevel = false; nextB = false; this.onEnterFrame = function () { if (dead == true) { if (ship._currentframe > 45) { gotoAndPlay (70); } } if (lvl1 == true) { if ((dist(ship, endo) / 100) < 3) { play(); } dir.dit.text = Math.floor(dist(ship, endo) / 100); dir.finds._rotation = faceObj(ship, endo, -90); checks.sc._alpha = 50; checks.sc2._alpha = 50; flame2._visible = flame._visible; ship2._rotation = ship._rotation; ship2.gotoAndStop(ship._currentframe); ship2.turn.gotoAndStop(ship.turn._currentframe); flame2.gotoAndStop(flame._currentframe); flame2._rotation = flame._rotation; flame2._xscale = flame._xscale / 2; if (maz2.hitTest(ship._x, ship._y, true) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; } diff = _xmouse - ship._x; if (((grun == false) && (diff > 0)) && (ship.turn._currentframe == 1)) { grun = true; ship.turn.play(); flame.play(); } if (((grun == true) && (diff < 0)) && (ship.turn._currentframe == 3)) { flame.play(); ship.turn.play(); } if (((grun == true) && (diff > 0)) && (ship.turn._currentframe == 1)) { flame.play(); ship.turn.play(); } adjustPos(ship); maz._x = maz2._x; maz._y = maz2._y; f = 1; while (f < 200) { moveBullet(this["line" + f], spug * 2, 90); if (dead == false) { this["line" + f]._xscale = speed * 10; this["line" + f]._rotation = faceObj(ship, mo, 0); } adjustPos2(this["line" + f]); f++; } moveCompBullet(ship, endo, spug * 2, 90); moveCompBullet(ship, starts, spug * 2, 90); moveCompBullet(ship, til2, spug * 2, 90); moveCompBullet(ship, til, spug * 2, 90); moveCompBullet(ship, maz2, spug * 2, 90); moveCompBullet(ship, maz, spug * 2, 90); spung = speed * 2; if (dead == false) { spug = (spung / 2) * -2; } mo._x = _xmouse; mo._y = _ymouse; sped = dist2(ship, mo); speed = sped / 5000; flame._xscale = (speed * 5) * 2; flame._alpha = speed * 5; if (dead == false) { flame._rotation = faceObj(ship, mo, 0); ship._rotation = faceObj(ship, mo, 0); } } };
Frame 206
function r2d(r) { return((r * 180) / Math.PI); } function adjustPos(o) { if (o._y < 0) { o._y = Stage.height; } else if (o._y > Stage.height) { o._y = 0; } if (o._x < 0) { o._x = Stage.width; } else if (o._x > Stage.width) { o._x = 0; } } function adjustPos2(o) { if (o._y < 0) { o._y = getRandom(400, 450); } else if (o._y > Stage.height) { o._y = getRandom(0, -50); } if (o._x < 0) { o._x = getRandom(513, 550); } else if (o._x > Stage.width) { o._x = getRandom(0, -50); } } function d2r(d) { return((d * Math.PI) / 180); } function getRandom(minimum, maximum) { return(Math.floor((Math.random() * ((maximum - minimum) + 1)) + minimum)); } function dist2(obj1, obj2) { return(Math.pow(obj1._x - obj2._x, 2) + Math.pow(obj1._y - obj2._y, 2)); } function moveBullet(object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(object._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(object._rotation + no))); } function moveCompBullet(com, object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(com._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(com._rotation + no))); } function dist(obj1, obj2) { return(Math.sqrt(dist2(obj1, obj2))); } function faceObj(o, o2, no) { return(r2d(Math.atan2(o._y - o2._y, o._x - o2._x)) + no); } stop(); titles = false; mo = new Object(); speed = 0; id = 1; id2 = 1; this.onMouseDown = function () { if (dead == false) { attachMovie("laser", "laser" + id2, id2); this["laser" + id2]._xscale = 10; this["laser" + id2]._yscale = this["laser" + id2]._xscale; this["laser" + id2]._x = ship._x; this["laser" + id2]._y = ship._y; this["laser" + id2]._visible = false; this["laser" + id2]._alpha = 50; this["laser" + id2].ex = false; this["laser" + id2].ex2 = false; this["laser" + id2].act = false; this["laser" + id2]._rotation = ship._rotation + 90; this["laser" + id2].onEnterFrame = function () { if (this.ex2 == false) { moveCompBullet(ship, this, spug * 2, 90); } if (maz2.hitTest(this._x, this._y, true) && (this.ex == false)) { this.nextFrame(); this.ex = true; } if (dist(this, ship) > 25) { this.act = true; this._visible = true; } else if (this.act == false) { this._visible = false; } if (this.ex == false) { moveBullet(this, 50, 0); } }; id2++; } }; init = function () { i = 1; while (i < 200) { attachMovie("line", "line" + i, i); this["line" + i]._x = getRandom(0, 513); this["line" + i]._y = getRandom(0, 400); this["line" + i]._xscale = 50; this["line" + i]._alpha = 10; i++; } }; init(); grun = false; dead = false; dead2 = false; o = 1; while (o < 10) { this["miss" + o].dead = false; this["miss" + o].launched = false; this["miss" + o]._visible = false; this["miss" + o].onEnterFrame = function () { if (ship._y < this._y) { if (this.dead == false) { this._visible = true; } this.launched = true; } moveCompBullet(ship, this, spug * 2, 90); if (this.launched == true) { missileCheck(this); } }; o++; } missileCheck = function (mis) { z = 0; while (z < id2) { if (mis.hitTest(this["laser" + z]._x, this["laser" + z]._y) && (mis.dead == false)) { mis.play(); mis.dead = true; this["laser" + z].removeMovieClip(); } z++; } f = 1; while (f < 10) { if ((((dist(mis, this["miss" + f]) < 5) && (dist(mis, this["miss" + f]) > 0)) && (mis.dead == false)) && (this["miss" + f].dead == false)) { this["miss" + f].dead = true; this["miss" + f].play(); mis.play(); mis.dead = true; } f++; } if (mis.dead == false) { if (dead == false) { mis._rotation = faceObj(mis, ship, -360); } moveBullet(mis, 30, 90); } if ((mis.hitTest(ship._x, ship._y, true) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if ((((dist(miss, ship) < 10) && (mis.dead == false)) && (dead == false)) && (miss._visible == true)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (maz2.hitTest(mis._x, mis._y, true) && (mis.dead == false)) { mis.play(); mis.dead = true; } }; lvl1 = false; lvl2 = true; nextLevel = false; nextB = false; this.onEnterFrame = function () { if (dead == true) { if (ship._currentframe > 45) { gotoAndPlay (70); } } if (lvl2 == true) { if ((dist(ship, endo) / 100) < 5) { play(); } dir.dit.text = Math.floor(dist(ship, endo) / 100); dir.finds._rotation = faceObj(ship, endo, -90); checks.sc._alpha = 50; checks.sc2._alpha = 50; flame2._visible = flame._visible; ship2._rotation = ship._rotation; ship2.gotoAndStop(ship._currentframe); ship2.turn.gotoAndStop(ship.turn._currentframe); flame2.gotoAndStop(flame._currentframe); flame2._rotation = flame._rotation; flame2._xscale = flame._xscale / 2; if (maz2.hitTest(ship._x, ship._y, true) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; } diff = _xmouse - ship._x; if (((grun == false) && (diff > 0)) && (ship.turn._currentframe == 1)) { grun = true; ship.turn.play(); flame.play(); } if (((grun == true) && (diff < 0)) && (ship.turn._currentframe == 3)) { flame.play(); ship.turn.play(); } if (((grun == true) && (diff > 0)) && (ship.turn._currentframe == 1)) { flame.play(); ship.turn.play(); } adjustPos(ship); maz._x = maz2._x; maz._y = maz2._y; f = 1; while (f < 200) { moveBullet(this["line" + f], spug * 2, 90); if (dead == false) { this["line" + f]._xscale = speed * 10; this["line" + f]._rotation = faceObj(ship, mo, 0); } adjustPos2(this["line" + f]); f++; } moveCompBullet(ship, endo, spug * 2, 90); moveCompBullet(ship, starts, spug * 2, 90); moveCompBullet(ship, til2, spug * 2, 90); moveCompBullet(ship, til, spug * 2, 90); moveCompBullet(ship, maz2, spug * 2, 90); moveCompBullet(ship, maz, spug * 2, 90); spung = speed * 2; if (dead == false) { spug = (spung / 2) * -2; } mo._x = _xmouse; mo._y = _ymouse; sped = dist2(ship, mo); speed = sped / 5000; flame._xscale = (speed * 5) * 2; flame._alpha = speed * 5; if (dead == false) { flame._rotation = faceObj(ship, mo, 0); ship._rotation = faceObj(ship, mo, 0); } } };
Frame 207
stop(); this.onMouseDown = function () { if (titles == true) { play(); } }; titles = true;
Frame 208
function r2d(r) { return((r * 180) / Math.PI); } function adjustPos(o) { if (o._y < 0) { o._y = Stage.height; } else if (o._y > Stage.height) { o._y = 0; } if (o._x < 0) { o._x = Stage.width; } else if (o._x > Stage.width) { o._x = 0; } } function adjustPos2(o) { if (o._y < 0) { o._y = getRandom(400, 450); } else if (o._y > Stage.height) { o._y = getRandom(0, -50); } if (o._x < 0) { o._x = getRandom(513, 550); } else if (o._x > Stage.width) { o._x = getRandom(0, -50); } } function d2r(d) { return((d * Math.PI) / 180); } function getRandom(minimum, maximum) { return(Math.floor((Math.random() * ((maximum - minimum) + 1)) + minimum)); } function dist2(obj1, obj2) { return(Math.pow(obj1._x - obj2._x, 2) + Math.pow(obj1._y - obj2._y, 2)); } function moveBullet(object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(object._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(object._rotation + no))); } function moveCompBullet(com, object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(com._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(com._rotation + no))); } function dist(obj1, obj2) { return(Math.sqrt(dist2(obj1, obj2))); } function faceObj(o, o2, no) { return(r2d(Math.atan2(o._y - o2._y, o._x - o2._x)) + no); } stop(); titles = false; mo = new Object(); speed = 0; id = 1; id2 = 1; this.onMouseDown = function () { if (dead == false) { attachMovie("laser", "laser" + id2, id2); this["laser" + id2]._xscale = 10; this["laser" + id2]._yscale = this["laser" + id2]._xscale; this["laser" + id2]._x = ship._x; this["laser" + id2]._y = ship._y; this["laser" + id2]._visible = false; this["laser" + id2]._alpha = 50; this["laser" + id2].ex = false; this["laser" + id2].ex2 = false; this["laser" + id2].act = false; this["laser" + id2]._rotation = ship._rotation + 90; this["laser" + id2].onEnterFrame = function () { if (this.ex2 == false) { moveCompBullet(ship, this, spug * 2, 90); } if (maz2.hitTest(this._x, this._y, true) && (this.ex == false)) { this.nextFrame(); this.ex = true; } if (dist(this, ship) > 25) { this.act = true; this._visible = true; } else if (this.act == false) { this._visible = false; } if (this.ex == false) { moveBullet(this, 50, 0); } }; id2++; } }; init = function () { i = 1; while (i < 200) { attachMovie("line", "line" + i, i); this["line" + i]._x = getRandom(0, 513); this["line" + i]._y = getRandom(0, 400); this["line" + i]._xscale = 50; this["line" + i]._alpha = 10; i++; } }; init(); grun = false; dead = false; dead2 = false; o = 1; while (o < 10) { this["miss" + o].dead = false; this["miss" + o].launched = false; this["miss" + o]._visible = false; this["miss" + o].onEnterFrame = function () { if (ship._y < this._y) { if (this.dead == false) { this._visible = true; } this.launched = true; } moveCompBullet(ship, this, spug * 2, 90); if (this.launched == true) { missileCheck(this); } }; o++; } missileCheck = function (mis) { z = 0; while (z < id2) { if (mis.hitTest(this["laser" + z]._x, this["laser" + z]._y) && (mis.dead == false)) { mis.play(); mis.dead = true; this["laser" + z].removeMovieClip(); } z++; } f = 1; while (f < 10) { if ((((dist(mis, this["miss" + f]) < 5) && (dist(mis, this["miss" + f]) > 0)) && (mis.dead == false)) && (this["miss" + f].dead == false)) { this["miss" + f].dead = true; this["miss" + f].play(); mis.play(); mis.dead = true; } f++; } if (mis.dead == false) { if (dead == false) { mis._rotation = faceObj(mis, ship, -360); } moveBullet(mis, 30, 90); } if ((mis.hitTest(ship._x, ship._y, true) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (((dist(miss, ship) < 10) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (maz2.hitTest(mis._x, mis._y, true) && (mis.dead == false)) { mis.play(); mis.dead = true; } }; nextLevel = false; nextB = false; trap.onEnterFrame = function () { g = 0; while (g < id2) { if (dist(this, _root["laser" + g]) < 200) { this._alpha = this._alpha - 50; _root["laser" + g].removeMovieClip(); } g++; } if (this._alpha < 5) { this._visible = false; } if (((dist(ship, this) < 50) && (dead == false)) && (this._visible == true)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; } }; id3 = 1000; aut = function () { attachMovie("missile", "missile" + id3, id3); _root["missile" + id3]._y = auto._y; _root["missile" + id3]._x = auto._x - 20; _root["missile" + id3].launched = true; _root["missile" + id3].dead = false; _root["missile" + id3].onEnterFrame = function () { if (this.dead == true) { this._visible = false; } moveCompBullet(ship, this, spug * 2, 90); missileCheck(this); }; id3 = id3 + 1; }; lvl1 = false; lvl2 = false; lvl3 = true; this.onEnterFrame = function () { if (dead == true) { if (ship._currentframe > 45) { gotoAndPlay (70); } } if (lvl3 == true) { if (((dist(ship, endo) / 100) < 2) && (dead == false)) { play(); } dir.dit.text = Math.floor(dist(ship, endo) / 100); dir.finds._rotation = faceObj(ship, endo, -90); checks.sc._alpha = 50; checks.sc2._alpha = 50; flame2._visible = flame._visible; ship2._rotation = ship._rotation; ship2.gotoAndStop(ship._currentframe); ship2.turn.gotoAndStop(ship.turn._currentframe); flame2.gotoAndStop(flame._currentframe); flame2._rotation = flame._rotation; flame2._xscale = flame._xscale / 2; if (maz2.hitTest(ship._x, ship._y, true) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; } diff = _xmouse - ship._x; if (((grun == false) && (diff > 0)) && (ship.turn._currentframe == 1)) { grun = true; ship.turn.play(); flame.play(); } if (((grun == true) && (diff < 0)) && (ship.turn._currentframe == 3)) { flame.play(); ship.turn.play(); } if (((grun == true) && (diff > 0)) && (ship.turn._currentframe == 1)) { flame.play(); ship.turn.play(); } adjustPos(ship); maz._x = maz2._x; maz._y = maz2._y; f = 1; while (f < 200) { moveBullet(this["line" + f], spug * 2, 90); if (dead == false) { this["line" + f]._xscale = speed * 10; this["line" + f]._rotation = faceObj(ship, mo, 0); } adjustPos2(this["line" + f]); f++; } moveCompBullet(ship, auto, spug * 2, 90); moveCompBullet(ship, trap, spug * 2, 90); moveCompBullet(ship, endo, spug * 2, 90); moveCompBullet(ship, ex, spug * 2, 90); moveCompBullet(ship, starts, spug * 2, 90); moveCompBullet(ship, til2, spug * 2, 90); moveCompBullet(ship, til, spug * 2, 90); moveCompBullet(ship, maz2, spug * 2, 90); moveCompBullet(ship, maz, spug * 2, 90); spung = speed * 2; if (dead == false) { spug = (spung / 2) * -2; } mo._x = _xmouse; mo._y = _ymouse; sped = dist2(ship, mo); speed = sped / 5000; flame._xscale = (speed * 5) * 2; flame._alpha = speed * 5; if (dead == false) { flame._rotation = faceObj(ship, mo, 0); ship._rotation = faceObj(ship, mo, 0); } maz._x = maz2._x; maz._y = maz2._y; } };
Frame 209
function r2d(r) { return((r * 180) / Math.PI); } function adjustPos(o) { if (o._y < 0) { o._y = Stage.height; } else if (o._y > Stage.height) { o._y = 0; } if (o._x < 0) { o._x = Stage.width; } else if (o._x > Stage.width) { o._x = 0; } } function adjustPos2(o) { if (o._y < 0) { o._y = getRandom(400, 450); } else if (o._y > Stage.height) { o._y = getRandom(0, -50); } if (o._x < 0) { o._x = getRandom(513, 550); } else if (o._x > Stage.width) { o._x = getRandom(0, -50); } } function d2r(d) { return((d * Math.PI) / 180); } function getRandom(minimum, maximum) { return(Math.floor((Math.random() * ((maximum - minimum) + 1)) + minimum)); } function dist2(obj1, obj2) { return(Math.pow(obj1._x - obj2._x, 2) + Math.pow(obj1._y - obj2._y, 2)); } function moveBullet(object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(object._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(object._rotation + no))); } function moveCompBullet(com, object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(com._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(com._rotation + no))); } function dist(obj1, obj2) { return(Math.sqrt(dist2(obj1, obj2))); } function faceObj(o, o2, no) { return(r2d(Math.atan2(o._y - o2._y, o._x - o2._x)) + no); } stop(); titles = false; mo = new Object(); speed = 0; id = 1; id2 = 1; this.onMouseDown = function () { if (dead == false) { attachMovie("laser", "laser" + id2, id2); this["laser" + id2]._xscale = 10; this["laser" + id2]._yscale = this["laser" + id2]._xscale; this["laser" + id2]._x = ship._x; this["laser" + id2]._y = ship._y; this["laser" + id2]._visible = false; this["laser" + id2]._alpha = 50; this["laser" + id2].ex = false; this["laser" + id2].ex2 = false; this["laser" + id2].act = false; this["laser" + id2]._rotation = ship._rotation + 90; this["laser" + id2].onEnterFrame = function () { if (this.ex2 == false) { moveCompBullet(ship, this, spug * 2, 90); } if (maz2.hitTest(this._x, this._y, true) && (this.ex == false)) { this.nextFrame(); this.ex = true; } if (dist(this, ship) > 25) { this.act = true; this._visible = true; } else if (this.act == false) { this._visible = false; } if (this.ex == false) { moveBullet(this, 50, 0); } }; id2++; } }; init = function () { i = 1; while (i < 200) { attachMovie("line", "line" + i, i); this["line" + i]._x = getRandom(0, 513); this["line" + i]._y = getRandom(0, 400); this["line" + i]._xscale = 50; this["line" + i]._alpha = 10; i++; } }; init(); grun = false; dead = false; dead2 = false; o = 1; while (o < 10) { this["miss" + o].dead = false; this["miss" + o].launched = false; this["miss" + o]._visible = false; this["miss" + o].onEnterFrame = function () { if (ship._y < this._y) { if (this.dead == false) { this._visible = true; } this.launched = true; } moveCompBullet(ship, this, spug * 2, 90); if (this.launched == true) { missileCheck(this); } }; o++; } missileCheck = function (mis) { z = 0; while (z < id2) { if (mis.hitTest(this["laser" + z]._x, this["laser" + z]._y) && (mis.dead == false)) { mis.play(); mis.dead = true; this["laser" + z].removeMovieClip(); } z++; } f = 1; while (f < 10) { if ((((dist(mis, this["miss" + f]) < 5) && (dist(mis, this["miss" + f]) > 0)) && (mis.dead == false)) && (this["miss" + f].dead == false)) { this["miss" + f].dead = true; this["miss" + f].play(); mis.play(); mis.dead = true; } f++; } if (mis.dead == false) { if (dead == false) { mis._rotation = faceObj(mis, ship, -360); } moveBullet(mis, 30, 90); } if ((mis.hitTest(ship._x, ship._y, true) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (((dist(miss, ship) < 10) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (maz2.hitTest(mis._x, mis._y, true) && (mis.dead == false)) { mis.play(); mis.dead = true; } }; nextLevel = false; nextB = false; trap.onEnterFrame = function () { g = 0; while (g < id2) { if (dist(this, _root["laser" + g]) < 200) { this._alpha = this._alpha - 50; _root["laser" + g].removeMovieClip(); } g++; } if (this._alpha < 5) { this._visible = false; } if (((dist(ship, this) < 50) && (dead == false)) && (this._visible == true)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; } }; id3 = 1000; aut = function () { attachMovie("missile", "missile" + id3, id3); _root["missile" + id3]._y = auto._y; _root["missile" + id3]._x = auto._x - 20; _root["missile" + id3].launched = true; _root["missile" + id3].dead = false; _root["missile" + id3].onEnterFrame = function () { if (this.dead == true) { this._visible = false; } moveCompBullet(ship, this, spug * 2, 90); missileCheck(this); }; id3 = id3 + 1; }; lvl1 = false; lvl2 = false; lvl3 = false; lvl4 = true; this.onEnterFrame = function () { if (dead == true) { if (ship._currentframe > 45) { gotoAndPlay (70); } } if (lvl4 == true) { if (((dist(ship, endo) / 100) < 2) && (dead == false)) { play(); } dir.dit.text = Math.floor(dist(ship, endo) / 100); dir.finds._rotation = faceObj(ship, endo, -90); checks.sc._alpha = 50; checks.sc2._alpha = 50; flame2._visible = flame._visible; ship2._rotation = ship._rotation; ship2.gotoAndStop(ship._currentframe); ship2.turn.gotoAndStop(ship.turn._currentframe); flame2.gotoAndStop(flame._currentframe); flame2._rotation = flame._rotation; flame2._xscale = flame._xscale / 2; if (maz2.hitTest(ship._x, ship._y, true) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; } diff = _xmouse - ship._x; if (((grun == false) && (diff > 0)) && (ship.turn._currentframe == 1)) { grun = true; ship.turn.play(); flame.play(); } if (((grun == true) && (diff < 0)) && (ship.turn._currentframe == 3)) { flame.play(); ship.turn.play(); } if (((grun == true) && (diff > 0)) && (ship.turn._currentframe == 1)) { flame.play(); ship.turn.play(); } adjustPos(ship); maz._x = maz2._x; maz._y = maz2._y; f = 1; while (f < 200) { moveBullet(this["line" + f], spug * 2, 90); if (dead == false) { this["line" + f]._xscale = speed * 10; this["line" + f]._rotation = faceObj(ship, mo, 0); } adjustPos2(this["line" + f]); f++; } moveCompBullet(ship, auto, spug * 2, 90); moveCompBullet(ship, trap, spug * 2, 90); moveCompBullet(ship, endo, spug * 2, 90); moveCompBullet(ship, ex, spug * 2, 90); moveCompBullet(ship, starts, spug * 2, 90); moveCompBullet(ship, til2, spug * 2, 90); moveCompBullet(ship, til, spug * 2, 90); moveCompBullet(ship, maz2, spug * 2, 90); moveCompBullet(ship, maz, spug * 2, 90); spung = speed * 2; if (dead == false) { spug = (spung / 2) * -2; } mo._x = _xmouse; mo._y = _ymouse; sped = dist2(ship, mo); speed = sped / 5000; flame._xscale = (speed * 5) * 2; flame._alpha = speed * 5; if (dead == false) { flame._rotation = faceObj(ship, mo, 0); ship._rotation = faceObj(ship, mo, 0); } maz._x = maz2._x; maz._y = maz2._y; } };
Frame 210
this.onMouseDown = function () { if (titles == true) { play(); } }; titles = true; stop();
Frame 211
function r2d(r) { return((r * 180) / Math.PI); } function adjustPos(o) { if (o._y < 0) { o._y = Stage.height; } else if (o._y > Stage.height) { o._y = 0; } if (o._x < 0) { o._x = Stage.width; } else if (o._x > Stage.width) { o._x = 0; } } function adjustPos2(o) { if (o._y < 0) { o._y = getRandom(400, 450); } else if (o._y > Stage.height) { o._y = getRandom(0, -50); } if (o._x < 0) { o._x = getRandom(513, 550); } else if (o._x > Stage.width) { o._x = getRandom(0, -50); } } function d2r(d) { return((d * Math.PI) / 180); } function getRandom(minimum, maximum) { return(Math.floor((Math.random() * ((maximum - minimum) + 1)) + minimum)); } function dist2(obj1, obj2) { return(Math.pow(obj1._x - obj2._x, 2) + Math.pow(obj1._y - obj2._y, 2)); } function moveBullet(object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(object._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(object._rotation + no))); } function moveCompBullet(com, object, speed, no) { object._x = object._x - (speed * Math.sin(d2r(com._rotation + no))); object._y = object._y + (speed * Math.cos(d2r(com._rotation + no))); } function dist(obj1, obj2) { return(Math.sqrt(dist2(obj1, obj2))); } function faceObj(o, o2, no) { return(r2d(Math.atan2(o._y - o2._y, o._x - o2._x)) + no); } stop(); mo = new Object(); speed = 0; id = 1; id2 = 1; this.onMouseDown = function () { if (dead == false) { attachMovie("laser", "laser" + id2, id2); this["laser" + id2]._xscale = 10; this["laser" + id2]._yscale = this["laser" + id2]._xscale; this["laser" + id2]._x = ship._x; this["laser" + id2]._y = ship._y; this["laser" + id2]._visible = false; this["laser" + id2]._alpha = 50; this["laser" + id2].ex = false; this["laser" + id2].ex2 = false; this["laser" + id2].act = false; this["laser" + id2]._rotation = ship._rotation + 90; this["laser" + id2].onEnterFrame = function () { if (this.ex2 == false) { moveCompBullet(ship, this, spug * 2, 90); } if (maz2.hitTest(this._x, this._y, true) && (this.ex == false)) { this.nextFrame(); this.ex = true; } if (dist(this, ship) > 25) { this.act = true; this._visible = true; } else if (this.act == false) { this._visible = false; } if (this.ex == false) { moveBullet(this, 50, 0); } }; id2++; } }; init = function () { i = 1; while (i < 200) { attachMovie("line", "line" + i, i); this["line" + i]._x = getRandom(0, 513); this["line" + i]._y = getRandom(0, 400); this["line" + i]._xscale = 50; this["line" + i]._alpha = 10; i++; } }; init(); grun = false; dead = false; dead2 = false; o = 1; while (o < 20) { this["miss" + o].dead = false; this["miss" + o].launched = false; this["miss" + o]._visible = false; this["miss" + o].onEnterFrame = function () { if (ship._y < this._y) { if (this.dead == false) { this._visible = true; } this.launched = true; } moveCompBullet(ship, this, spug * 2, 90); if (this.launched == true) { missileCheck(this); } }; o++; } f = 1; while (f < 10) { this["enemy" + f].dead = false; this["enemy" + f].launched = false; this["enemy" + f]._visible = false; this["enemy" + f]._alpha = 0; this["enemy" + f].onEnterFrame = function () { moveCompBullet(ship, this, spug * 2, 90); if (ship._x > this._x) { this.launched = true; this._visible = true; } if (this.launched == true) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } missileCheck2(this); } }; f++; } counter = 20; shoot = function (en) { if (counter > 0) { counter = counter - 1; } else { attachMovie("missile", "missile" + id3, id3); _root["missile" + id3]._y = en._y; _root["missile" + id3]._x = en._x; _root["missile" + id3]._visible = true; _root["missile" + id3].launched = true; _root["missile" + id3].dead = false; _root["missile" + id3].onEnterFrame = function () { moveCompBullet(ship, this, spug * 2, 90); missileCheck(this); }; counter = 20; id3 = id3 + 1; } }; aut = function () { attachMovie("missile", "missile" + id3, id3); _root["missile" + id3]._y = auto._y; _root["missile" + id3]._x = auto._x - 20; _root["missile" + id3].launched = true; _root["missile" + id3].dead = false; _root["missile" + id3].onEnterFrame = function () { moveCompBullet(ship, this, spug * 2, 90); missileCheck(this); }; id3 = id3 + 1; }; missileCheck2 = function (mis) { mis.diff = ship._x - mis._x; if ((mis.diff < 0) && (mis.turn._currentframe == 3)) { mis.turn.play(); } if ((mis.diff > 0) && (mis.turn._currentframe == 1)) { mis.turn.play(); } z = 0; while (z < id2) { if (mis.hitTest(this["laser" + z]._x, this["laser" + z]._y) && (mis.dead == false)) { mis.play(); mis.dead = true; this["laser" + z].removeMovieClip(); } if (dist(this["laser" + z], mis) < 50) { mis.play(); mis.dead = true; this["laser" + z].removeMovieClip(); } z++; } f = 1; while (f < 10) { if ((((dist(mis, this["miss" + f]) < 5) && (dist(mis, this["miss" + f]) > 0)) && (mis.dead == false)) && (this["miss" + f].dead == false)) { this["miss" + f].dead = true; this["miss" + f].play(); mis.play(); mis.dead = true; } f++; } if (mis.dead == false) { if (dead == false) { mis._rotation = faceObj(mis, ship, -360); } trace(dist(mis, ship)); if (dist(mis, ship) > 130) { moveBullet(mis, 30, 90); } else { shoot(mis); } } if (maz2.hitTest(mis._x, mis._y, true) && (mis.dead == false)) { mis.play(); mis.dead = true; } }; ib = false; checks1 = 0; checks2 = 0; missileCheck = function (mis) { if (((checks1 > 0) && (checks2 > 0)) || ((checks1 < 0) && (checks2 < 0))) { mis.act = true; } else { mis.act = false; } ib = !ib; if ((ib = true)) { checks1 = mis._rotation; } if ((ib = false)) { checks2 = mis._rotation; } if (mis.act == true) { if (((checks1 - checks2) > 20) || ((checks1 - checks2) < -20)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } } z = 0; while (z < id2) { if (mis.hitTest(this["laser" + z]._x, this["laser" + z]._y) && (mis.dead == false)) { mis.play(); mis.dead = true; this["laser" + z].removeMovieClip(); } z++; } f = 1; while (f < 10) { if ((((dist(mis, this["miss" + f]) < 5) && (dist(mis, this["miss" + f]) > 0)) && (mis.dead == false)) && (this["miss" + f].dead == false)) { this["miss" + f].dead = true; this["miss" + f].play(); mis.play(); mis.dead = true; } f++; } if (mis.dead == false) { if (dead == false) { mis._rotation = faceObj(mis, ship, -360); } moveBullet(mis, 30, 90); } if ((mis.hitTest(ship._x, ship._y, true) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if ((ship.hitTest(mis._x, mis._y, true) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (((dist(mis, ship) < 10) && (mis.dead == false)) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; mis._visible = false; mis.dead = true; } if (maz2.hitTest(mis._x, mis._y, true) && (mis.dead == false)) { mis.play(); mis.dead = true; } }; nextLevel = false; nextB = false; trap.onEnterFrame = function () { g = 0; while (g < id2) { if (dist(this, _root["laser" + g]) < 200) { this._alpha = this._alpha - 50; _root["laser" + g].removeMovieClip(); } g++; } if (this._alpha < 5) { this._visible = false; } if (((dist(ship, this) < 50) && (dead == false)) && (this._visible == true)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; } }; id3 = 1000; lvl1 = false; lvl2 = false; lvl3 = false; lvl4 = false; lvl5 = true; titles = false; this.onEnterFrame = function () { if (dead == true) { if (ship._currentframe > 45) { gotoAndPlay (70); } } if (lvl5 == true) { if (((dist(ship, endo) / 100) < 2) && (dead == false)) { play(); } dir.dit.text = Math.floor(dist(ship, endo) / 100); dir.finds._rotation = faceObj(ship, endo, -90); checks.sc._alpha = 50; checks.sc2._alpha = 50; flame2._visible = flame._visible; ship2._rotation = ship._rotation; ship2.gotoAndStop(ship._currentframe); ship2.turn.gotoAndStop(ship.turn._currentframe); flame2.gotoAndStop(flame._currentframe); flame2._rotation = flame._rotation; flame2._xscale = flame._xscale / 2; if (maz2.hitTest(ship._x, ship._y, true) && (dead == false)) { spug = 0; dead = true; ship.gotoAndPlay(8); flame._visible = false; } diff = _xmouse - ship._x; if (((grun == false) && (diff > 0)) && (ship.turn._currentframe == 1)) { grun = true; ship.turn.play(); flame.play(); } if (((grun == true) && (diff < 0)) && (ship.turn._currentframe == 3)) { flame.play(); ship.turn.play(); } if (((grun == true) && (diff > 0)) && (ship.turn._currentframe == 1)) { flame.play(); ship.turn.play(); } adjustPos(ship); maz._x = maz2._x; maz._y = maz2._y; f = 1; while (f < 200) { moveBullet(this["line" + f], spug * 2, 90); if (dead == false) { this["line" + f]._xscale = speed * 10; this["line" + f]._rotation = faceObj(ship, mo, 0); } adjustPos2(this["line" + f]); f++; } moveCompBullet(ship, auto, spug * 2, 90); moveCompBullet(ship, trap, spug * 2, 90); moveCompBullet(ship, endo, spug * 2, 90); moveCompBullet(ship, ex, spug * 2, 90); moveCompBullet(ship, starts, spug * 2, 90); moveCompBullet(ship, til2, spug * 2, 90); moveCompBullet(ship, til, spug * 2, 90); moveCompBullet(ship, maz2, spug * 2, 90); moveCompBullet(ship, maz, spug * 2, 90); spung = speed * 2; if (dead == false) { spug = (spung / 2) * -2; } mo._x = _xmouse; mo._y = _ymouse; sped = dist2(ship, mo); speed = sped / 5000; flame._xscale = (speed * 5) * 2; flame._alpha = speed * 5; if (dead == false) { flame._rotation = faceObj(ship, mo, 0); ship._rotation = faceObj(ship, mo, 0); } maz._x = maz2._x; maz._y = maz2._y; } };
Symbol 6 MovieClip [laser] Frame 1
stop();
Symbol 6 MovieClip [laser] Frame 2
stop();
Symbol 14 MovieClip Frame 1
stop();
Symbol 14 MovieClip Frame 41
this._visible = false;
Symbol 79 MovieClip Frame 1
stop();
Symbol 79 MovieClip Frame 3
stop();
Symbol 80 MovieClip [suicider] Frame 1
stop();
Symbol 80 MovieClip [suicider] Frame 46
stop(); this.removeMovieClip(); this._visible = false;
Symbol 140 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 5
stop();
Symbol 142 MovieClip Frame 1
stop();
Symbol 142 MovieClip Frame 59
stop(); if (_root.dead == true) { _root.gameOver = true; }
Symbol 142 MovieClip Frame 106
stop(); if (_root.dead == true) { _root.gameOver = true; }
Symbol 147 MovieClip Frame 1
stop();
Symbol 186 MovieClip Frame 1
stop();
Symbol 186 MovieClip Frame 3
stop();
Symbol 199 MovieClip Frame 6
stop();
Symbol 200 MovieClip Frame 4
stop();

Library Items

Symbol 1 Graphic [laserd]Used by:2 80
Symbol 2 MovieClip [laserd]Uses:1
Symbol 3 GraphicUsed by:6
Symbol 4 GraphicUsed by:6
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClip [laser]Uses:3 4 5
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClip [line]Uses:7
Symbol 9 GraphicUsed by:14
Symbol 10 GraphicUsed by:14
Symbol 11 GraphicUsed by:14
Symbol 12 GraphicUsed by:14 80 142  Timeline
Symbol 13 GraphicUsed by:14 80 142  Timeline
Symbol 14 MovieClipUses:9 10 11 12 13Used by:15  Timeline
Symbol 15 MovieClip [missile]Uses:14
Symbol 16 GraphicUsed by:66
Symbol 17 GraphicUsed by:66
Symbol 18 GraphicUsed by:66
Symbol 19 GraphicUsed by:66
Symbol 20 GraphicUsed by:66
Symbol 21 GraphicUsed by:66
Symbol 22 GraphicUsed by:66
Symbol 23 GraphicUsed by:66
Symbol 24 GraphicUsed by:66
Symbol 25 GraphicUsed by:66
Symbol 26 GraphicUsed by:66
Symbol 27 GraphicUsed by:66
Symbol 28 GraphicUsed by:66
Symbol 29 GraphicUsed by:66
Symbol 30 GraphicUsed by:66
Symbol 31 GraphicUsed by:66
Symbol 32 GraphicUsed by:66
Symbol 33 GraphicUsed by:66
Symbol 34 GraphicUsed by:66
Symbol 35 GraphicUsed by:66
Symbol 36 GraphicUsed by:66
Symbol 37 GraphicUsed by:66
Symbol 38 GraphicUsed by:66
Symbol 39 GraphicUsed by:66
Symbol 40 GraphicUsed by:66
Symbol 41 GraphicUsed by:66
Symbol 42 GraphicUsed by:66
Symbol 43 GraphicUsed by:66
Symbol 44 GraphicUsed by:66
Symbol 45 GraphicUsed by:66
Symbol 46 GraphicUsed by:66
Symbol 47 GraphicUsed by:66
Symbol 48 GraphicUsed by:66
Symbol 49 GraphicUsed by:66
Symbol 50 GraphicUsed by:66
Symbol 51 GraphicUsed by:66
Symbol 52 GraphicUsed by:66
Symbol 53 GraphicUsed by:66
Symbol 54 GraphicUsed by:66
Symbol 55 GraphicUsed by:66
Symbol 56 GraphicUsed by:66
Symbol 57 GraphicUsed by:66
Symbol 58 GraphicUsed by:66
Symbol 59 GraphicUsed by:66
Symbol 60 GraphicUsed by:66
Symbol 61 GraphicUsed by:66
Symbol 62 GraphicUsed by:66
Symbol 63 GraphicUsed by:66
Symbol 64 GraphicUsed by:66
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65Used by:72
Symbol 67 GraphicUsed by:70
Symbol 68 GraphicUsed by:70
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:67 68 69Used by:71
Symbol 71 MovieClipUses:70Used by:72
Symbol 72 MovieClip [checkpoint]Uses:66 71Used by:Timeline
Symbol 73 GraphicUsed by:79
Symbol 74 GraphicUsed by:79
Symbol 75 GraphicUsed by:79
Symbol 76 GraphicUsed by:79
Symbol 77 GraphicUsed by:79
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:73 74 75 76 77 78Used by:80
Symbol 80 MovieClip [suicider]Uses:1 79 12 13Used by:Timeline
Symbol 81 GraphicUsed by:99 152
Symbol 82 ShapeTweeningUsed by:99
Symbol 83 ShapeTweeningUsed by:99 152
Symbol 84 GraphicUsed by:99
Symbol 85 GraphicUsed by:99 152  Timeline
Symbol 86 GraphicUsed by:99 152  Timeline
Symbol 87 GraphicUsed by:99 152  Timeline
Symbol 88 GraphicUsed by:99 152  Timeline
Symbol 89 GraphicUsed by:99 152  Timeline
Symbol 90 GraphicUsed by:99 152  Timeline
Symbol 91 GraphicUsed by:99 152  Timeline
Symbol 92 GraphicUsed by:99 152  Timeline
Symbol 93 GraphicUsed by:99
Symbol 94 GraphicUsed by:99
Symbol 95 GraphicUsed by:99
Symbol 96 GraphicUsed by:99
Symbol 97 ShapeTweeningUsed by:99 152
Symbol 98 ShapeTweeningUsed by:99 152
Symbol 99 MovieClipUses:81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98Used by:Timeline
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:102
Symbol 102 MovieClipUses:101Used by:Timeline
Symbol 103 GraphicUsed by:Timeline
Symbol 104 GraphicUsed by:Timeline
Symbol 105 GraphicUsed by:Timeline
Symbol 106 FontUsed by:107 108 153 160
Symbol 107 TextUses:106Used by:Timeline
Symbol 108 TextUses:106Used by:Timeline
Symbol 109 GraphicUsed by:199  Timeline
Symbol 110 GraphicUsed by:Timeline
Symbol 111 GraphicUsed by:Timeline
Symbol 112 ShapeTweeningUsed by:Timeline
Symbol 113 ShapeTweeningUsed by:Timeline
Symbol 114 ShapeTweeningUsed by:Timeline
Symbol 115 GraphicUsed by:200  Timeline
Symbol 116 GraphicUsed by:199  Timeline
Symbol 117 GraphicUsed by:199  Timeline
Symbol 118 GraphicUsed by:199  Timeline
Symbol 119 GraphicUsed by:199  Timeline
Symbol 120 GraphicUsed by:199  Timeline
Symbol 121 GraphicUsed by:199  Timeline
Symbol 122 GraphicUsed by:Timeline
Symbol 123 GraphicUsed by:Timeline
Symbol 124 GraphicUsed by:126
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:124 125Used by:140 142
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:127Used by:140 142
Symbol 129 GraphicUsed by:140 142
Symbol 130 GraphicUsed by:140
Symbol 131 GraphicUsed by:140
Symbol 132 GraphicUsed by:140
Symbol 133 GraphicUsed by:140
Symbol 134 GraphicUsed by:140
Symbol 135 GraphicUsed by:140
Symbol 136 GraphicUsed by:140
Symbol 137 GraphicUsed by:140
Symbol 138 GraphicUsed by:140
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:126 128 129 130 131 132 133 134 135 136 137 138 139Used by:142
Symbol 141 GraphicUsed by:142
Symbol 142 MovieClipUses:140 12 13 141 128 126 129Used by:Timeline
Symbol 143 GraphicUsed by:Timeline
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144Used by:Timeline
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:Timeline
Symbol 148 GraphicUsed by:Timeline
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:149Used by:Timeline
Symbol 151 GraphicUsed by:Timeline
Symbol 152 MovieClipUses:81 98 83 97 85 86 87 88 89 90 91 92Used by:Timeline
Symbol 153 TextUses:106Used by:Timeline
Symbol 154 GraphicUsed by:Timeline
Symbol 155 GraphicUsed by:Timeline
Symbol 156 GraphicUsed by:Timeline
Symbol 157 GraphicUsed by:Timeline
Symbol 158 GraphicUsed by:Timeline
Symbol 159 GraphicUsed by:Timeline
Symbol 160 TextUses:106Used by:Timeline
Symbol 161 GraphicUsed by:Timeline
Symbol 162 GraphicUsed by:Timeline
Symbol 163 GraphicUsed by:Timeline
Symbol 164 GraphicUsed by:Timeline
Symbol 165 GraphicUsed by:Timeline
Symbol 166 GraphicUsed by:Timeline
Symbol 167 GraphicUsed by:Timeline
Symbol 168 GraphicUsed by:Timeline
Symbol 169 GraphicUsed by:Timeline
Symbol 170 GraphicUsed by:Timeline
Symbol 171 GraphicUsed by:Timeline
Symbol 172 GraphicUsed by:Timeline
Symbol 173 GraphicUsed by:Timeline
Symbol 174 GraphicUsed by:Timeline
Symbol 175 GraphicUsed by:Timeline
Symbol 176 GraphicUsed by:Timeline
Symbol 177 GraphicUsed by:Timeline
Symbol 178 GraphicUsed by:Timeline
Symbol 179 GraphicUsed by:Timeline
Symbol 180 GraphicUsed by:Timeline
Symbol 181 GraphicUsed by:Timeline
Symbol 182 GraphicUsed by:Timeline
Symbol 183 GraphicUsed by:Timeline
Symbol 184 GraphicUsed by:Timeline
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:185Used by:Timeline
Symbol 187 GraphicUsed by:Timeline
Symbol 188 FontUsed by:189 191 193 195 197 205 207 226 228 229 231
Symbol 189 TextUses:188Used by:Timeline
Symbol 190 GraphicUsed by:Timeline
Symbol 191 TextUses:188Used by:Timeline
Symbol 192 GraphicUsed by:194 196 198
Symbol 193 TextUses:188Used by:194
Symbol 194 MovieClipUses:192 193Used by:Timeline
Symbol 195 TextUses:188Used by:196
Symbol 196 MovieClipUses:192 195Used by:Timeline
Symbol 197 TextUses:188Used by:198
Symbol 198 MovieClipUses:192 197Used by:Timeline
Symbol 199 MovieClipUses:109 116 117 118 119 120 121Used by:Timeline
Symbol 200 MovieClipUses:115Used by:Timeline
Symbol 201 FontUsed by:202 204
Symbol 202 TextUses:201Used by:Timeline
Symbol 203 GraphicUsed by:Timeline
Symbol 204 EditableTextUses:201Used by:Timeline
Symbol 205 TextUses:188Used by:Timeline
Symbol 206 GraphicUsed by:Timeline
Symbol 207 TextUses:188Used by:Timeline
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:210 212
Symbol 210 MovieClipUses:209Used by:Timeline
Symbol 211 GraphicUsed by:Timeline
Symbol 212 MovieClipUses:209Used by:Timeline
Symbol 213 GraphicUsed by:214
Symbol 214 MovieClipUses:213Used by:Timeline
Symbol 215 GraphicUsed by:220
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:216Used by:220
Symbol 218 FontUsed by:219
Symbol 219 EditableTextUses:218Used by:220
Symbol 220 MovieClipUses:215 217 219Used by:Timeline
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:221Used by:223 224
Symbol 223 MovieClipUses:222Used by:Timeline
Symbol 224 MovieClipUses:222Used by:Timeline
Symbol 225 FontUsed by:226
Symbol 226 TextUses:188 225Used by:Timeline
Symbol 227 GraphicUsed by:Timeline
Symbol 228 TextUses:188Used by:Timeline
Symbol 229 TextUses:188Used by:Timeline
Symbol 230 GraphicUsed by:Timeline
Symbol 231 TextUses:188Used by:Timeline
Symbol 232 GraphicUsed by:233
Symbol 233 MovieClipUses:232Used by:Timeline

Instance Names

"logd"Frame 1Symbol 99 MovieClip
"perc"Frame 1Symbol 102 MovieClip
"copter"Frame 39Symbol 142 MovieClip
"gas"Frame 39Symbol 145 MovieClip
"clogRight"Frame 39Symbol 147 MovieClip
"clogLeft"Frame 39Symbol 147 MovieClip
"log"Frame 39Symbol 152 MovieClip
"instr"Frame 201Symbol 194 MovieClip
"code"Frame 201Symbol 196 MovieClip
"plays"Frame 201Symbol 198 MovieClip
"link"Frame 201Symbol 199 MovieClip
"instr"Frame 202Symbol 194 MovieClip
"code"Frame 202Symbol 196 MovieClip
"plays"Frame 202Symbol 198 MovieClip
"link"Frame 202Symbol 199 MovieClip
"codes"Frame 203Symbol 204 EditableText
"maz"Frame 205Symbol 210 MovieClip
"maz2"Frame 205Symbol 212 MovieClip
"endo"Frame 205Symbol 214 MovieClip
"miss1"Frame 205Symbol 14 MovieClip
"miss2"Frame 205Symbol 14 MovieClip
"miss3"Frame 205Symbol 14 MovieClip
"miss4"Frame 205Symbol 14 MovieClip
"starts"Frame 205Symbol 214 MovieClip
"flame"Frame 205Symbol 186 MovieClip
"ship"Frame 205Symbol 80 MovieClip [suicider]
"dir"Frame 205Symbol 220 MovieClip
"ship2"Frame 205Symbol 80 MovieClip [suicider]
"flame2"Frame 205Symbol 186 MovieClip
"maz"Frame 206Symbol 223 MovieClip
"maz2"Frame 206Symbol 224 MovieClip
"endo"Frame 206Symbol 214 MovieClip
"miss1"Frame 206Symbol 14 MovieClip
"miss2"Frame 206Symbol 14 MovieClip
"miss3"Frame 206Symbol 14 MovieClip
"miss4"Frame 206Symbol 14 MovieClip
"starts"Frame 206Symbol 214 MovieClip
"miss7"Frame 206Symbol 14 MovieClip
"miss5"Frame 206Symbol 14 MovieClip
"miss6"Frame 206Symbol 14 MovieClip
"miss8"Frame 206Symbol 14 MovieClip
"miss9"Frame 206Symbol 14 MovieClip
"miss10"Frame 206Symbol 14 MovieClip
"miss3"Frame 206Symbol 14 MovieClip
"flame"Frame 206Symbol 186 MovieClip
"ship"Frame 206Symbol 80 MovieClip [suicider]
"dir"Frame 206Symbol 220 MovieClip
"ship2"Frame 206Symbol 80 MovieClip [suicider]
"flame2"Frame 206Symbol 186 MovieClip
"maz"Frame 208Symbol 212 MovieClip
"maz2"Frame 208Symbol 212 MovieClip
"miss1"Frame 208Symbol 14 MovieClip
"miss2"Frame 208Symbol 14 MovieClip
"miss3"Frame 208Symbol 14 MovieClip
"miss5"Frame 208Symbol 14 MovieClip
"miss6"Frame 208Symbol 14 MovieClip
"miss7"Frame 208Symbol 14 MovieClip
"miss8"Frame 208Symbol 14 MovieClip
"miss9"Frame 208Symbol 14 MovieClip
"miss10"Frame 208Symbol 14 MovieClip
"miss11"Frame 208Symbol 14 MovieClip
"miss12"Frame 208Symbol 14 MovieClip
"miss13"Frame 208Symbol 14 MovieClip
"miss14"Frame 208Symbol 14 MovieClip
"miss4"Frame 208Symbol 14 MovieClip
"trap"Frame 208Symbol 72 MovieClip [checkpoint]
"endo"Frame 208Symbol 214 MovieClip
"starts"Frame 208Symbol 214 MovieClip
"flame"Frame 208Symbol 186 MovieClip
"ship"Frame 208Symbol 80 MovieClip [suicider]
"flame2"Frame 208Symbol 186 MovieClip
"dir"Frame 208Symbol 220 MovieClip
"ship2"Frame 208Symbol 80 MovieClip [suicider]
"maz"Frame 209Symbol 224 MovieClip
"maz2"Frame 209Symbol 224 MovieClip
"miss1"Frame 209Symbol 14 MovieClip
"miss2"Frame 209Symbol 14 MovieClip
"miss3"Frame 209Symbol 14 MovieClip
"miss5"Frame 209Symbol 14 MovieClip
"miss6"Frame 209Symbol 14 MovieClip
"miss7"Frame 209Symbol 14 MovieClip
"miss8"Frame 209Symbol 14 MovieClip
"miss9"Frame 209Symbol 14 MovieClip
"miss10"Frame 209Symbol 14 MovieClip
"miss11"Frame 209Symbol 14 MovieClip
"miss12"Frame 209Symbol 14 MovieClip
"miss13"Frame 209Symbol 14 MovieClip
"miss14"Frame 209Symbol 14 MovieClip
"miss4"Frame 209Symbol 14 MovieClip
"trap"Frame 209Symbol 72 MovieClip [checkpoint]
"endo"Frame 209Symbol 214 MovieClip
"starts"Frame 209Symbol 214 MovieClip
"flame"Frame 209Symbol 186 MovieClip
"ship"Frame 209Symbol 80 MovieClip [suicider]
"endo"Frame 209Symbol 214 MovieClip
"flame2"Frame 209Symbol 186 MovieClip
"dir"Frame 209Symbol 220 MovieClip
"ship2"Frame 209Symbol 80 MovieClip [suicider]
"maz"Frame 211Symbol 233 MovieClip
"starts"Frame 211Symbol 214 MovieClip
"maz2"Frame 211Symbol 233 MovieClip
"miss1"Frame 211Symbol 14 MovieClip
"miss2"Frame 211Symbol 14 MovieClip
"miss3"Frame 211Symbol 14 MovieClip
"miss5"Frame 211Symbol 14 MovieClip
"miss6"Frame 211Symbol 14 MovieClip
"miss7"Frame 211Symbol 14 MovieClip
"miss8"Frame 211Symbol 14 MovieClip
"miss9"Frame 211Symbol 14 MovieClip
"miss10"Frame 211Symbol 14 MovieClip
"miss11"Frame 211Symbol 14 MovieClip
"miss12"Frame 211Symbol 14 MovieClip
"miss13"Frame 211Symbol 14 MovieClip
"miss14"Frame 211Symbol 14 MovieClip
"miss4"Frame 211Symbol 14 MovieClip
"trap"Frame 211Symbol 72 MovieClip [checkpoint]
"endo"Frame 211Symbol 214 MovieClip
"enemy2"Frame 211Symbol 80 MovieClip [suicider]
"enemy3"Frame 211Symbol 80 MovieClip [suicider]
"enemy1"Frame 211Symbol 80 MovieClip [suicider]
"endo"Frame 211Symbol 214 MovieClip
"flame"Frame 211Symbol 186 MovieClip
"ship"Frame 211Symbol 80 MovieClip [suicider]
"flame2"Frame 211Symbol 186 MovieClip
"dir"Frame 211Symbol 220 MovieClip
"ship2"Frame 211Symbol 80 MovieClip [suicider]
"light"Symbol 72 MovieClip [checkpoint] Frame 1Symbol 66 MovieClip
"sc2"Symbol 72 MovieClip [checkpoint] Frame 1Symbol 71 MovieClip
"sc"Symbol 72 MovieClip [checkpoint] Frame 1Symbol 71 MovieClip
"turn"Symbol 80 MovieClip [suicider] Frame 1Symbol 79 MovieClip
"turner"Symbol 142 MovieClip Frame 1Symbol 140 MovieClip
"map"Symbol 210 MovieClip Frame 1Symbol 209 MovieClip
"map"Symbol 212 MovieClip Frame 1Symbol 209 MovieClip
"finds"Symbol 220 MovieClip Frame 1Symbol 217 MovieClip
"dit"Symbol 220 MovieClip Frame 1Symbol 219 EditableText
"map"Symbol 223 MovieClip Frame 1Symbol 222 MovieClip
"map"Symbol 224 MovieClip Frame 1Symbol 222 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$wF$LLEt6PCnM3LyEyI/O7yYz1."
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 2 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 6 as "laser"
ExportAssets (56)Timeline Frame 1Symbol 8 as "line"
ExportAssets (56)Timeline Frame 1Symbol 15 as "missile"
ExportAssets (56)Timeline Frame 1Symbol 72 as "checkpoint"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 1 as "laserd"
ExportAssets (56)Timeline Frame 1Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 201Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 202Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 203Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 204Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 205Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 205Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 206Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 206Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 207Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 208Symbol 72 as "checkpoint"
ExportAssets (56)Timeline Frame 208Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 208Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 209Symbol 72 as "checkpoint"
ExportAssets (56)Timeline Frame 209Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 209Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 210Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 211Symbol 72 as "checkpoint"
ExportAssets (56)Timeline Frame 211Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 211Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 211Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 211Symbol 80 as "suicider"
ExportAssets (56)Timeline Frame 211Symbol 80 as "suicider"




http://swfchan.com/10/46405/info.shtml
Created: 3/5 -2019 18:33:59 Last modified: 3/5 -2019 18:33:59 Server time: 15/05 -2024 13:32:25