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

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

DOOMRUNNER.swf

This is the info page for
Flash #30690

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


Text
???

XENOVERSE.NET - Make more games!

XENOVERSE.NET - Make more games!

XENOVERSE.NET - Make more games!

CONTROLS:

MOVEMENT:

WEAPONS:

A

S

Z

X

PAUSE:

ENEMIES:

POWERUPS:

???

LEVEL:

1

SHELIDS:

ENERGY:

MISSILES:

000

- PAUSED -

'ENTER' Returns to Instructions Screen

GAME OVER

Press 'ENTER'

???

ActionScript [AS1/AS2]

Frame 1
level = 1000; hilevel = 1000000 /* 0x0F4240 */; fscommand ("fullscreen", true); stop();
Frame 2
stop(); _root.hud._visible = false; _root.pgame._y = 500;
Frame 3
function register(iname, array) { ina = eval ("_root." + iname); ina.anum = array[array.length]; array[array.length] = ina; } function unregister(anum, array) { _root.testtext.text = anum; i = anum; while (i < array) { ina = eval (array[i]); if (ina == _root.blank) { array.splice(anum, 1); ina.anum--; } i++; } } function stopgame() { i = 0; while (i < _root.gob.length) { ob = eval ("_root." + _root.gob[i]); ob.removeMovieClip(); i++; } } function spawnEnemy(x, y, t, r) { ent = eval ("_root.enemy" + t); duplicateMovieClip (ent, "enemy" + _root.level, _root.level); en = eval ("_root.enemy" + _root.level); en._rotation = r; en._x = x; en._y = y; en.active = true; _root.level++; } function spawnPowerup(x, y, t) { duplicateMovieClip (_root.powerup, "powerup" + _root.level, _root.level); pu = eval ("_root.powerup" + _root.level); pu._x = x; pu._y = y; pu._rotation = random(360); pu.gotoAndStop(t); pu.active = true; _root.level++; } gameover = false; paused = false; score = 0; sco = 0; clevel = 1; _root.hud._visible = true; _root.pgame.active = true; enemies = new Array(_root.blank); gob = new Array(_root.blank); stop();
Instance of Symbol 68 MovieClip "ship" in Frame 3
onClipEvent (load) { function moveForward() { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); speed = 10; rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function rotate(dir) { rot = this._rotation; nrot = rot * (Math.PI/180); if (dir == "left") { this._rotation = this._rotation - 7; } else if (dir == "right") { this._rotation = this._rotation + 7; } } function lightTrail(frame, wid, len) { drawLine(_root.line, frame, currentPos, oldPos, wid, len); } function fire(weapon) { if (weapon == "laser") { if ((ltimer == 0) && (energy > 0)) { if (lasgun == 0) { duplicateMovieClip (_root.laser, "laser" + _root.level, _root.level); las = eval ("_root.laser" + _root.level); las._rotation = _rotation; las._x = las1.x; las._y = las1.y; las.active = true; las.ltype = "n"; las.active = true; las.unregistered = true; slas.start(); lasgun = 1; _root.level++; } else if (lasgun == 1) { duplicateMovieClip (_root.laser, "laser" + _root.level, _root.level); las = eval ("_root.laser" + _root.level); las._rotation = _rotation; las._x = las2.x; las._y = las2.y; las.active = true; las.ltype = "n"; las.active = true; las.unregistered = true; slas.start(); lasgun = 0; _root.level++; } ltimer = 2; energy = energy - 1; } } else if (weapon == "armageddon") { if ((atimer == 0) && (energy > 29)) { i = 0; while (i < 72) { duplicateMovieClip (_root.laser, "laser" + _root.level, _root.level); las = eval ("_root.laser" + _root.level); las._width = 20; las._rotation = i * 5; las._x = this._x; las._y = this._y; las.active = true; las.unregistered = true; las.ltype = "a"; _root.level++; i++; } atimer = 15; energy = energy - 30; ags.start(); } } else if (weapon == "missile") { if ((mtimer == 0) && (missile > 1)) { duplicateMovieClip (_root.missile, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = _rotation; las._x = las1.x; las._y = las1.y; las.active = true; las.ltype = "n"; las.unregistered = true; las.active = true; _root.level++; duplicateMovieClip (_root.missile, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = _rotation; las._x = las2.x; las._y = las2.y; las.active = true; las.ltype = "n"; las.unregistered = true; las.active = true; _root.level++; mtimer = 10; missile = missile - 2; mis.start(); } } else if (weapon == "volley") { if ((vtimer == 0) && (missile > 1)) { if (missile >= 8) { av = 4; } else { av = Math.round(missile / 2); } i = 0; while (i < av) { duplicateMovieClip (_root.missile, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = (_rotation + (i * 20)) + 10; las._x = las1.x; las._y = las1.y; las.active = true; las.ltype = "n"; las.unregistered = true; las.active = true; _root.level++; i++; } i = 0; while (i < av) { duplicateMovieClip (_root.missile, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = (_rotation - (i * 20)) - 10; las._x = las2.x; las._y = las2.y; las.active = true; las.ltype = "n"; las.unregistered = true; las.active = true; _root.level++; i++; } vtimer = 30; missile = missile - (av * 2); mis.start(); } } } function drawLine(iname, frame, p1, p2, width, len) { duplicateMovieClip (iname, "line" + _root.level, _root.level); nline = eval ("_root.line" + _root.level); nline._x = p1[0]; nline._y = p1[1]; xdif = p2[0] - p1[0]; ydif = p2[1] - p1[1]; dist = Math.sqrt((xdif * xdif) + (ydif * ydif)); nline._xscale = dist; nline._alpha = len * 5; if (nline._xscale > 100) { nline._alpha = 0; } nline._height = width; rad = Math.asin(ydif / dist); degcon = 57.2957795130823; nrad = rad * degcon; if (xdif < 0) { nrad = 180 - nrad; } nline._rotation = nrad; nline.gotoAndStop(frame); nline.unregistered = true; nline.active = true; _root.level++; } function detonate() { duplicateMovieClip (_root.edet, "edet" + _root.level, _root.level); det = eval ("_root.edet" + _root.level); det._x = this._x; det._y = this._y; det._alpha = 100; det.active = true; det.gotoAndPlay(1); _root.level++; exp.start(); this.active = false; this._x = 700; _name = "deadship"; _root.gameover = true; } unregistered = true; flame._visible = false; ltimer = 0; mtimer = 0; atimer = 0; vtimer = 0; lasgun = 0; mis = new Sound(); mis.attachSound("_missile"); slas = new Sound(); slas.attachSound("_laser"); ags = new Sound(); ags.attachSound("_armageddon"); nlv = new Sound(); nlv.attachSound("_nextlevel"); active = true; this.getBounds(_root); lvltimer = 0; energy = 100; sheild = 100; missile = 40; _x = 320; _y = 240; currentPos = new Array(this._x, this._y); oldPos = new Array(this._x, this._y); } onClipEvent (enterFrame) { if (active) { if (unregistered) { inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } flame._visible = false; lflame._visible = false; rflame._visible = false; if (Key.isDown(38)) { moveForward(); flame._visible = true; this.currentPos[0] = this._x; this.currentPos[1] = this._y; lightTrail(1, 4, 10); this.oldPos[0] = this._x; this.oldPos[1] = this._y; } if (Key.isDown(37)) { rotate("left"); lflame._visible = true; } if (Key.isDown(39)) { rotate("right"); rflame._visible = true; } if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } if (Key.isDown(65)) { fire("laser"); } if (Key.isDown(83)) { fire("missile"); } if (Key.isDown(90)) { fire("armageddon"); } if (Key.isDown(88)) { fire("volley"); } if (ltimer > 0) { ltimer--; } if (mtimer > 0) { mtimer--; } if (atimer > 0) { atimer--; } if (vtimer > 0) { vtimer--; } if (energy < 100) { energy = energy + 0.1; } if (sheild < 100) { sheild = sheild + 0.1; } if (missile < 40) { missile = missile + 0.005; } if (sheild < 0) { detonate(); } lvltimer++; if (lvltimer > 899) { _root.clevel++; lvltimer = 0; nlv.start(); } } }
Instance of Symbol 70 MovieClip "laser" in Frame 3
onClipEvent (load) { function moveForward() { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); speed = 20; rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function htest() { i = 0; while (i < _root.enemies.length) { t = eval ("_root." + _root.enemies[i]); hit = this.hitTest(t); if (hit) { detonate(t); i = _root.enemies.length; } i++; } } function detonate(target) { duplicateMovieClip (_root.ldet, "ldet" + _root.level, _root.level); det = eval ("_root.ldet" + _root.level); det._rotation = this._rotation; det._x = _x; det._y = _y; det._alpha = 100; det.active = true; ldt.start(); target.hp = target.hp - 1; _root.level++; blank = _root.blank; _root.gob[inum] = blank; this.removeMovieClip(); } ldt = new Sound(); ldt.attachSound("_lasdeath"); inum = 0; _alpha = 100; } onClipEvent (enterFrame) { if (active) { if (unregistered) { inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } moveForward(); htest(); if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } if (ltype == "n") { _alpha = (_alpha - 2); } else if (ltype == "a") { _alpha = (_alpha - 10); } if (_alpha < 0) { blank = _root.blank; _root.gob[inum] = blank; this.removeMovieClip(); } } }
Instance of Symbol 73 MovieClip "line" in Frame 3
onClipEvent (load) { } onClipEvent (enterFrame) { if (active) { _alpha = (_alpha - 5); if (_alpha < 0) { this.removeMovieClip(); } } }
Instance of Symbol 47 MovieClip "enemy1" in Frame 3
onClipEvent (load) { function seekTarget() { ydif = _root.ship._y - _y; xdif = _root.ship._x - _x; dist = Math.sqrt((ydif * ydif) + (xdif * xdif)); degcon = 57.2957795130823; rad = Math.asin(ydif / dist); rot = (rad * degcon) + 90; if (xdif < 0) { rot = 360 - rot; } crot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } if (crot < 0) { xrot = 0 + (360 - Math.abs(crot)); } else { xrot = crot; } brot = 0; zrot = xrot - nrot; if (zrot < 0) { zrot = zrot + 360; } if (zrot <= 180) { rotate("left", Math.abs(zrot - brot)); } else if (zrot > 180) { rotate("right", Math.abs(zrot - brot)); } if (nrot > 180) { rot = -180 + (nrot - 180); } else { rot = nrot; } moveForward(2); } function moveForward(speed) { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); if (speed > 15) { speed = 15; } if (speed < 1) { speed = 1; } rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function rotate(dir, need) { if (need > 4) { need = 5; } if (dir == "left") { this._rotation = this._rotation - need; } else if (dir == "right") { this._rotation = this._rotation + need; } } function fire(weapon) { if (weapon == "laser") { if (ltimer == 0) { duplicateMovieClip (_root.elaser, "elaser" + _root.level, _root.level); las = eval ("_root.elaser" + _root.level); las._x = _x; las._y = _y; las.active = true; las.unregistered = true; las._rotation = _rotation; ltimer = 30; _root.level++; } } else if (weapon == "missile") { if (ltimer == 0) { duplicateMovieClip (_root.emis, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = _rotation; las._x = _x; las._y = _y; las.active = true; las.unregistered = true; _root.level++; ltimer = 60; } } } function detonate() { duplicateMovieClip (_root.edet, "edet" + _root.level, _root.level); det = eval ("_root.edet" + _root.level); det._x = this._x; det._y = this._y; det._alpha = 100; det.active = true; det.gotoAndPlay(1); blank = _root.blank; _root.enemies[anum] = blank; blank = _root.blank; _root.gob[inum] = blank; _root.level++; exp.start(); i = 0; while (i < rp) { ranp = random(3) + 1; _root.spawnPowerup(_x, _y, ranp); i++; } _root.score = _root.score + 100; _root.level++; this.removeMovieClip(); } unregistered = true; hp = 10; this.getBounds(_root); ltimer = 0; ranp = 0; exp = new Sound(); exp.attachSound("_explosion"); rp = 1; anum = 0; inum = 0; } onClipEvent (enterFrame) { if (active) { if (unregistered) { anum = _root.enemies.length; _root.enemies[_root.enemies.length] = this; inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; _root.testtext.text = _root.gob[inum]; } seekTarget(); f = Math.random() * 100; if ((f > 0) && (f < 80)) { fire("laser"); } else if (f > 80) { fire("missile"); } if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } if (ltimer > 0) { ltimer--; } if (hp < 1) { detonate(); } } }
Instance of Symbol 79 MovieClip "ldet" in Frame 3
onClipEvent (load) { active = false; } onClipEvent (enterFrame) { if (active) { play(); } }
Instance of Symbol 87 MovieClip "missile" in Frame 3
onClipEvent (load) { function moveForward(speed) { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); if (speed > 15) { speed = 15; } if (speed < 1) { speed = 1; } rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; this.currentPos[0] = this._x; this.currentPos[1] = this._y; lightTrail(1, 2, 20); this.oldPos[0] = this._x; this.oldPos[1] = this._y; } function htest() { i = 0; while (i < _root.enemies.length) { t = eval ("_root." + _root.enemies[i]); hit = this.hitTest(t); if (hit) { detonate(t); i = _root.enemies.length; } i++; } } function detonate(target) { duplicateMovieClip (_root.mdet, "mdet" + _root.level, _root.level); det = eval ("_root.mdet" + _root.level); det._rotation = this._rotation; det._x = _x; det._y = _y; det._alpha = 100; det.active = true; target.hp = target.hp - 5; _root.level++; mex.start(); blank = _root.blank; _root.gob[inum] = blank; this.removeMovieClip(); } function rotate(dir, need) { if (need > 5) { need = 5; } if (dir == "left") { this._rotation = this._rotation - need; } else if (dir == "right") { this._rotation = this._rotation + need; } } function lightTrail(frame, wid, len) { drawLine(_root.line, frame, currentPos, oldPos, wid, len); } function drawLine(iname, frame, p1, p2, width, len) { duplicateMovieClip (iname, "line" + _root.level, _root.level); nline = eval ("_root.line" + _root.level); nline._x = p1[0]; nline._y = p1[1]; xdif = p2[0] - p1[0]; ydif = p2[1] - p1[1]; dist = Math.sqrt((xdif * xdif) + (ydif * ydif)); nline._xscale = dist; nline._alpha = len * 5; if (nline._xscale > 100) { nline._alpha = 0; } nline._height = width; rad = Math.asin(ydif / dist); degcon = 57.2957795130823; nrad = rad * degcon; if (xdif < 0) { nrad = 180 - nrad; } nline._rotation = nrad; nline.gotoAndStop(frame); nline.unregistered = true; nline.active = true; _root.level++; } function seekTarget() { istarget = false; shortest = 1000; closest = ""; yshort = 1000; xshort = 1000; i = 0; while (i < _root.enemies.length) { en = eval ("_root." + _root.enemies[i]); xdif = en._x - this._x; ydif = en._y - this._y; dist = Math.sqrt((xdif * xdif) + (ydif * ydif)); if (dist < shortest) { shortest = dist; closest = eval (en); yshort = ydif; xshort = xdif; istarget = true; } i++; } if (istarget) { degcon = 57.2957795130823; rad = Math.asin(yshort / shortest); rot = (rad * degcon) + 90; if (xshort < 0) { rot = 360 - rot; } crot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } if (crot < 0) { xrot = 0 + (360 - Math.abs(crot)); } else { xrot = crot; } brot = 0; zrot = xrot - nrot; if (zrot < 0) { zrot = zrot + 360; } if (zrot <= 180) { rotate("left", Math.abs(zrot - brot)); } else if (zrot > 180) { rotate("right", Math.abs(zrot - brot)); } if (nrot > 180) { rot = -180 + (nrot - 180); } else { rot = nrot; } } moveForward(shortest); } etimer = 80 + random(20); currentPos = new Array(); oldPos = new Array(_x, _y); mex = new Sound(); mex.attachSound("_misexplode"); inum = 0; _alpha = 100; } onClipEvent (enterFrame) { if (active) { if (unregistered) { inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } htest(); seekTarget(); etimer--; if (etimer < 0) { detonate(0); } if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } } }
Instance of Symbol 98 MovieClip "mdet" in Frame 3
onClipEvent (load) { active = false; unregistered = true; inum = 0; } onClipEvent (enterFrame) { if (active) { gotoAndStop(_currentframe + 1); } }
Instance of Symbol 152 MovieClip "hud" in Frame 3
onClipEvent (enterFrame) { this.swapDepths(_root.hilevel + 2); }
Instance of Symbol 155 MovieClip "powerup" in Frame 3
onClipEvent (load) { function seekTarget() { ydif = _root.ship._y - _y; xdif = _root.ship._x - _x; dist = Math.sqrt((ydif * ydif) + (xdif * xdif)); degcon = 57.2957795130823; rad = Math.asin(ydif / dist); rot = (rad * degcon) + 90; if (xdif < 0) { rot = 360 - rot; } crot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } if (crot < 0) { xrot = 0 + (360 - Math.abs(crot)); } else { xrot = crot; } brot = 0; zrot = xrot - nrot; if (zrot < 0) { zrot = zrot + 360; } if (zrot <= 180) { rotate("left", Math.abs(zrot - brot)); } else if (zrot > 180) { rotate("right", Math.abs(zrot - brot)); } if (nrot > 180) { rot = -180 + (nrot - 180); } else { rot = nrot; } moveForward(1); } function moveForward(speed) { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); if (speed > 15) { speed = 15; } if (speed < 1) { speed = 1; } rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function rotate(dir, need) { if (need > 0.5) { need = 0.5; } if (dir == "left") { this._rotation = this._rotation - need; } else if (dir == "right") { this._rotation = this._rotation + need; } } function pickupCheck(f) { hit = this.hitTest(_root.ship); if (hit) { if (f == 1) { _root.ship.sheild = _root.ship.sheild + 10; if (_root.ship.sheild > 100) { _root.score = _root.score + Math.round((_root.ship.sheild - 100) * 10); _root.ship.sheild = 100; } } else if (f == 2) { _root.ship.energy = _root.ship.energy + 10; if (_root.ship.energy > 100) { _root.score = _root.score + Math.round((_root.ship.energy - 100) * 10); _root.ship.energy = 100; } } else if (f == 3) { _root.ship.missile = _root.ship.missile + 4; if (_root.ship.missile > 40) { _root.score = _root.score + Math.round((_root.ship.missile - 40) * 25); _root.ship.missile = 40; } } pwp.start(); blank = _root.blank; _root.gob[inum] = blank; this.removeMovieClip(); } } pwp = new Sound(); pwp.attachSound("_powerup"); inum = 0; unregistered = true; } onClipEvent (enterFrame) { if (active) { if (unregistered) { inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } seekTarget(); pickupCheck(this._currentframe); } }
Instance of Symbol 158 MovieClip "pgame" in Frame 3
onClipEvent (load) { ptimer = 10; active = true; ctimer = 0; stopped = false; } onClipEvent (enterFrame) { if (active) { if ((Key.isDown(32) && (_root.paused == false)) && (ptimer == 0)) { _root.paused = true; ptimer = 10; _y = 120; i = 0; while (i < _root.gob.length) { ob = eval ("_root." + _root.gob[i]); ob.active = false; i++; } } else if ((Key.isDown(32) && (_root.paused == true)) && (ptimer == 0)) { _root.paused = false; ptimer = 10; _y = 500; i = 0; while (i < _root.gob.length) { ob = eval ("_root." + _root.gob[i]); ob.active = true; i++; } } if (ptimer > 0) { ptimer--; } this.swapDepths(_root.hilevel + 1); } if (_root.gameover) { if (!stopped) { _root.stopgame(); stopped = true; _root.egen.active = false; } _root.pgame._y = 500; ptimer = 10; active = false; _root.gover.active = true; } i = 0; while (i < _root.enemies.length) { if (_root.enemies[i] == _level0.blank) { _root.enemies.splice(i, 1); x = i; while (x < _root.enemies.length) { _root.enemies[x].anum--; x++; } } i++; } _root.testtext.text = _root.paused; }
Instance of Symbol 169 MovieClip "edet" in Frame 3
onClipEvent (load) { unregistered = true; inum = 0; } onClipEvent (enterFrame) { if (active) { gotoAndStop(_currentframe + 1); if (unregistered) { inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } } if (_alpha < 0) { this.removeMovieClip(); } }
Instance of Symbol 171 MovieClip "elaser" in Frame 3
onClipEvent (load) { function moveForward() { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); speed = 20; rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function htest() { hit = this.hitTest(_root.ship); if (hit) { detonate(_root.ship); } } function detonate(target) { duplicateMovieClip (_root.ldet, "ldet" + _root.level, _root.level); det = eval ("_root.ldet" + _root.level); det._rotation = this._rotation; det._x = _x; det._y = _y; det._alpha = 100; det.active = true; ldt.start(); target.sheild = target.sheild - 1; _root.level++; blank = _root.blank; _root.gob[inum] = blank; this.removeMovieClip(); } ldt = new Sound(); ldt.attachSound("_lasdeath"); inum = 0; _alpha = 100; } onClipEvent (enterFrame) { if (active) { if (unregistered) { inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } moveForward(); htest(); if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } if ((ltype = "a")) { _alpha = (_alpha - 5); } else { _alpha = (_alpha - 2); } if (_alpha < 0) { blank = _root.blank; _root.gob[inum] = blank; this.removeMovieClip(); } } }
Instance of Symbol 174 MovieClip "emis" in Frame 3
onClipEvent (load) { function moveForward(speed) { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; this.currentPos[0] = this._x; this.currentPos[1] = this._y; lightTrail(2, 2, 20); this.oldPos[0] = this._x; this.oldPos[1] = this._y; } function htest() { hit = this.hitTest(_root.ship); if (hit) { detonate(_root.ship); } } function detonate(target) { duplicateMovieClip (_root.mdet, "mdet" + _root.level, _root.level); det = eval ("_root.mdet" + _root.level); det._rotation = this._rotation; det._x = _x; det._y = _y; det._alpha = 100; det.active = true; target.sheild = target.sheild - 4; _root.level++; mex.start(); blank = _root.blank; _root.gob[inum] = blank; this.removeMovieClip(); } function rotate(dir, need) { if (need > 4) { need = 4; } if (dir == "left") { this._rotation = this._rotation - need; } else if (dir == "right") { this._rotation = this._rotation + need; } } function lightTrail(frame, wid, len) { drawLine(_root.line, frame, currentPos, oldPos, wid, len); } function drawLine(iname, frame, p1, p2, width, len) { duplicateMovieClip (iname, "line" + _root.level, _root.level); nline = eval ("_root.line" + _root.level); nline._x = p1[0]; nline._y = p1[1]; xdif = p2[0] - p1[0]; ydif = p2[1] - p1[1]; dist = Math.sqrt((xdif * xdif) + (ydif * ydif)); nline._xscale = dist; nline._alpha = len * 5; if (nline._xscale > 100) { nline._alpha = 0; } nline._height = width; rad = Math.asin(ydif / dist); degcon = 57.2957795130823; nrad = rad * degcon; if (xdif < 0) { nrad = 180 - nrad; } nline._rotation = nrad; nline.gotoAndStop(frame); nline.unregistered = true; nline.active = true; _root.level++; } function seekTarget() { ydif = _root.ship._y - _y; xdif = _root.ship._x - _x; dist = Math.sqrt((ydif * ydif) + (xdif * xdif)); degcon = 57.2957795130823; rad = Math.asin(ydif / dist); rot = (rad * degcon) + 90; if (xdif < 0) { rot = 360 - rot; } crot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } if (crot < 0) { xrot = 0 + (360 - Math.abs(crot)); } else { xrot = crot; } brot = 0; zrot = xrot - nrot; if (zrot < 0) { zrot = zrot + 360; } if (zrot <= 180) { rotate("left", Math.abs(zrot - brot)); } else if (zrot > 180) { rotate("right", Math.abs(zrot - brot)); } if (nrot > 180) { rot = -180 + (nrot - 180); } else { rot = nrot; } moveForward(9); } etimer = 80 + random(20); currentPos = new Array(); oldPos = new Array(_x, _y); mex = new Sound(); mex.attachSound("_misexplode"); inum = 0; } onClipEvent (enterFrame) { if (active) { if (unregistered) { inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } htest(); seekTarget(); etimer--; if (etimer < 0) { detonate(0); } if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } } }
Instance of Symbol 177 MovieClip "gover" in Frame 3
onClipEvent (load) { _alpha = 0; active = false; } onClipEvent (enterFrame) { if (active) { if (_alpha < 101) { this._x = 0; this._y = 120; this._alpha = this._alpha + 2; } if (Key.isDown(13)) { _root.stopgame(); stopAllSounds(); _y = 500; _root.gotoAndStop(2); _root.gameover = false; _root.paused = false; } } if (Key.isDown(13) && (_root.paused == true)) { _root.gameover = true; } }
Instance of Symbol 179 MovieClip "egen" in Frame 3
onClipEvent (load) { function make() { s = random(_root.clevel) + 1; if ((s > 0) && (s < 5)) { p = random(8); x = pos[p][0]; y = pos[p][1]; r = pos[p][2]; _root.spawnEnemy(x, y, 1, r); } else if ((s > 4) && (s < 10)) { p = random(8); x = pos[p][0]; y = pos[p][1]; r = pos[p][2]; _root.spawnEnemy(x, y, 2, r); } else if ((s > 9) && (s < 15)) { p = random(8); x = pos[p][0]; y = pos[p][1]; r = pos[p][2]; _root.spawnEnemy(x, y, 3, r); } else if ((s > 14) && (s < 20)) { p = random(8); x = pos[p][0]; y = pos[p][1]; r = pos[p][2]; _root.spawnEnemy(x, y, 4, r); } else if (s > 19) { p = random(8); x = pos[p][0]; y = pos[p][1]; r = pos[p][2]; _root.spawnEnemy(x, y, 5, r); } } unregistered = true; mtimer = 0; mt = 60; active = true; AW = new Sound(); AW.attachSound("_music"); AW.start(); pos = new Array(); pos[0] = new Array(-10, -10, 135); pos[1] = new Array(650, -10, 225); pos[2] = new Array(-10, 490, 45); pos[3] = new Array(650, 490, 315); pos[4] = new Array(320, -10, 180); pos[5] = new Array(320, 490, 0); pos[6] = new Array(-10, 240, 90); pos[7] = new Array(650, 240, 270); } onClipEvent (enterFrame) { if (active) { if (unregistered) { _root.register(this._name, _root.gob); } AW.onSoundComplete = function () { AW.start(); }; mtimer++; if (mtimer > mt) { make(); mtimer = 0; } _root.sco = _root.sco + Math.ceil((_root.score - _root.sco) / 30); _root.sco3 = _root.sco / 100000; _root.sco2 = _root.sco3 - (_root.sco / 100); _root.sco1 = _root.sco3 - _root.sco2; } }
Instance of Symbol 50 MovieClip "enemy2" in Frame 3
onClipEvent (load) { function seekTarget() { ydif = _root.ship._y - _y; xdif = _root.ship._x - _x; dist = Math.sqrt((ydif * ydif) + (xdif * xdif)); degcon = 57.2957795130823; rad = Math.asin(ydif / dist); rot = (rad * degcon) + 90; if (xdif < 0) { rot = 360 - rot; } crot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } if (crot < 0) { xrot = 0 + (360 - Math.abs(crot)); } else { xrot = crot; } brot = 0; zrot = xrot - nrot; if (zrot < 0) { zrot = zrot + 360; } if (zrot <= 180) { rotate("left", Math.abs(zrot - brot)); } else if (zrot > 180) { rotate("right", Math.abs(zrot - brot)); } if (nrot > 180) { rot = -180 + (nrot - 180); } else { rot = nrot; } moveForward(1); } function moveForward(speed) { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); if (speed > 15) { speed = 15; } if (speed < 1) { speed = 1; } rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function rotate(dir, need) { if (need > 2) { need = 2; } if (dir == "left") { this._rotation = this._rotation - need; } else if (dir == "right") { this._rotation = this._rotation + need; } } function fire(weapon) { if (weapon == "laser") { if (ltimer == 0) { i = 0; while (i < 3) { duplicateMovieClip (_root.elaser, "elaser" + _root.level, _root.level); las = eval ("_root.elaser" + _root.level); las._x = _x; las._y = _y; las.active = true; las.unregistered = true; las._rotation = (_rotation - 10) + (i * 10); ltimer = 30; _root.level++; i++; } } } else if (weapon == "missile") { if (ltimer == 0) { duplicateMovieClip (_root.emis, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = _rotation - 30; las._x = las1._x; las._y = las1._y; las.active = true; las.unregistered = true; _root.level++; duplicateMovieClip (_root.emis, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = _rotation + 30; las._x = las1._x; las._y = las1._y; las.active = true; las.unregistered = true; _root.level++; ltimer = 60; } } } function detonate() { duplicateMovieClip (_root.edet, "edet" + _root.level, _root.level); det = eval ("_root.edet" + _root.level); det._x = this._x; det._y = this._y; det._alpha = 100; det.active = true; det.gotoAndPlay(1); blank = _root.blank; _root.enemies[anum] = blank; blank = _root.blank; _root.gob[inum] = blank; _root.level++; exp.start(); ranp = random(3) + 1; i = 0; while (i < rp) { ranp = random(3) + 1; _root.spawnPowerup(_x, _y, ranp); i++; } _root.score = _root.score + 400; _root.level++; this.removeMovieClip(); } unregistered = true; hp = 20; this.getBounds(_root); ltimer = 0; ranp = 0; exp = new Sound(); exp.attachSound("_explosion"); rp = 2; } onClipEvent (enterFrame) { if (active) { if (unregistered) { anum = _root.enemies.length; _root.enemies[_root.enemies.length] = this; inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } seekTarget(); f = Math.random() * 100; if ((f > 0) && (f < 80)) { fire("laser"); } else if (f > 80) { fire("missile"); } if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } if (ltimer > 0) { ltimer--; } if (hp < 1) { detonate(); } } }
Instance of Symbol 52 MovieClip "enemy3" in Frame 3
onClipEvent (load) { function seekTarget() { ydif = _root.ship._y - _y; xdif = _root.ship._x - _x; dist = Math.sqrt((ydif * ydif) + (xdif * xdif)); degcon = 57.2957795130823; rad = Math.asin(ydif / dist); rot = (rad * degcon) + 90; if (xdif < 0) { rot = 360 - rot; } crot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } if (crot < 0) { xrot = 0 + (360 - Math.abs(crot)); } else { xrot = crot; } brot = 0; zrot = xrot - nrot; if (zrot < 0) { zrot = zrot + 360; } if (zrot <= 180) { rotate("left", Math.abs(zrot - brot)); } else if (zrot > 180) { rotate("right", Math.abs(zrot - brot)); } if (nrot > 180) { rot = -180 + (nrot - 180); } else { rot = nrot; } moveForward(5); } function moveForward(speed) { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); if (speed > 15) { speed = 15; } if (speed < 1) { speed = 1; } rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function rotate(dir, need) { if (need > 6) { need = 6; } if (dir == "left") { this._rotation = this._rotation - need; } else if (dir == "right") { this._rotation = this._rotation + need; } } function fire(weapon) { if (weapon == "laser") { if (ltimer == 0) { i = 0; while (i < 3) { duplicateMovieClip (_root.elaser, "elaser" + _root.level, _root.level); las = eval ("_root.elaser" + _root.level); las._x = _x; las._y = _y; las.active = true; las.unregistered = true; las._rotation = (_rotation - 10) + (i * 10); ltimer = 10; _root.level++; i++; } } } else if (weapon == "missile") { if (ltimer == 0) { duplicateMovieClip (_root.emis, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = _rotation - 30; las._x = las1._x; las._y = las1._y; las.active = true; las.unregistered = true; _root.level++; duplicateMovieClip (_root.emis, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = _rotation + 30; las._x = las1._x; las._y = las1._y; las.active = true; las.unregistered = true; _root.level++; ltimer = 20; } } } function detonate() { duplicateMovieClip (_root.edet, "edet" + _root.level, _root.level); det = eval ("_root.edet" + _root.level); det._x = this._x; det._y = this._y; det._alpha = 100; det.active = true; det.gotoAndPlay(1); blank = _root.blank; _root.enemies[anum] = blank; blank = _root.blank; _root.gob[inum] = blank; _root.level++; exp.start(); ranp = random(3) + 1; i = 0; while (i < rp) { ranp = random(3) + 1; _root.spawnPowerup(_x, _y, ranp); i++; } _root.score = _root.score + 600; _root.level++; this.removeMovieClip(); } unregistered = true; hp = 10; this.getBounds(_root); ltimer = 0; ranp = 0; exp = new Sound(); exp.attachSound("_explosion"); rp = 3; inum = 0; } onClipEvent (enterFrame) { if (active) { if (unregistered) { anum = _root.enemies.length; _root.enemies[_root.enemies.length] = this; inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } seekTarget(); f = Math.random() * 100; if ((f > 0) && (f < 80)) { fire("laser"); } else if (f > 80) { fire("missile"); } if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } if (ltimer > 0) { ltimer--; } if (hp < 1) { detonate(); } } }
Instance of Symbol 54 MovieClip "enemy4" in Frame 3
onClipEvent (load) { function seekTarget() { ydif = _root.ship._y - _y; xdif = _root.ship._x - _x; dist = Math.sqrt((ydif * ydif) + (xdif * xdif)); degcon = 57.2957795130823; rad = Math.asin(ydif / dist); rot = (rad * degcon) + 90; if (xdif < 0) { rot = 360 - rot; } crot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } if (crot < 0) { xrot = 0 + (360 - Math.abs(crot)); } else { xrot = crot; } brot = 0; zrot = xrot - nrot; if (zrot < 0) { zrot = zrot + 360; } if (zrot <= 180) { rotate("left", Math.abs(zrot - brot)); } else if (zrot > 180) { rotate("right", Math.abs(zrot - brot)); } if (nrot > 180) { rot = -180 + (nrot - 180); } else { rot = nrot; } moveForward(0.3); } function moveForward(speed) { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); if (speed > 15) { speed = 15; } if (speed < 1) { speed = 1; } rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function rotate(dir, need) { if (need > 0.5) { need = 0.5; } if (dir == "left") { this._rotation = this._rotation - need; } else if (dir == "right") { this._rotation = this._rotation + need; } } function fire(weapon) { if (weapon == "missile") { if (ltimer == 0) { duplicateMovieClip (_root.emis, "missile" + _root.level, _root.level); clas = eval ("this.las" + cl); las = eval ("_root.missile" + _root.level); las._rotation = _rotation + ((cl * 45) - 22); las._x = clas.x; las._y = clas.y; las.active = true; las.unregistered = true; _root.level++; ltimer = 15; cl++; if (cl > 8) { cl = 1; } } } } function detonate() { duplicateMovieClip (_root.edet, "edet" + _root.level, _root.level); det = eval ("_root.edet" + _root.level); det._x = this._x; det._y = this._y; det._alpha = 100; det.active = true; det.gotoAndPlay(1); blank = _root.blank; _root.enemies[anum] = blank; blank = _root.blank; _root.gob[inum] = blank; _root.level++; exp.start(); ranp = random(3) + 1; i = 0; while (i < rp) { ranp = random(3) + 1; _root.spawnPowerup(_x, _y, ranp); i++; } _root.score = _root.score + 1200; _root.level++; this.removeMovieClip(); } unregistered = true; hp = 65; this.getBounds(_root); ltimer = 0; ranp = 0; exp = new Sound(); exp.attachSound("_explosion"); cl = 1; rp = 4; inum = 0; } onClipEvent (enterFrame) { if (active) { if (unregistered) { anum = _root.enemies.length; _root.enemies[_root.enemies.length] = this; inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } seekTarget(); fire("missile"); if (this._y < -21) { this._y = 500; } else if (this._y > 501) { this._y = -20; } if (this._x < -21) { this._x = 660; } else if (this._x > 661) { this._x = -20; } if (ltimer > 0) { ltimer--; } if (hp < 1) { detonate(); } } }
Instance of Symbol 181 MovieClip "enemy5" in Frame 3
onClipEvent (load) { function seekTarget() { ydif = sdest[1] - _y; xdif = sdest[0] - _x; dist = Math.sqrt((ydif * ydif) + (xdif * xdif)); degcon = 57.2957795130823; rad = Math.asin(ydif / dist); rot = (rad * degcon) + 90; if (xdif < 0) { rot = 360 - rot; } crot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } if (crot < 0) { xrot = 0 + (360 - Math.abs(crot)); } else { xrot = crot; } brot = 0; zrot = xrot - nrot; if (zrot < 0) { zrot = zrot + 360; } if (zrot <= 180) { rotate("left", Math.abs(zrot - brot)); } else if (zrot > 180) { rotate("right", Math.abs(zrot - brot)); } if (nrot > 180) { rot = -180 + (nrot - 180); } else { rot = nrot; } moveForward(0.3); } function moveForward(speed) { rot = this._rotation; if (rot < 0) { nrot = 0 + (360 - Math.abs(rot)); } else { nrot = rot; } nrot = nrot * (Math.PI/180); rot = this._rotation; xmove = Math.sin(nrot) * speed; ymove = Math.cos(nrot) * speed; this._x = this._x + xmove; this._y = this._y - ymove; } function rotate(dir, need) { if (need > 0.5) { need = 0.5; } if (dir == "left") { this._rotation = this._rotation - need; } else if (dir == "right") { this._rotation = this._rotation + need; } } function fire() { if (ltimer == 0) { i = 0; while (i < 8) { w = random(2) + 1; if (w == 1) { weapon = "laser"; } else if (w == 2) { weapon = "missile"; } clas = eval ("this.las" + (i + 1)); _root.testtext.text = "this.las" + (i + 1); ydif = _root.ship._y - clas.y; xdif = _root.ship._x - clas.x; dist = Math.sqrt((ydif * ydif) + (xdif * xdif)); degcon = 57.2957795130823; rad = Math.asin(ydif / dist); rot = (rad * degcon) + 90; if (xdif < 0) { rot = 360 - rot; } if (weapon == "laser") { duplicateMovieClip (_root.elaser, "elaser" + _root.level, _root.level); las = eval ("_root.elaser" + _root.level); las._x = clas.x; las._y = clas.y; las.active = true; las.unregistered = true; las._rotation = rot; _root.level++; } else if (weapon == "missile") { duplicateMovieClip (_root.emis, "missile" + _root.level, _root.level); las = eval ("_root.missile" + _root.level); las._rotation = rot; las._x = clas.x; las._y = clas.y; las.active = true; las.unregistered = true; _root.level++; } i++; } ltimer = 60; } } function detonate() { duplicateMovieClip (_root.edet, "edet" + _root.level, _root.level); det = eval ("_root.edet" + _root.level); det._x = this._x; det._y = this._y; det._alpha = 100; det._xscale = 500; det._yscale = 500; det.active = true; det.gotoAndPlay(1); blank = _root.blank; _root.enemies[anum] = blank; blank = _root.blank; _root.gob[inum] = blank; _root.level++; exp.start(); i = 0; while (i < rp) { ranp = random(3) + 1; _root.spawnPowerup(_x, _y, ranp); i++; } _root.score = _root.score + 5000; _root.level++; this.removeMovieClip(); } unregistered = true; hp = 300; this.getBounds(_root); ltimer = 0; ranp = 0; exp = new Sound(); exp.attachSound("_explosion"); rp = 12; sstart = new Array(_x, _y); sdest = new Array(); cl = 1; nodest = true; inum = 0; } onClipEvent (enterFrame) { if (active) { if (unregistered) { anum = _root.enemies.length; _root.enemies[_root.enemies.length] = this; inum = _root.gob.length; _root.gob[_root.gob.length] = this; unregistered = false; } if (nodest) { pos = new Array(); pos[0] = new Array(-10, -10, 135); pos[1] = new Array(650, -10, 225); pos[2] = new Array(-10, 490, 45); pos[3] = new Array(650, 490, 315); pos[4] = new Array(320, -10, 180); pos[5] = new Array(320, 490, 0); pos[6] = new Array(-10, 240, 90); pos[7] = new Array(650, 240, 270); sdest = pos[random(8)]; nodest = false; } moveForward(1); f = Math.random() * 100; fire(); if (this._y < -51) { this.removeMovieClip(); } else if (this._y > 531) { this.removeMovieClip(); } else if (this._x < -51) { this.removeMovieClip(); } else if (this._x > 691) { this.removeMovieClip(); } if (ltimer > 0) { ltimer--; } if (hp < 1) { detonate(); } } }
Instance of Symbol 183 MovieClip "blank" in Frame 3
onClipEvent (load) { anum = 100; }
Symbol 21 Button
on (release) { _root.gotoAndStop(2); }
Symbol 22 MovieClip Frame 1
stop();
Symbol 28 MovieClip Frame 1
_root.stop(); l = _root.getBytesLoaded(); t = _root.getBytesTotal(); p = (l / t) * 100; bar._xscale = p; if (p > 98) { _root.plb.gotoAndStop(2); }
Symbol 28 MovieClip Frame 2
gotoAndPlay (1);
Symbol 35 Button
on (release) { getURL ("http://www.xenoverse.net", _blank); }
Instance of Symbol 49 MovieClip "las1" in Symbol 50 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las2" in Symbol 50 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las1" in Symbol 52 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las2" in Symbol 52 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las1" in Symbol 54 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las2" in Symbol 54 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las3" in Symbol 54 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las4" in Symbol 54 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las5" in Symbol 54 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las6" in Symbol 54 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las7" in Symbol 54 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las8" in Symbol 54 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Symbol 61 Button
on (release) { _root.gotoAndStop(3); }
Instance of Symbol 65 MovieClip "lflame" in Symbol 68 MovieClip Frame 1
onClipEvent (enterFrame) { if (thrust) { this._visible = true; } else { this._visible = false; } }
Instance of Symbol 65 MovieClip "rflame" in Symbol 68 MovieClip Frame 1
onClipEvent (enterFrame) { if (thrust) { this._visible = true; } else { this._visible = false; } }
Instance of Symbol 49 MovieClip "las1" in Symbol 68 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las2" in Symbol 68 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Symbol 73 MovieClip Frame 1
stop();
Symbol 79 MovieClip Frame 8
this.removeMovieClip();
Symbol 98 MovieClip Frame 11
this.removeMovieClip();
Instance of Symbol 108 MovieClip "sbar" in Symbol 152 MovieClip Frame 1
onClipEvent (enterFrame) { _xscale = _root.ship.sheild; }
Instance of Symbol 108 MovieClip "ebar" in Symbol 152 MovieClip Frame 1
onClipEvent (enterFrame) { _xscale = _root.ship.energy; }
Instance of Symbol 150 MovieClip in Symbol 152 MovieClip Frame 1
onClipEvent (enterFrame) { gotoAndStop(Math.round(_root.ship.missile) + 1); }
Symbol 155 MovieClip Frame 1
stop();
Symbol 169 MovieClip Frame 10
this.removeMovieClip();
Instance of Symbol 173 MovieClip in Symbol 174 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 40; }
Instance of Symbol 49 MovieClip "las1" in Symbol 181 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las2" in Symbol 181 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las3" in Symbol 181 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las4" in Symbol 181 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las5" in Symbol 181 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las6" in Symbol 181 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las7" in Symbol 181 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }
Instance of Symbol 49 MovieClip "las8" in Symbol 181 MovieClip Frame 1
onClipEvent (load) { point = new Object(); } onClipEvent (enterFrame) { point.x = _x; point.y = _y; _parent.localToGlobal(point); x = point.x; y = point.y; }

Library Items

Symbol 1 Sound [_powerup]
Symbol 2 Sound [_misexplode]
Symbol 3 Sound [_missile]
Symbol 4 Sound [_nextlevel]
Symbol 5 Sound [_lasdeath]
Symbol 6 Sound [_laser]
Symbol 7 Sound [_explosion]
Symbol 8 Sound [_armageddon]
Symbol 9 Sound [_music]
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:Timeline
Symbol 12 BitmapUsed by:13 62
Symbol 13 GraphicUses:12Used by:14
Symbol 14 MovieClipUses:13Used by:Timeline
Symbol 15 GraphicUsed by:22
Symbol 16 GraphicUsed by:21 61
Symbol 17 GraphicUsed by:21 61
Symbol 18 GraphicUsed by:21 61
Symbol 19 GraphicUsed by:21 61
Symbol 20 GraphicUsed by:21 61
Symbol 21 ButtonUses:16 17 18 19 20Used by:22
Symbol 22 MovieClipUses:15 21Used by:Timeline
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:23Used by:Timeline
Symbol 25 GraphicUsed by:26
Symbol 26 MovieClipUses:25Used by:28
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClipUses:26 27Used by:Timeline
Symbol 29 FontUsed by:30 31 32 33 37 38 39 40 41 42 43 44 45 55 80 100 101 102 103 104 151 156 157 175 176 184
Symbol 30 EditableTextUses:29Used by:Timeline
Symbol 31 EditableTextUses:29Used by:35
Symbol 32 EditableTextUses:29Used by:35
Symbol 33 EditableTextUses:29Used by:35
Symbol 34 GraphicUsed by:35
Symbol 35 ButtonUses:31 32 33 34Used by:Timeline
Symbol 36 GraphicUsed by:Timeline
Symbol 37 TextUses:29Used by:Timeline
Symbol 38 TextUses:29Used by:Timeline
Symbol 39 TextUses:29Used by:Timeline
Symbol 40 TextUses:29Used by:Timeline
Symbol 41 TextUses:29Used by:Timeline
Symbol 42 TextUses:29Used by:Timeline
Symbol 43 TextUses:29Used by:Timeline
Symbol 44 TextUses:29Used by:Timeline
Symbol 45 TextUses:29Used by:Timeline
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:Timeline
Symbol 48 GraphicUsed by:50
Symbol 49 MovieClipUsed by:50 52 54 68 181
Symbol 50 MovieClipUses:48 49Used by:Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51 49Used by:Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53 49Used by:Timeline
Symbol 55 TextUses:29Used by:Timeline
Symbol 56 GraphicUsed by:60
Symbol 57 GraphicUsed by:60
Symbol 58 GraphicUsed by:60
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:56 57 58 59Used by:155  Timeline
Symbol 61 ButtonUses:16 17 18 19 20Used by:Timeline
Symbol 62 GraphicUses:12Used by:63
Symbol 63 MovieClipUses:62Used by:Timeline
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:68
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:68
Symbol 68 MovieClipUses:65 67 49Used by:Timeline
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:Timeline
Symbol 71 GraphicUsed by:73
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:71 72Used by:Timeline
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:74 75 76 77 78Used by:Timeline
Symbol 80 EditableTextUses:29Used by:Timeline
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:81Used by:87
Symbol 83 GraphicUsed by:86
Symbol 84 GraphicUsed by:86
Symbol 85 GraphicUsed by:86
Symbol 86 MovieClipUses:83 84 85Used by:87
Symbol 87 MovieClipUses:82 86Used by:Timeline
Symbol 88 GraphicUsed by:98
Symbol 89 GraphicUsed by:98
Symbol 90 GraphicUsed by:98
Symbol 91 GraphicUsed by:98
Symbol 92 GraphicUsed by:98
Symbol 93 GraphicUsed by:98
Symbol 94 GraphicUsed by:98
Symbol 95 GraphicUsed by:98
Symbol 96 GraphicUsed by:98
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:88 89 90 91 92 93 94 95 96 97Used by:Timeline
Symbol 99 GraphicUsed by:152
Symbol 100 TextUses:29Used by:152
Symbol 101 EditableTextUses:29Used by:152
Symbol 102 TextUses:29Used by:152
Symbol 103 TextUses:29Used by:152
Symbol 104 TextUses:29Used by:152
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:152
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:152
Symbol 109 GraphicUsed by:150
Symbol 110 GraphicUsed by:150
Symbol 111 GraphicUsed by:150
Symbol 112 GraphicUsed by:150
Symbol 113 GraphicUsed by:150
Symbol 114 GraphicUsed by:150
Symbol 115 GraphicUsed by:150
Symbol 116 GraphicUsed by:150
Symbol 117 GraphicUsed by:150
Symbol 118 GraphicUsed by:150
Symbol 119 GraphicUsed by:150
Symbol 120 GraphicUsed by:150
Symbol 121 GraphicUsed by:150
Symbol 122 GraphicUsed by:150
Symbol 123 GraphicUsed by:150
Symbol 124 GraphicUsed by:150
Symbol 125 GraphicUsed by:150
Symbol 126 GraphicUsed by:150
Symbol 127 GraphicUsed by:150
Symbol 128 GraphicUsed by:150
Symbol 129 GraphicUsed by:150
Symbol 130 GraphicUsed by:150
Symbol 131 GraphicUsed by:150
Symbol 132 GraphicUsed by:150
Symbol 133 GraphicUsed by:150
Symbol 134 GraphicUsed by:150
Symbol 135 GraphicUsed by:150
Symbol 136 GraphicUsed by:150
Symbol 137 GraphicUsed by:150
Symbol 138 GraphicUsed by:150
Symbol 139 GraphicUsed by:150
Symbol 140 GraphicUsed by:150
Symbol 141 GraphicUsed by:150
Symbol 142 GraphicUsed by:150
Symbol 143 GraphicUsed by:150
Symbol 144 GraphicUsed by:150
Symbol 145 GraphicUsed by:150
Symbol 146 GraphicUsed by:150
Symbol 147 GraphicUsed by:150
Symbol 148 GraphicUsed by:150
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149Used by:152
Symbol 151 EditableTextUses:29Used by:152
Symbol 152 MovieClipUses:99 100 101 102 103 104 106 108 150 151Used by:Timeline
Symbol 153 GraphicUsed by:155
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClipUses:153 60 154Used by:Timeline
Symbol 156 TextUses:29Used by:158
Symbol 157 TextUses:29Used by:158
Symbol 158 MovieClipUses:156 157Used by:Timeline
Symbol 159 GraphicUsed by:169
Symbol 160 GraphicUsed by:169
Symbol 161 GraphicUsed by:169
Symbol 162 GraphicUsed by:169
Symbol 163 GraphicUsed by:169
Symbol 164 GraphicUsed by:169
Symbol 165 GraphicUsed by:169
Symbol 166 GraphicUsed by:169
Symbol 167 GraphicUsed by:169
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:159 160 161 162 163 164 165 166 167 168Used by:Timeline
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:Timeline
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:172Used by:174
Symbol 174 MovieClipUses:173Used by:Timeline
Symbol 175 TextUses:29Used by:177
Symbol 176 TextUses:29Used by:177
Symbol 177 MovieClipUses:175 176Used by:Timeline
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:178Used by:Timeline
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:180 49Used by:Timeline
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:Timeline
Symbol 184 EditableTextUses:29Used by:Timeline

Instance Names

"plb"Frame 1Symbol 22 MovieClip
"testtext"Frame 1Symbol 30 EditableText
"enemy1"Frame 2Symbol 47 MovieClip
"enemy2"Frame 2Symbol 50 MovieClip
"enemy3"Frame 2Symbol 52 MovieClip
"enemy4"Frame 2Symbol 54 MovieClip
"ship"Frame 3Symbol 68 MovieClip
"laser"Frame 3Symbol 70 MovieClip
"line"Frame 3Symbol 73 MovieClip
"enemy1"Frame 3Symbol 47 MovieClip
"ldet"Frame 3Symbol 79 MovieClip
"testtext"Frame 3Symbol 80 EditableText
"missile"Frame 3Symbol 87 MovieClip
"mdet"Frame 3Symbol 98 MovieClip
"hud"Frame 3Symbol 152 MovieClip
"powerup"Frame 3Symbol 155 MovieClip
"pgame"Frame 3Symbol 158 MovieClip
"edet"Frame 3Symbol 169 MovieClip
"elaser"Frame 3Symbol 171 MovieClip
"emis"Frame 3Symbol 174 MovieClip
"gover"Frame 3Symbol 177 MovieClip
"egen"Frame 3Symbol 179 MovieClip
"enemy2"Frame 3Symbol 50 MovieClip
"enemy3"Frame 3Symbol 52 MovieClip
"enemy4"Frame 3Symbol 54 MovieClip
"enemy5"Frame 3Symbol 181 MovieClip
"blank"Frame 3Symbol 183 MovieClip
"tt2"Frame 3Symbol 184 EditableText
"bar"Symbol 28 MovieClip Frame 1Symbol 26 MovieClip
"las1"Symbol 50 MovieClip Frame 1Symbol 49 MovieClip
"las2"Symbol 50 MovieClip Frame 1Symbol 49 MovieClip
"las1"Symbol 52 MovieClip Frame 1Symbol 49 MovieClip
"las2"Symbol 52 MovieClip Frame 1Symbol 49 MovieClip
"las1"Symbol 54 MovieClip Frame 1Symbol 49 MovieClip
"las2"Symbol 54 MovieClip Frame 1Symbol 49 MovieClip
"las3"Symbol 54 MovieClip Frame 1Symbol 49 MovieClip
"las4"Symbol 54 MovieClip Frame 1Symbol 49 MovieClip
"las5"Symbol 54 MovieClip Frame 1Symbol 49 MovieClip
"las6"Symbol 54 MovieClip Frame 1Symbol 49 MovieClip
"las7"Symbol 54 MovieClip Frame 1Symbol 49 MovieClip
"las8"Symbol 54 MovieClip Frame 1Symbol 49 MovieClip
"flame"Symbol 68 MovieClip Frame 1Symbol 65 MovieClip
"lflame"Symbol 68 MovieClip Frame 1Symbol 65 MovieClip
"rflame"Symbol 68 MovieClip Frame 1Symbol 65 MovieClip
"las1"Symbol 68 MovieClip Frame 1Symbol 49 MovieClip
"las2"Symbol 68 MovieClip Frame 1Symbol 49 MovieClip
"lvl"Symbol 152 MovieClip Frame 1Symbol 101 EditableText
"sbar"Symbol 152 MovieClip Frame 1Symbol 108 MovieClip
"ebar"Symbol 152 MovieClip Frame 1Symbol 108 MovieClip
"score1"Symbol 152 MovieClip Frame 1Symbol 151 EditableText
"las1"Symbol 181 MovieClip Frame 1Symbol 49 MovieClip
"las2"Symbol 181 MovieClip Frame 1Symbol 49 MovieClip
"las3"Symbol 181 MovieClip Frame 1Symbol 49 MovieClip
"las4"Symbol 181 MovieClip Frame 1Symbol 49 MovieClip
"las5"Symbol 181 MovieClip Frame 1Symbol 49 MovieClip
"las6"Symbol 181 MovieClip Frame 1Symbol 49 MovieClip
"las7"Symbol 181 MovieClip Frame 1Symbol 49 MovieClip
"las8"Symbol 181 MovieClip Frame 1Symbol 49 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "_powerup"
ExportAssets (56)Timeline Frame 1Symbol 2 as "_misexplode"
ExportAssets (56)Timeline Frame 1Symbol 3 as "_missile"
ExportAssets (56)Timeline Frame 1Symbol 4 as "_nextlevel"
ExportAssets (56)Timeline Frame 1Symbol 5 as "_lasdeath"
ExportAssets (56)Timeline Frame 1Symbol 6 as "_laser"
ExportAssets (56)Timeline Frame 1Symbol 7 as "_explosion"
ExportAssets (56)Timeline Frame 1Symbol 8 as "_armageddon"
ExportAssets (56)Timeline Frame 1Symbol 9 as "_music"

Dynamic Text Variables

_root.clevelSymbol 101 EditableText"1"
_root.scoSymbol 151 EditableText"000"




http://swfchan.com/7/30690/info.shtml
Created: 19/5 -2019 06:02:11 Last modified: 19/5 -2019 06:02:11 Server time: 03/05 -2024 11:34:10