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

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

flashtrek.swf

This is the info page for
Flash #9237

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


Text
Overload
(50)

Engine Decel Pulse
(150)

Multi-Vectored Attack
(500)

Tractor Beam
(150)

Subspace Wave
(800)

Nebula
(600)

LEVEL 0

Type X Phasers (0):
Plasma Phasers (2,000):
Pulse Phasers (5,000):
Lance Phasers (10,000):
Shield Generator (1,000):
Phaser Power Core (5,000):
Torpedo Turrents (8,000):
Shield Extendor (50,000):
Ore Refinery (100,000):
Akira Shipyard Defense Array (15,000):
Sovereign Shipyard Defense Array (20,000):
Starbase Auto-Defense Array (30,000):
Rebuild Soveriegn Shipyard (50,000):
Rebuild Akira Shipyard (45,000):

BUILD

(5 shots, low energy, quick recharge)
(6 shots, medium energy, medium recharge)
(15 shots, medium energy, slow recharge)
(3 shots, high energy, slow recharge)
(increases shield strength by 100)
(phasers recharge twice as fast)
(# of torpedoes per load is doubled)
(extends base shields around shipyards)
(each kill yields more resources)
(adds phaser array to akira shipyard)
(adds phaser array to sovereign shipyard)
(adds auto-firing phaser array to starbase)
(rebuilds the sovereign shipyard)
rebuilds the akira shipyard)

EQUIP

Build Defense Mine
(300)

Build Phaser Platform
(1000)

Build Intrepid
(3000)

Build Runabout
(1000)

Recharge Shields
(500)

Game Not Loading?
Click to Bypass Preload...

GAME IS LOADING...

All Star Trek references are copyrighted by
Paramount Pictures respectively. FlashTrek is
fan based material.
There is no existing copyright on this game,
ed.
The purpose of this game is to provide an
enjoyable game online, as well as offer
available code and examples for programming
arcade games in Flash.
Enjoy the game.

Music from Newgrounds by
Darkened_Jedi selections
Spooky Mix 02 (4640) and
Dream Mix - Start (4613)

PLAY EASY

Runabout: Slow torpedo reload, slow
phaser recharge. Special weapon is a
engine decelerator pulse that slows
down all visible enemy ships.
Intrepid: Decent phaser and torpedo
rates. Special weapon is a tractor beam
that stops all ships in its range in their
tracks.
Akira:  Fast torpedo firing rate, slow
phaser rates. Special weapon is a
nebulous cloud that damages all ships
entering it.
Prometheus: Good phaser and torpedo
rates. Special weapon is a multi-vectored
phaser attack that fires at all enemies
simultaneously.
Sovereign: Fast phasers and decent
torpedo reloads. Special weapon is a
subspace rift that destroys everything in
its path.
Mine: Damages anything to touch it.
Special is an overload, it explodes and
does more damage at a distance.
Phaser Platform: Fires phasers at target.

Heavy Shipyard: Builds the
Sovereign and Prometheus.
Shipyard: Builds the Akira.
Starbase: Builds the defense mine,
phaser platform, Runabout, and
Intrepid.

Phaser Power Core: Doubles recharge
rate of all your phasers.
Shield Regenerator: Increases shield
strength by 100.
Shield Extendor: Extends starbase
shields around the shipyards.
Akira Defense Array: Equips the akira
shipyard with an auto-firing phaser.
Sovereign Defense Array: Equips the
sovereign shipyard with an auto-firing
phaser.
Starbase Defense Array: Equips the
starbase with an auto-firing phaser
(but this does drain your phaser energy)

FlashTrek:
Assault

INSTRUCTIONS
Click your mouse. Don't let the
enemies destroy your bases.

PLAY HARD

PLAY EASY: Ore refinery and station defense
arrays already in place when you begin and
you start with 5,000 resources.

Build Sovereign
(10,000)

Build Prometheus
(8,000)

Build Akira
(7,000)

STARBASE SHIELDS:

PHASER:

RESOURCES:

(100/100)

(5)

Type X

BEGIN

NEXT LEVEL

LEVEL 0

RESOURCES

0

YOU ARE
DEAD

ActionScript [AS1/AS2]

Frame 1
_root.bytesLoaded = _root.getBytesLoaded(); _root.bytesTotal = _root.getBytesTotal(); _root.percentLoaded = Math.round(100 * (_root.bytesLoaded / _root.bytesTotal)); setProperty("percentloadedbox", _xscale , 100 - _root.percentLoaded);
Frame 2
if (_root.percentLoaded == 100) { gotoAndPlay (3); } else { gotoAndPlay (1); }
Frame 3
stop();
Frame 4
function displaystage() { attachMovie("stagetext", "stagetext", level); setProperty("stagetext", _x , 275); setProperty("stagetext", _y , 150); } function hit() { shields = shields - 1; updatebars(); } function dead() { gotoAndPlay (6); } function nextlevel() { if (wave <= 0) { i = 0; x = 0; while (i <= _root.totenemies) { if (enemyslot[i] != undefined) { x = x + 1; } i++; } if (x == 0) { soundbeep = new Sound(this); soundbeep.attachSound("cheers"); soundbeep.start(0, 0); gotoAndPlay (5); } } } function createship() { soundbeep = new Sound(this); soundbeep.attachSound("build"); soundbeep.start(0, 0); attachMovie("ship", "ship" add level2, level2); setProperty("ship" add level2, _x , random(100) + 325); setProperty("ship" add level2, _y , random(300) + 50); Set(("ship" add level2) add ":mytype", shiptype); Set(("ship" add level2) add ":myname", "ship" add level2); level2++; } function createmine() { soundbeep = new Sound(this); soundbeep.attachSound("build"); soundbeep.start(0, 0); attachMovie("mine", "mine" add level2, level2); setProperty("mine" add level2, _x , random(50) + 100); setProperty("mine" add level2, _y , random(300) + 50); _root.level2++; } function createphaserpod() { soundbeep = new Sound(this); soundbeep.attachSound("build"); soundbeep.start(0, 0); attachMovie("phaserpod", "phaserpod" add level2, level2); setProperty("phaserpod" add level2, _x , random(50) + 200); setProperty("phaserpod" add level2, _y , random(300) + 50); Set(("phaserpod" add level2) add ":myname", "phaserpod" add level2); _root.level2++; } function createbadguy() { wave = wave - 1; attachMovie("enemy", "enemy" add level, level); setProperty("enemy" add level, _x , -50); setProperty("enemy" add level, _y , random(300) + 50); Set(("enemy" add level) add ":myname", "enemy" add level); x = random(wavelevel); if (x < 1) { enemytype = 2; } if ((x >= 1) and (x < 3)) { enemytype = 4; } if ((x >= 6) and (x < 9)) { enemytype = 6; } if ((x >= 9) and (x < 12)) { enemytype = 8; } if ((x >= 12) and (x < 13)) { enemytype = 10; } if ((x >= 13) and (x < 16)) { enemytype = 12; } if ((x >= 16) and (x < 18)) { enemytype = 14; } if ((x >= 18) and (x < 21)) { enemytype = 16; } if ((x >= 21) and (x < 24)) { enemytype = 18; } if ((x >= 24) and (x < 100)) { enemytype = 20; } Set(("enemy" add level) add ":mytype", enemytype); i = 0; while (i <= _root.totenemies) { if (enemyslot[i] == undefined) { enemyslot[i] = "enemy" add level; Set(("enemy" add level) add ":myslot", i); i = 999; break; } i++; } _root.level++; } function enemyfire() { attachMovie("etorp", "etorp" add level, level); setProperty("etorp" add level, _x , getProperty(target, _x)); setProperty("etorp" add level, _y , getProperty(target, _y)); Set(("etorp" add level) add ":mytype", firetype); _root.level++; } function firephaser() { attachMovie("phaser", "phaser" add level, level); Set(("phaser" add level) add ":mytarget", target); Set(("phaser" add level) add ":myorigin", myorigin); level++; if (myorigin == "station2") { phaser = phaser - 1; updatebars(); } target = undefined; } function firetractor() { attachMovie("tractor", "tractor" add level, level); Set(("tractor" add level) add ":mytarget", target); Set(("tractor" add level) add ":myorigin", myorigin); level++; target = undefined; } function updatebars() { setProperty("phaserbar", _xscale , (phaser / totphaser) * 100); Set("phaserbar:mytype", 1); phasernum = ("(" + phaser) + ")"; setProperty("shieldsbar", _xscale , (shields / totshields) * 100); shieldsnum = ((("(" + shields) + "/") + totshields) + ")"; setProperty("wave", _xscale , (wave / totwave) * 100); } function rebuild1() { s1 = 1; Set("station1:myenergy", 100); } function rebuild2() { s2 = 1; Set("station3:myenergy", 100); } function fireassimilate() { attachMovie("assimilate", "assimilate" add level, level); Set(("assimilate" add level) add ":mytarget", target); Set(("assimilate" add level) add ":myorigin", myorigin); level++; target = undefined; } stop(); soundbeep = new Sound(this); soundbeep.attachSound("music"); soundbeep.start(0, 99); totwave = 75; wave = 75; if (phaserpower == 1) { phasertype = "Type X"; } if (phaserpower == 3) { phasertype = "Plasma"; } if (phaserpower == 8) { phasertype = "Pulse"; } if (phaserpower == 10) { phasertype = "Lance"; } enemyslot = new Array(); shields = totshields; phaser = totphaser; totenemies = 50; Mouse.hide(); attachMovie("target", "target", 99999999); level = 1; cursor = 1; displaystage();
Instance of Symbol 245 MovieClip "station1" in Frame 4
onClipEvent (enterFrame) { if (((random(40) == 1) and (timer == undefined)) and (_root.sov == 1)) { i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 150) and (Math.abs(y1 - y2) < 100)) { _root.target = _root.enemyslot[i]; _root.myorigin = "station1"; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); break; } } i++; } } }
Instance of Symbol 200 MovieClip [station2] "station2" in Frame 4
onClipEvent (enterFrame) { num = 15; if (_root.wavelevel > 5) { num = 10; } if (_root.wavelevel > 10) { num = 5; } if ((random(num) == 1) and (_root.wave > 0)) { _root.createbadguy(); _root.updatebars(); } if (_root.phaser <= 0) { _root.phaser = 0; if (timer == undefined) { timer = _root.phaserrecharge / _root.phasercharger; } timer = timer - 1; setProperty("../phaserbar", _xscale , 100 - ((timer / (_root.phaserrecharge / _root.phasercharger)) * 100)); Set("../phaserbar:mytype", 2); if (timer < 0) { timer = undefined; _root.phaser = _root.totphaser; _root.updatebars(); } } if (hit > 0) { while (hit > 0) { hit--; _root.hit(); } } if ((random(40) == 1) and (_root.auto == 1)) { i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 150) and (Math.abs(y1 - y2) < 100)) { _root.target = _root.enemyslot[i]; _root.myorigin = "station2"; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); break; } } i++; } } }
Instance of Symbol 250 MovieClip "station3" in Frame 4
onClipEvent (enterFrame) { if (((random(40) == 1) and (timer == undefined)) and (_root.akira == 1)) { i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 150) and (Math.abs(y1 - y2) < 100)) { _root.target = _root.enemyslot[i]; _root.myorigin = "station3"; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); break; } } i++; } } }
Frame 5
stop(); stopAllSounds(); attachMovie("menu", "menu", level2); setProperty("menu", _x , 325); setProperty("menu", _y , 200); level2++; _root.wavelevel++; nextlevel = "LEVEL " + _root.wavelevel;
Frame 6
stopAllSounds(); i = 0; while (i < 99999) { removeMovieClip("enemy" add i); removeMovieClip("ship" add i); removeMovieClip("mine" add i); removeMovieClip("phaserpod" add i); i++; }
Frame 25
gotAndPlay("menu", 1);
Symbol 21 MovieClip [explosion] Frame 7
removeMovieClip("");
Symbol 25 MovieClip [explosionmini] Frame 1
if (mytarget == 0) { _x = 0; _y = 0; } else { _x = getProperty("../" add mytarget, _x); _y = getProperty("../" add mytarget, _y); }
Symbol 25 MovieClip [explosionmini] Frame 2
if (mytarget == 0) { _x = 0; _y = 0; } else { _x = getProperty("../" add mytarget, _x); _y = getProperty("../" add mytarget, _y); }
Symbol 25 MovieClip [explosionmini] Frame 3
if (mytarget == 0) { _x = 0; _y = 0; } else { _x = getProperty("../" add mytarget, _x); _y = getProperty("../" add mytarget, _y); }
Symbol 25 MovieClip [explosionmini] Frame 4
removeMovieClip("");
Symbol 28 MovieClip [assimilate] Frame 1
targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); Set(("../" add mytarget) add ":hit", 1);
Symbol 28 MovieClip [assimilate] Frame 2
targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); if (getProperty("../" add myorigin, _x) == undefined) { removeMovieClip(""); } a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); gotoAndPlay (2);
Symbol 31 MovieClip [tractor] Frame 1
targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI);
Symbol 31 MovieClip [tractor] Frame 2
targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); gotoAndPlay (2);
Symbol 40 MovieClip [phaser] Frame 1
if (_root.phaserpower == 1) { gotoAndPlay (2); } if (_root.phaserpower == 3) { gotoAndPlay (4); } if (_root.phaserpower == 5) { gotoAndPlay (6); } if (_root.phaserpower == 10) { gotoAndPlay (8); }
Symbol 40 MovieClip [phaser] Frame 2
if (timer == undefined) { timer = 5; soundbeep = new Sound(this); soundbeep.attachSound("phas"); soundbeep.start(0, 0); } timer = timer - 1; if (timer < 0) { removeMovieClip(""); } _root.level++; targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); if (fire == undefined) { fire = 1; _root.attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("../explosion" add _root.level) add ":mytarget", mytarget); Set(("../explosion" add _root.level) add ":xshift", xshift); Set(("../explosion" add _root.level) add ":yshift", yshift); _root.level++; }
Symbol 40 MovieClip [phaser] Frame 3
if (timer == undefined) { timer = 5; } timer = timer - 1; if (timer < 0) { removeMovieClip(""); } _root.level++; targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); gotoAndPlay (2);
Symbol 40 MovieClip [phaser] Frame 4
if (timer == undefined) { timer = 5; soundbeep = new Sound(this); soundbeep.attachSound("phas"); soundbeep.start(0, 0); } timer = timer - 1; if (timer < 0) { removeMovieClip(""); } _root.level++; targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); if (fire == undefined) { fire = 1; _root.attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("../explosion" add _root.level) add ":mytarget", mytarget); Set(("../explosion" add _root.level) add ":xshift", xshift); Set(("../explosion" add _root.level) add ":yshift", yshift); _root.level++; }
Symbol 40 MovieClip [phaser] Frame 5
if (timer == undefined) { timer = 5; } timer = timer - 1; if (timer < 0) { removeMovieClip(""); } _root.level++; targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); gotoAndPlay (4);
Symbol 40 MovieClip [phaser] Frame 6
if (timer == undefined) { timer = 5; soundbeep = new Sound(this); soundbeep.attachSound("pulse"); soundbeep.start(0, 0); } timer = timer - 1; if (timer < 0) { removeMovieClip(""); } _root.level++; targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); if (fire == undefined) { fire = 1; _root.attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("../explosion" add _root.level) add ":mytarget", mytarget); Set(("../explosion" add _root.level) add ":xshift", xshift); Set(("../explosion" add _root.level) add ":yshift", yshift); _root.level++; }
Symbol 40 MovieClip [phaser] Frame 7
if (timer == undefined) { timer = 5; } timer = timer - 1; if (timer < 0) { removeMovieClip(""); } _root.level++; targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); gotoAndPlay (6);
Symbol 40 MovieClip [phaser] Frame 8
if (timer == undefined) { timer = 5; soundbeep = new Sound(this); soundbeep.attachSound("lance"); soundbeep.start(0, 0); } timer = timer - 1; if (timer < 0) { removeMovieClip(""); } _root.level++; targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); if (fire == undefined) { fire = 1; _root.attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("../explosion" add _root.level) add ":mytarget", mytarget); Set(("../explosion" add _root.level) add ":xshift", xshift); Set(("../explosion" add _root.level) add ":yshift", yshift); _root.level++; }
Symbol 40 MovieClip [phaser] Frame 9
if (timer == undefined) { timer = 5; } timer = timer - 1; if (timer < 0) { removeMovieClip(""); } _root.level++; targetx = getProperty("../" add mytarget, _x); targety = getProperty("../" add mytarget, _y); if (targetx == undefined) { removeMovieClip(""); } _x = getProperty("../" add myorigin, _x); _y = getProperty("../" add myorigin, _y); a = Math.abs(_x - targetx); b = Math.abs(_y - targety); _xscale = Math.sqrt((a * a) + (b * b)); dx = targetx - _x; dy = targety - _y; dist = Math.sqrt((dx * dx) + (dy * dy)); if (dy < 0) { angle = (Math.PI*2) - Math.acos(dx / dist); } else { angle = Math.acos(dx / dist); } _rotation = ((angle * 180) / Math.PI); gotoAndPlay (8);
Symbol 47 Button
on (release) { if (_root.resources >= 50) { _root.resources = _root.resources - 50; gotoAndPlay (8); } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 52 MovieClip [mine] Frame 1
i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 5); gotoAndPlay (3); } i++; }
Symbol 52 MovieClip [mine] Frame 2
gotoAndPlay (1);
Symbol 52 MovieClip [mine] Frame 7
removeMovieClip("");
Symbol 52 MovieClip [mine] Frame 8
i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 5); } i++; }
Symbol 52 MovieClip [mine] Frame 9
i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 5); } i++; }
Symbol 52 MovieClip [mine] Frame 10
i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 5); } i++; }
Symbol 52 MovieClip [mine] Frame 11
i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 5); } i++; }
Symbol 52 MovieClip [mine] Frame 12
i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 5); } i++; }
Symbol 52 MovieClip [mine] Frame 13
i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 5); } i++; }
Symbol 52 MovieClip [mine] Frame 14
removeMovieClip("");
Symbol 59 MovieClip [phaserpod] Frame 1
if (timer == undefined) { i = 0; while (i <= 30) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 100) and (Math.abs(y1 - y2) < 100)) { timer = 25; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.target = _root.enemyslot[i]; _root.myorigin = myname; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", 1); break; } } i++; } } if (timer != undefined) { timer = timer - 1; setProperty("chargebar", _xscale , 100 - ((timer / 25) * 100)); if (timer < 0) { timer = undefined; setProperty("barback", _alpha , 0); setProperty("chargebar", _alpha , 0); } }
Symbol 64 Button
on (release) { if ((_root.resources >= 150) and (timer == undefined)) { _root.resources = _root.resources - 150; i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { Set(("../" add _root.enemyslot[i]) add ":slow", 2); } i++; } setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); timer = 150; timertot = timer; } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 68 Button
on (release) { if ((_root.resources >= 500) and (timer == undefined)) { _root.resources = _root.resources - 500; i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.target = _root.enemyslot[i]; _root.myorigin = myname; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); } i++; } timer = 300; timertot = timer; } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 73 Button
on (release) { if ((_root.resources >= 500) and (timer == undefined)) { _root.resources = _root.resources - 500; i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 200) and (Math.abs(y1 - y2) < 200)) { setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.target = _root.enemyslot[i]; _root.myorigin = myname; _root.firetractor(); Set(("../" add _root.enemyslot[i]) add ":slow", 100); } } i++; } timer = 200; timertot = timer; } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 78 Button
on (release) { if ((_root.resources >= 800) and (timer == undefined)) { _root.resources = _root.resources - 800; x = _x; y = _y; _root.attachMovie("subspace", "subspace" add _root.level, _root.level); setProperty("../subspace" add _root.level, _x , x); setProperty("../subspace" add _root.level, _y , y); _root.level++; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); timer = 500; timertot = timer; } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 83 Button
on (release) { if ((_root.resources >= 600) and (timer == undefined)) { _root.resources = _root.resources - 600; _root.attachMovie("nebula", "nebula" add _root.level, _root.level); setProperty("../nebula" add _root.level, _x , 150); setProperty("../nebula" add _root.level, _y , random(300) + 50); _root.level++; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); timer = 500; timertot = timer; } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 84 MovieClip [ship] Frame 1
if ((timer == undefined) and (random(10) == 1)) { i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 50) and (Math.abs(y1 - y2) < 50)) { timer = 35; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.target = _root.enemyslot[i]; _root.myorigin = myname; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); break; } } i++; } if (random(20) == 1) { _root.attachMovie("torp", "torp" add _root.level, _root.level); setProperty("../torp" add _root.level, _x , x1); setProperty("../torp" add _root.level, _y , y1); timer = 20; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.level++; } } if (timer != undefined) { timer = timer - 1; setProperty("chargebar", _xscale , 100 - ((timer / timertot) * 100)); if (timer < 0) { timer = undefined; setProperty("barback", _alpha , 0); setProperty("chargebar", _alpha , 0); } }
Instance of Symbol 62 MovieClip in Symbol 84 MovieClip [ship] Frame 1
on (release) { }
Symbol 84 MovieClip [ship] Frame 2
gotoAndPlay(mytype);
Symbol 84 MovieClip [ship] Frame 3
if ((timer == undefined) and (random(10) == 1)) { i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 100) and (Math.abs(y1 - y2) < 100)) { timer = 30; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.target = _root.enemyslot[i]; _root.myorigin = myname; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); break; } } i++; } if (random(20) == 1) { _root.attachMovie("torp", "torp" add _root.level, _root.level); setProperty("../torp" add _root.level, _x , x1); setProperty("../torp" add _root.level, _y , y1); timer = 20; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.level++; } } if (timer != undefined) { timer = timer - 1; setProperty("chargebar", _xscale , 100 - ((timer / timertot) * 100)); if (timer < 0) { timer = undefined; setProperty("barback", _alpha , 0); setProperty("chargebar", _alpha , 0); } }
Symbol 84 MovieClip [ship] Frame 4
gotoAndPlay(mytype);
Symbol 84 MovieClip [ship] Frame 5
if ((timer == undefined) and (random(10) == 1)) { i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 100) and (Math.abs(y1 - y2) < 100)) { timer = 30; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.target = _root.enemyslot[i]; _root.myorigin = myname; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); break; } } i++; } if (random(20) == 1) { _root.attachMovie("torp", "torp" add _root.level, _root.level); setProperty("../torp" add _root.level, _x , x1); setProperty("../torp" add _root.level, _y , y1); timer = 20; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.level++; } } if (timer != undefined) { timer = timer - 1; setProperty("chargebar", _xscale , 100 - ((timer / timertot) * 100)); if (timer < 0) { timer = undefined; setProperty("barback", _alpha , 0); setProperty("chargebar", _alpha , 0); } }
Symbol 84 MovieClip [ship] Frame 6
gotoAndPlay(mytype);
Symbol 84 MovieClip [ship] Frame 7
if ((timer == undefined) and (random(10) == 1)) { i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 100) and (Math.abs(y1 - y2) < 100)) { timer = 10; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.target = _root.enemyslot[i]; _root.myorigin = myname; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); break; } } i++; } if (random(20) == 1) { _root.attachMovie("torp", "torp" add _root.level, _root.level); setProperty("../torp" add _root.level, _x , x1); setProperty("../torp" add _root.level, _y , y1); timer = 10; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.level++; } } if (timer != undefined) { timer = timer - 1; setProperty("chargebar", _xscale , 100 - ((timer / timertot) * 100)); if (timer < 0) { timer = undefined; setProperty("barback", _alpha , 0); setProperty("chargebar", _alpha , 0); } }
Symbol 84 MovieClip [ship] Frame 8
gotoAndPlay(mytype);
Symbol 84 MovieClip [ship] Frame 9
if ((timer == undefined) and (random(10) == 1)) { i = 0; while (i <= _root.totenemies) { if (_root.enemyslot[i] != undefined) { x1 = _x; y1 = _y; x2 = getProperty("../" add _root.enemyslot[i], _x); y2 = getProperty("../" add _root.enemyslot[i], _y); if ((Math.abs(x1 - x2) < 100) and (Math.abs(y1 - y2) < 100)) { timer = 25; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.target = _root.enemyslot[i]; _root.myorigin = myname; _root.firephaser(); Set(("../" add _root.enemyslot[i]) add ":hit", _root.phaserpower); break; } } i++; } if (random(10) == 1) { _root.attachMovie("torp", "torp" add _root.level, _root.level); setProperty("../torp" add _root.level, _x , x1); setProperty("../torp" add _root.level, _y , y1); timer = 5; timertot = timer; setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); _root.level++; } } if (timer != undefined) { timer = timer - 1; setProperty("chargebar", _xscale , 100 - ((timer / timertot) * 100)); if (timer < 0) { timer = undefined; setProperty("barback", _alpha , 0); setProperty("chargebar", _alpha , 0); } }
Symbol 84 MovieClip [ship] Frame 10
gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 1
gotoAndPlay(mytype); phaserpower = _root.phaserpower;
Symbol 117 MovieClip [enemy] Frame 2
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 1) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (mytype == undefined) { mytype = 1; } if (myenergy == undefined) { myenergy = 1; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (1 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 1; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (20 * _root.refinery); _root.nextlevel(); _root.cursor = 1; removeMovieClip(""); } }
Instance of Symbol 87 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 2
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 1) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Instance of Symbol 89 MovieClip "energybar" in Symbol 117 MovieClip [enemy] Frame 2
onClipEvent (enterFrame) { if (timer == undefined) { timer = 0; } if ((timer <= 0) and (_alpha > 0)) { _alpha = 0; } if (timer > 0) { _alpha = 100; timer = timer - 1; } if (myenergy < 0) { myenergy = 0; } _xscale = myenergy; }
Instance of Symbol 58 MovieClip "barback" in Symbol 117 MovieClip [enemy] Frame 2
onClipEvent (enterFrame) { if (timer == undefined) { timer = 0; } if ((timer <= 0) and (_alpha > 0)) { _alpha = 0; } if (timer > 0) { _alpha = 100; timer = timer - 1; } }
Symbol 117 MovieClip [enemy] Frame 3
if (_x < 450) { _x = (_x + (1 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 4
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 3) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 3; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (1.5 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 3; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (50 * _root.refinery); _root.nextlevel(); _root.cursor = 1; removeMovieClip(""); } }
Instance of Symbol 92 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 4
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 3) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 5
if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 6
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 5) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 5; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (1 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 3; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (100 * _root.refinery); _root.nextlevel(); gotoAndPlay (22); } }
Instance of Symbol 95 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 6
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 5) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 7
if (_x < 450) { _x = (_x + (1 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 8
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 10) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 10; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (1 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 9; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (150 * _root.refinery); _root.nextlevel(); gotoAndPlay (22); } }
Instance of Symbol 98 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 8
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 10) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 9
if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 10
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 15) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 15; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (0.8 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 5; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (250 * _root.refinery); _root.nextlevel(); gotoAndPlay (22); } }
Instance of Symbol 101 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 10
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 15) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 11
if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 12
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 10) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 10; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (2 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 7; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (150 * _root.refinery); _root.nextlevel(); gotoAndPlay (22); } }
Instance of Symbol 104 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 12
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 10) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 13
if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 14
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 20) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 20; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (1 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 7; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (250 + _root.refinery); _root.nextlevel(); gotoAndPlay (22); } }
Instance of Symbol 107 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 14
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 20) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 15
if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 16
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 15) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 15; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (1.2 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 5; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (200 * _root.refinery); _root.nextlevel(); gotoAndPlay (22); } }
Instance of Symbol 110 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 16
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 15) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 17
if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 18
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 20) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 20; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (0.8 / slow)); } if (_x >= 450) { if (random(10) == 1) { _root.target = myname; _root.firetype = 7; _root.enemyfire(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (250 * _root.refinery); _root.nextlevel(); gotoAndPlay (22); } }
Instance of Symbol 113 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 18
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 20) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 19
if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 20
if (hit > 0) { myenergy = myenergy - hit; Set("energybar:myenergy", (myenergy / 50) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (slow == undefined) { slow = 1; } if (myenergy == undefined) { myenergy = 50; } Set("enemy:myname", myname); Set("enemy:myenergy", myenergy); if (_x < 450) { _x = (_x + (0.5 / slow)); } if (_x >= 450) { if ((random(50) == 1) and (fire == undefined)) { fire = 1; x1 = _x; y1 = _y; if (y1 <= 150) { _root.target = "station1"; } if ((y1 > 150) and (y1 < 250)) { _root.target = "station2"; } if (y1 >= 250) { _root.target = "station3"; } _root.myorigin = myname; _root.fireassimilate(); } } if (myenergy <= 0) { if (timer == undefined) { timer = 1; } timer = timer - 1; if (timer < 0) { _root.enemyslot[myslot] = undefined; _root.resources = _root.resources + (1000 * _root.refinery); _root.nextlevel(); gotoAndPlay (22); } }
Instance of Symbol 116 MovieClip "enemy" in Symbol 117 MovieClip [enemy] Frame 20
on (release) { if (_root.phaser > 0) { _root.target = myname; _root.myorigin = "station2"; _root.firephaser(); Set("../:myenergy", myenergy - _root.phaserpower); myenergy = myenergy - _root.phaserpower; Set("../energybar:myenergy", (myenergy / 50) * 100); Set("../energybar:timer", 10); Set("../barback:timer", 10); } } on (rollOver) { _root.cursor = 3; } on (rollOut) { _root.cursor = 1; }
Symbol 117 MovieClip [enemy] Frame 21
if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);
Symbol 117 MovieClip [enemy] Frame 22
_root.cursor = 1;
Symbol 117 MovieClip [enemy] Frame 28
removeMovieClip("");
Symbol 123 MovieClip [etorp] Frame 1
soundbeep = new Sound(this); soundbeep.attachSound("torpedo"); soundbeep.start(0, 0); gotoAndPlay(mytype + 1);
Symbol 123 MovieClip [etorp] Frame 2
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } if (this.hitTest("../station1") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); if (_root.extendor == 1) { Set("../station2:hit", 5); } else { Set("../station1:hit", 5); } timer = 2; _root.level++; } if (this.hitTest("../station2") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); Set("../station2:hit", 5); timer = 2; _root.level++; } if (this.hitTest("../station3") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); if (_root.extendor == 1) { Set("../station3:hit", 5); } else { Set("../station1:hit", 5); } timer = 2; _root.level++; } if (timer != undefined) { timer = timer - 1; if (timer < 1) { removeMovieClip(""); } }
Symbol 123 MovieClip [etorp] Frame 3
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);
Symbol 123 MovieClip [etorp] Frame 4
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } if (this.hitTest("../station1") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); Set("../station1:hit", 10); timer = 2; _root.level++; } if (this.hitTest("../station2") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); Set("../station2:hit", 10); timer = 2; _root.level++; } if (this.hitTest("../station3") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); Set("../station3:hit", 10); timer = 2; _root.level++; } if (timer != undefined) { timer = timer - 1; if (timer < 1) { removeMovieClip(""); } }
Symbol 123 MovieClip [etorp] Frame 5
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);
Symbol 123 MovieClip [etorp] Frame 6
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } if (this.hitTest("../station1") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); if (_root.extendor == 1) { Set("../station2:hit", 12); } else { Set("../station1:hit", 12); } timer = 2; _root.level++; } if (this.hitTest("../station2") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); Set("../station2:hit", 12); timer = 2; _root.level++; } if (this.hitTest("../station3") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); if (_root.extendor == 1) { Set("../station3:hit", 12); } else { Set("../station1:hit", 12); } timer = 2; _root.level++; } if (timer != undefined) { timer = timer - 1; if (timer < 1) { removeMovieClip(""); } }
Symbol 123 MovieClip [etorp] Frame 7
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);
Symbol 123 MovieClip [etorp] Frame 8
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } if (this.hitTest("../station1") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); if (_root.extendor == 1) { Set("../station2:hit", 10); } else { Set("../station1:hit", 10); } timer = 2; _root.level++; } if (this.hitTest("../station2") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); Set("../station2:hit", 10); timer = 2; _root.level++; } if (this.hitTest("../station3") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); if (_root.extendor == 1) { Set("../station3:hit", 10); } else { Set("../station1:hit", 10); } timer = 2; _root.level++; } if (timer != undefined) { timer = timer - 1; if (timer < 1) { removeMovieClip(""); } }
Symbol 123 MovieClip [etorp] Frame 9
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);
Symbol 123 MovieClip [etorp] Frame 10
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } if (this.hitTest("../station1") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); if (_root.extendor == 1) { Set("../station2:hit", 8); } else { Set("../station1:hit", 8); } timer = 2; _root.level++; } if (this.hitTest("../station2") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); Set("../station2:hit", 8); timer = 2; _root.level++; } if (this.hitTest("../station3") and (timer == undefined)) { attachMovie("explosionmini", "explosion" add _root.level, _root.level); Set(("explosion" add _root.level) add ":mytarget", 0); if (_root.extendor == 1) { Set("../station3:hit", 8); } else { Set("../station1:hit", 8); } timer = 2; _root.level++; } if (timer != undefined) { timer = timer - 1; if (timer < 1) { removeMovieClip(""); } }
Symbol 123 MovieClip [etorp] Frame 11
if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);
Symbol 125 MovieClip [torp] Frame 1
if (mytype == undefined) { mytype = 1; soundbeep = new Sound(this); soundbeep.attachSound("torpedo"); soundbeep.start(0, 0); } _x = (_x - 10); if (_x < 0) { removeMovieClip(""); } i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 1); removeMovieClip(""); } i++; }
Symbol 125 MovieClip [torp] Frame 2
if (mytype == undefined) { mytype = 1; } _x = (_x - 10); if (_x < 0) { removeMovieClip(""); } gotoAndPlay(mytype);
Symbol 127 MovieClip [stagetext] Frame 1
stagetext = "LEVEL " + _root.wavelevel;
Symbol 127 MovieClip [stagetext] Frame 25
removeMovieClip("");
Symbol 130 MovieClip [subspace] Frame 1
_xscale = (_xscale + 20); _yscale = (_yscale + 20); _x = (_x - 2); _alpha = (_alpha - 0.5); if (_alpha < 0) { removeMovieClip(""); } i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 1); } i++; }
Symbol 130 MovieClip [subspace] Frame 2
_xscale = (_xscale + 20); _yscale = (_yscale + 20); _x = (_x - 2); _alpha = (_alpha - 0.5); if (_alpha < 0) { removeMovieClip(""); }
Symbol 133 MovieClip [target] Frame 1
this._x = _parent._xmouse; this._y = _parent._ymouse;
Symbol 133 MovieClip [target] Frame 2
this._x = _parent._xmouse; this._y = _parent._ymouse; gotoAndPlay(_root.cursor);
Symbol 133 MovieClip [target] Frame 3
this._x = _parent._xmouse; this._y = _parent._ymouse;
Symbol 133 MovieClip [target] Frame 4
this._x = _parent._xmouse; this._y = _parent._ymouse; gotoAndPlay(_root.cursor);
Symbol 140 Button
on (release) { if ((_root.resources >= 2000) and (this._alpha == 100)) { _root.resources = _root.resources - 2000; _root.plasma = 1; setProperty("plasma", _alpha , 0); } }
Symbol 141 Button
on (release) { if ((_root.resources >= 5000) and (this._alpha == 100)) { _root.resources = _root.resources - 5000; _root.pulse = 1; setProperty("pulse", _alpha , 0); } }
Symbol 142 Button
on (release) { if ((_root.resources >= 10000) and (this._alpha == 100)) { _root.resources = _root.resources - 10000; _root.lance = 1; setProperty("lance", _alpha , 0); } }
Symbol 143 Button
on (release) { if (_root.resources > 1000) { _root.resources = _root.resources - 1000; _root.totshields = _root.totshields + 100; } }
Symbol 144 Button
on (release) { if ((_root.resources <= 5000) and (this._alpha == 100)) { _root.phasercharger = 2; _root.resources = _root.resources - 5000; setProperty("phasercharger", _alpha , 0); } }
Symbol 146 Button
on (release) { if ((_root.resources >= 50000) and (this._alpha == 100)) { _root.resources = _root.resources - 50000; _root.extendor = 1; } }
Symbol 147 Button
on (release) { if ((_root.resources >= 100000) and (this._alpha == 100)) { _root.resources = _root.resources - 100000; _root.refinery = 4; } }
Symbol 148 Button
on (release) { if ((_alpha == 100) and (_root.resources >= 15000)) { _root.resources = _root.resources - 15000; _root.akira = 1; } }
Symbol 149 Button
on (release) { if ((_alpha == 100) and (_root.resources >= 20000)) { _root.resources = _root.resources - 20000; _root.sov = 1; } }
Symbol 150 Button
on (release) { if ((_alpha == 100) and (_root.resources >= 30000)) { _root.resources = _root.resources - 30000; _root.auto = 1; } }
Symbol 154 Button
on (release) { _root.phaserpower = 1; _root.totphaser = 5; _root.phaserrecharge = 30; }
Symbol 155 Button
on (release) { if (plasma._alpha == 0) { _root.phaserpower = 2; _root.totphaser = 6; _root.phaserrecharge = 40; } }
Symbol 156 Button
on (release) { _root.phaserpower = 3; _root.totphaser = 15; _root.phaserrecharge = 50; }
Symbol 157 Button
on (release) { _root.phaserpower = 10; _root.totphaser = 4; _root.phaserrecharge = 60; }
Symbol 158 Button
on (release) { if ((_alpha == 100) and (_root.resources >= 50000)) { _root.resources = _root.resources - 50000; _root.rebuild1(); } }
Symbol 159 Button
on (release) { if ((_alpha == 100) and (_root.resources >= 50000)) { _root.resources = _root.resources - 50000; _root.rebuild2(); } }
Symbol 160 MovieClip [menu] Frame 1
if (_root.auto == 1) { setProperty("auto", _alpha , 0); } if (_root.akira == 1) { setProperty("akira", _alpha , 0); } if (_root.sov == 1) { setProperty("sov", _alpha , 0); } if (_root.s1 == 1) { setProperty("s1", _alpha , 20); } if (_root.s2 == 1) { setProperty("s2", _alpha , 20); } if (_root.plasma == 1) { setProperty("plasma", _alpha , 0); } if (_root.pulse == 1) { setProperty("pulse", _alpha , 0); } if (_root.lance == 1) { setProperty("lance", _alpha , 0); } if (_root.phasercharger == 2) { setProperty("phasercharger", _alpha , 0); } setProperty("ex", _alpha , 100); setProperty("eplasma", _alpha , 100); setProperty("epulse", _alpha , 100); setProperty("elance", _alpha , 100); if (_root.phaserpower == 1) { setProperty("ex", _alpha , 20); } if (_root.phaserpower == 3) { setProperty("eplasma", _alpha , 20); } if (_root.phaserpower == 5) { setProperty("epulse", _alpha , 20); } if (_root.phaserpower == 10) { setProperty("elance", _alpha , 20); } if (_root.extendor == 1) { setProperty("extendor", _alpha , 0); } if (_root.refinery == 4) { setProperty("refinery", _alpha , 0); }
Symbol 167 MovieClip [nebula] Frame 1
if (fade == undefined) { fade = 1; _alpha = 0; } if (fade == 1) { _alpha = (_alpha + 4); } if (_alpha > 98) { fade = 0; } if (fade == 0) { _alpha = (_alpha - 4); } _xscale = (_xscale + 10); _yscale = (_yscale + 10); if (_alpha < 0) { removeMovieClip(""); }
Instance of Symbol 163 MovieClip in Symbol 167 MovieClip [nebula] Frame 1
onClipEvent (enterFrame) { _rotation = (_rotation + 10); }
Instance of Symbol 166 MovieClip in Symbol 167 MovieClip [nebula] Frame 1
onClipEvent (enterFrame) { _rotation = (_rotation - 10); }
Symbol 167 MovieClip [nebula] Frame 2
i = 0; while (i <= _root.totenemies) { if (this.hitTest("../" add _root.enemyslot[i]) and (_root.enemyslot[i] != undefined)) { Set(("../" add _root.enemyslot[i]) add ":hit", 1); } i++; }
Symbol 177 Button
on (release) { if ((_root.station2timer == undefined) and (_root.resources >= 300)) { _root.resources = _root.resources - 300; _root.station2timer = 30; _root.station2timertot = 30; _root.station2type = 1; setProperty("chargebar", _xscale , 0); setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); } }
Symbol 181 Button
on (release) { if ((_root.station2timer == undefined) and (_root.resources >= 1000)) { _root.resources = _root.resources - 1000; _root.station2timer = 70; _root.station2timertot = 70; _root.station2type = 3; setProperty("chargebar", _xscale , 0); setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); } }
Symbol 185 Button
on (release) { if ((_root.station2timer == undefined) and (_root.resources >= 3000)) { _root.resources = _root.resources - 3000; _root.station2timer = 150; _root.station2timertot = 150; _root.station2type = 4; setProperty("chargebar", _xscale , 0); setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); } }
Symbol 189 Button
on (release) { if ((_root.station2timer == undefined) and (_root.resources >= 1000)) { _root.resources = _root.resources - 1000; _root.station2timer = 50; _root.station2timertot = 50; _root.station2type = 2; setProperty("chargebar", _xscale , 0); setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); } }
Symbol 193 Button
on (release) { if ((_root.station2timer == undefined) and (_root.resources >= 500)) { _root.resources = _root.resources - 500; _root.station2timer = 50; _root.station2timertot = 50; _root.station2type = 5; setProperty("chargebar", _xscale , 0); setProperty("barback", _alpha , 100); setProperty("chargebar", _alpha , 100); } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 200 MovieClip [station2] Frame 1
if (_root.station2timer != undefined) { _root.station2timer = _root.station2timer - 1; setProperty("chargebar", _xscale , 100 - ((_root.station2timer / _root.station2timertot) * 100)); if (_root.station2timer < 0) { if (_root.station2type == 1) { _root.createmine(); } if (_root.station2type == 2) { _root.shiptype = 1; _root.createship(); } if (_root.station2type == 3) { _root.createphaserpod(); } if (_root.station2type == 4) { _root.shiptype = 5; _root.createship(); } if (_root.station2type == 5) { _root.shields = _root.totshields; _root.updatebars(); } _root.station2timer = undefined; setProperty("barback", _alpha , 0); setProperty("chargebar", _alpha , 0); } } if (_root.shields < 0) { gotoAndPlay (3); }
Instance of Symbol 172 MovieClip in Symbol 200 MovieClip [station2] Frame 1
onClipEvent (enterFrame) { if (_root.refinery == 4) { _alpha = 100; } }
Instance of Symbol 173 MovieClip in Symbol 200 MovieClip [station2] Frame 1
onClipEvent (enterFrame) { if (_root.phasercharger == 2) { _alpha = 100; } }
Symbol 200 MovieClip [station2] Frame 2
gotoAndPlay (1);
Symbol 200 MovieClip [station2] Frame 10
_root.dead();
Symbol 203 Button
on (release) { gotoAndPlay (3); }
Symbol 217 Button
on (release) { wavelevel = 1; phaserrecharge = 30; s1 = 1; s2 = 1; sov = 1; auto = 1; akira = 1; level2 = 10000; totphaser = 5; phaserpower = 1; resources = 5000; totshields = 100; phasercharger = 1; refinery = 4; gotoAndPlay (4); }
Symbol 229 Button
on (release) { wavelevel = 1; phaserrecharge = 30; s1 = 1; s2 = 1; sov = 0; auto = 0; akira = 0; level2 = 10000; totphaser = 5; phaserpower = 1; resources = 0; totshields = 100; phasercharger = 1; refinery = 1; gotoAndPlay (4); }
Symbol 231 Button
on (release) { wavelevel = 1; phaserrecharge = 30; s1 = 1; s2 = 1; sov = 0; auto = 0; akira = 0; level2 = 10000; totphaser = 5; phaserpower = 1; resources = 999999 /* 0x0F423F */; totshields = 1000; phasercharger = 1; refinery = 4; gotoAndPlay (4); }
Symbol 240 Button
on (release) { if ((_root.station1timer == undefined) and (_root.resources >= 10000)) { _root.resources = _root.resources - 10000; _root.station1timer = 200; _root.station1timertot = 200; _root.station1type = 1; setProperty("chargebar", _xscale , 0); setProperty("barback2", _alpha , 100); setProperty("chargebar", _alpha , 100); } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 244 Button
on (release) { if ((_root.station1timer == undefined) and (_root.resources >= 8000)) { _root.resources = _root.resources - 8000; _root.station1timer = 150; _root.station1timertot = 150; _root.station1type = 2; setProperty("chargebar", _xscale , 0); setProperty("barback2", _alpha , 100); setProperty("chargebar", _alpha , 100); } } on (rollOver) { setProperty("button2", _alpha , 70); } on (rollOut) { setProperty("button2", _alpha , 0); }
Symbol 245 MovieClip Frame 1
if (_root.station1timer != undefined) { _root.station1timer = _root.station1timer - 1; setProperty("chargebar", _xscale , 100 - ((_root.station1timer / _root.station1timertot) * 100)); if (_root.station1timer < 0) { if (_root.station1type == 1) { _root.shiptype = 7; _root.createship(); } if (_root.station1type == 2) { _root.shiptype = 3; _root.createship(); } _root.station1timer = undefined; setProperty("barback2", _alpha , 0); setProperty("chargebar", _alpha , 0); } } if (myenergy == undefined) { myenergy = 50; } if (hit > 0) { myenergy = myenergy - 1; setProperty("energybar", _xscale , (myenergy / 50) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (myenergy < 0) { gotoAndPlay (3); }
Instance of Symbol 89 MovieClip "energybar" in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) { if (timer == undefined) { timer = 0; } if ((timer <= 0) and (_alpha > 0)) { _alpha = 0; } if (timer > 0) { _alpha = 100; timer = timer - 1; } }
Instance of Symbol 58 MovieClip "barback" in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) { if (timer == undefined) { timer = 0; } if ((timer <= 0) and (_alpha > 0)) { _alpha = 0; } if (timer > 0) { _alpha = 100; timer = timer - 1; } }
Instance of Symbol 236 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.extendor == 1) { _alpha = 20; } }
Instance of Symbol 173 MovieClip in Symbol 245 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.sov == 1) { _alpha = 100; } }
Symbol 245 MovieClip Frame 2
gotoAndPlay (1);
Symbol 245 MovieClip Frame 3
_root.s1 = 0;
Symbol 245 MovieClip Frame 9
if (_root.s1 == 1) { gotoAndPlay (1); }
Symbol 245 MovieClip Frame 10
gotoAndPlay (9);
Symbol 249 Button
on (release) { if ((_root.station3timer == undefined) and (_root.resources >= 5000)) { _root.resources = _root.resources - 5000; _root.station3timer = 125; _root.station3timertot = 125; _root.station3type = 1; setProperty("chargebar", _xscale , 0); setProperty("barback2", _alpha , 100); setProperty("chargebar", _alpha , 100); } } on (rollOver) { setProperty("button", _alpha , 70); } on (rollOut) { setProperty("button", _alpha , 0); }
Symbol 250 MovieClip Frame 1
if (myenergy == undefined) { myenergy = 50; } if (hit > 0) { myenergy = myenergy - 1; setProperty("energybar", _xscale , (myenergy / 50) * 100); Set("energybar:timer", 10); Set("barback:timer", 10); hit = 0; } if (myenergy < 0) { gotoAndPlay (3); } if (_root.station3timer != undefined) { _root.station3timer = _root.station3timer - 1; setProperty("chargebar", _xscale , 100 - ((_root.station3timer / _root.station3timertot) * 100)); if (_root.station3timer < 0) { if (_root.station3type == 1) { _root.shiptype = 9; _root.createship(); } _root.station3timer = undefined; setProperty("barback2", _alpha , 0); setProperty("chargebar", _alpha , 0); } }
Instance of Symbol 89 MovieClip "energybar" in Symbol 250 MovieClip Frame 1
onClipEvent (enterFrame) { if (timer == undefined) { timer = 0; } if ((timer <= 0) and (_alpha > 0)) { _alpha = 0; } if (timer > 0) { _alpha = 100; timer = timer - 1; } }
Instance of Symbol 58 MovieClip "barback" in Symbol 250 MovieClip Frame 1
onClipEvent (enterFrame) { if (timer == undefined) { timer = 0; } if ((timer <= 0) and (_alpha > 0)) { _alpha = 0; } if (timer > 0) { _alpha = 100; timer = timer - 1; } }
Instance of Symbol 173 MovieClip in Symbol 250 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.akira == 1) { _alpha = 100; } }
Instance of Symbol 236 MovieClip in Symbol 250 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.extendor == 1) { _alpha = 20; } }
Symbol 250 MovieClip Frame 2
gotoAndPlay (1);
Symbol 250 MovieClip Frame 10
gotoAndPlay (9);
Symbol 260 MovieClip Frame 1
if (mytype == undefined) { mytype = 1; } gotoAndPlay(mytype);
Symbol 260 MovieClip Frame 2
gotoAndPlay(mytype);
Symbol 266 Button
on (release) { removeMovieClip("menu"); gotoAndPlay (4); wave = 100; }

Library Items

Symbol 1 Sound [music]
Symbol 2 Sound [lance]
Symbol 3 Sound [torpedo]
Symbol 4 Sound [pulse]
Symbol 5 Sound [phas]
Symbol 6 Sound [build]
Symbol 7 Sound [armor]
Symbol 8 Sound [cheers]
Symbol 9 BitmapUsed by:10 22 48 194
Symbol 10 GraphicUses:9Used by:21 52 117 245 250
Symbol 11 BitmapUsed by:12 23 49 195
Symbol 12 GraphicUses:11Used by:21 52 117 245 250
Symbol 13 BitmapUsed by:14 196
Symbol 14 GraphicUses:13Used by:21 52 117 245 250
Symbol 15 BitmapUsed by:16 50 197
Symbol 16 GraphicUses:15Used by:21 52 117 245 250
Symbol 17 BitmapUsed by:18 198
Symbol 18 GraphicUses:17Used by:21 52 117 245 250
Symbol 19 BitmapUsed by:20 24 51 199
Symbol 20 GraphicUses:19Used by:21 52 117 245 250
Symbol 21 MovieClip [explosion]Uses:10 12 14 16 18 20
Symbol 22 GraphicUses:9Used by:25
Symbol 23 GraphicUses:11Used by:25
Symbol 24 GraphicUses:19Used by:25
Symbol 25 MovieClip [explosionmini]Uses:22 23 24
Symbol 26 GraphicUsed by:28
Symbol 27 GraphicUsed by:28
Symbol 28 MovieClip [assimilate]Uses:26 27
Symbol 29 GraphicUsed by:31
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClip [tractor]Uses:29 30
Symbol 32 GraphicUsed by:40
Symbol 33 GraphicUsed by:40
Symbol 34 GraphicUsed by:40
Symbol 35 GraphicUsed by:40
Symbol 36 GraphicUsed by:40
Symbol 37 GraphicUsed by:40
Symbol 38 GraphicUsed by:40
Symbol 39 GraphicUsed by:40
Symbol 40 MovieClip [phaser]Uses:32 33 34 35 36 37 38 39
Symbol 41 BitmapUsed by:42 224
Symbol 42 GraphicUses:41Used by:52
Symbol 43 GraphicUsed by:47 64 68 73 78 83
Symbol 44 GraphicUsed by:47 64 68 73 78 83
Symbol 45 FontUsed by:46 63 67 72 77 82 126 136 138 151 152 176 180 184 188 192 216 219 222 225 226 227 228 230 239 243 248 253 254 255 256 257 258 262 264 267 268 269 270 271
Symbol 46 EditableTextUses:45Used by:47
Symbol 47 ButtonUses:43 44 46Used by:52
Symbol 48 GraphicUses:9Used by:52
Symbol 49 GraphicUses:11Used by:52
Symbol 50 GraphicUses:15Used by:52
Symbol 51 GraphicUses:19Used by:52
Symbol 52 MovieClip [mine]Uses:42 47 48 49 50 51 10 12 14 16 18 20
Symbol 53 BitmapUsed by:54 224
Symbol 54 GraphicUses:53Used by:59 173
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:59 84 200 245 250
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:59 84 117 200 245 250
Symbol 59 MovieClip [phaserpod]Uses:54 56 58
Symbol 60 BitmapUsed by:61 218
Symbol 61 GraphicUses:60Used by:62
Symbol 62 MovieClipUses:61Used by:84
Symbol 63 EditableTextUses:45Used by:64
Symbol 64 ButtonUses:43 44 63Used by:84
Symbol 65 BitmapUsed by:66 218
Symbol 66 GraphicUses:65Used by:84
Symbol 67 EditableTextUses:45Used by:68
Symbol 68 ButtonUses:43 44 67Used by:84
Symbol 69 BitmapUsed by:70 218
Symbol 70 GraphicUses:69Used by:71
Symbol 71 MovieClipUses:70Used by:84
Symbol 72 EditableTextUses:45Used by:73
Symbol 73 ButtonUses:43 44 72Used by:84
Symbol 74 BitmapUsed by:75 218
Symbol 75 GraphicUses:74Used by:76
Symbol 76 MovieClipUses:75Used by:84
Symbol 77 EditableTextUses:45Used by:78
Symbol 78 ButtonUses:43 44 77Used by:84
Symbol 79 BitmapUsed by:80 218
Symbol 80 GraphicUses:79Used by:81
Symbol 81 MovieClipUses:80Used by:84
Symbol 82 EditableTextUses:45Used by:83
Symbol 83 ButtonUses:43 44 82Used by:84
Symbol 84 MovieClip [ship]Uses:62 64 56 58 66 68 71 73 76 78 81 83
Symbol 85 BitmapUsed by:86
Symbol 86 GraphicUses:85Used by:87
Symbol 87 MovieClipUses:86Used by:117
Symbol 88 GraphicUsed by:89 251 260
Symbol 89 MovieClipUses:88Used by:117 245 250
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:92
Symbol 92 MovieClipUses:91Used by:117
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:95
Symbol 95 MovieClipUses:94Used by:117
Symbol 96 BitmapUsed by:97
Symbol 97 GraphicUses:96Used by:98
Symbol 98 MovieClipUses:97Used by:117
Symbol 99 BitmapUsed by:100
Symbol 100 GraphicUses:99Used by:101
Symbol 101 MovieClipUses:100Used by:117
Symbol 102 BitmapUsed by:103
Symbol 103 GraphicUses:102Used by:104
Symbol 104 MovieClipUses:103Used by:117
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:107
Symbol 107 MovieClipUses:106Used by:117
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108Used by:110
Symbol 110 MovieClipUses:109Used by:117
Symbol 111 BitmapUsed by:112
Symbol 112 GraphicUses:111Used by:113
Symbol 113 MovieClipUses:112Used by:117
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:116
Symbol 116 MovieClipUses:115Used by:117
Symbol 117 MovieClip [enemy]Uses:87 89 58 92 95 98 101 104 107 110 113 116 10 12 14 16 18 20
Symbol 118 GraphicUsed by:123
Symbol 119 GraphicUsed by:123
Symbol 120 GraphicUsed by:123
Symbol 121 GraphicUsed by:123
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClip [etorp]Uses:118 119 120 121 122
Symbol 124 GraphicUsed by:125
Symbol 125 MovieClip [torp]Uses:124
Symbol 126 EditableTextUses:45Used by:127
Symbol 127 MovieClip [stagetext]Uses:126
Symbol 128 BitmapUsed by:129
Symbol 129 GraphicUses:128Used by:130
Symbol 130 MovieClip [subspace]Uses:129
Symbol 131 GraphicUsed by:133
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClip [target]Uses:131 132
Symbol 134 GraphicUsed by:135
Symbol 135 ButtonUses:134Used by:160
Symbol 136 TextUses:45Used by:160
Symbol 137 GraphicUsed by:140 141 142 143 144 145 146 147 148 149 150 154 155 156 157 158 159
Symbol 138 TextUses:45Used by:140 141 142 143 144 145 146 147 148 149 150 158 159
Symbol 139 GraphicUsed by:140 141 142 143 144 145 146 147 148 149 150 158 159
Symbol 140 ButtonUses:137 138 139Used by:160
Symbol 141 ButtonUses:137 138 139Used by:160
Symbol 142 ButtonUses:137 138 139Used by:160
Symbol 143 ButtonUses:137 138 139Used by:160
Symbol 144 ButtonUses:137 138 139Used by:160
Symbol 145 ButtonUses:137 138 139Used by:160
Symbol 146 ButtonUses:137 138 139Used by:160
Symbol 147 ButtonUses:137 138 139Used by:160
Symbol 148 ButtonUses:137 138 139Used by:160
Symbol 149 ButtonUses:137 138 139Used by:160
Symbol 150 ButtonUses:137 138 139Used by:160
Symbol 151 TextUses:45Used by:160
Symbol 152 TextUses:45Used by:154 155 156 157
Symbol 153 GraphicUsed by:154 155 156 157
Symbol 154 ButtonUses:137 152 153Used by:160
Symbol 155 ButtonUses:137 152 153Used by:160
Symbol 156 ButtonUses:137 152 153Used by:160
Symbol 157 ButtonUses:137 152 153Used by:160
Symbol 158 ButtonUses:137 138 139Used by:160
Symbol 159 ButtonUses:137 138 139Used by:160
Symbol 160 MovieClip [menu]Uses:135 136 140 141 142 143 144 145 146 147 148 149 150 151 154 155 156 157 158 159
Symbol 161 BitmapUsed by:162
Symbol 162 GraphicUses:161Used by:163
Symbol 163 MovieClipUses:162Used by:167
Symbol 164 BitmapUsed by:165
Symbol 165 GraphicUses:164Used by:166
Symbol 166 MovieClipUses:165Used by:167
Symbol 167 MovieClip [nebula]Uses:163 166
Symbol 168 BitmapUsed by:169 197 224
Symbol 169 GraphicUses:168Used by:200
Symbol 170 BitmapUsed by:171
Symbol 171 GraphicUses:170Used by:172
Symbol 172 MovieClipUses:171Used by:200
Symbol 173 MovieClipUses:54Used by:200 245 250
Symbol 174 GraphicUsed by:177
Symbol 175 GraphicUsed by:177
Symbol 176 EditableTextUses:45Used by:177
Symbol 177 ButtonUses:174 175 176Used by:200
Symbol 178 GraphicUsed by:181
Symbol 179 GraphicUsed by:181
Symbol 180 EditableTextUses:45Used by:181
Symbol 181 ButtonUses:178 179 180Used by:200
Symbol 182 GraphicUsed by:185
Symbol 183 GraphicUsed by:185
Symbol 184 EditableTextUses:45Used by:185
Symbol 185 ButtonUses:182 183 184Used by:200
Symbol 186 GraphicUsed by:189
Symbol 187 GraphicUsed by:189
Symbol 188 EditableTextUses:45Used by:189
Symbol 189 ButtonUses:186 187 188Used by:200
Symbol 190 GraphicUsed by:193
Symbol 191 GraphicUsed by:193
Symbol 192 EditableTextUses:45Used by:193
Symbol 193 ButtonUses:190 191 192Used by:200
Symbol 194 GraphicUses:9Used by:200
Symbol 195 GraphicUses:11Used by:200
Symbol 196 GraphicUses:13Used by:200
Symbol 197 GraphicUses:15 168Used by:200
Symbol 198 GraphicUses:17Used by:200
Symbol 199 GraphicUses:19Used by:200
Symbol 200 MovieClip [station2]Uses:169 172 173 177 181 185 189 193 56 58 194 195 196 197 198 199Used by:Timeline
Symbol 201 GraphicUsed by:213  Timeline
Symbol 202 GraphicUsed by:203
Symbol 203 ButtonUses:202Used by:Timeline
Symbol 204 FontUsed by:205
Symbol 205 TextUses:204Used by:Timeline
Symbol 206 FontUsed by:207
Symbol 207 TextUses:206Used by:208
Symbol 208 MovieClipUses:207Used by:Timeline
Symbol 209 FontUsed by:210 214
Symbol 210 TextUses:209Used by:Timeline
Symbol 211 BitmapUsed by:212
Symbol 212 GraphicUses:211Used by:Timeline
Symbol 213 MovieClipUses:201Used by:Timeline
Symbol 214 TextUses:209Used by:Timeline
Symbol 215 GraphicUsed by:217 229 231
Symbol 216 TextUses:45Used by:217 231
Symbol 217 ButtonUses:215 216Used by:Timeline
Symbol 218 GraphicUses:65 74 79 69 60Used by:Timeline
Symbol 219 TextUses:45Used by:Timeline
Symbol 220 BitmapUsed by:221 234
Symbol 221 GraphicUses:220Used by:Timeline
Symbol 222 TextUses:45Used by:Timeline
Symbol 223 BitmapUsed by:224 246
Symbol 224 GraphicUses:53 41 168 223Used by:Timeline
Symbol 225 TextUses:45Used by:Timeline
Symbol 226 TextUses:45Used by:Timeline
Symbol 227 TextUses:45Used by:Timeline
Symbol 228 TextUses:45Used by:229
Symbol 229 ButtonUses:215 228Used by:Timeline
Symbol 230 TextUses:45Used by:Timeline
Symbol 231 ButtonUses:215 216Used by:Timeline
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:Timeline
Symbol 234 GraphicUses:220Used by:245
Symbol 235 GraphicUsed by:236
Symbol 236 MovieClipUses:235Used by:245 250
Symbol 237 GraphicUsed by:240 249
Symbol 238 GraphicUsed by:240
Symbol 239 EditableTextUses:45Used by:240
Symbol 240 ButtonUses:237 238 239Used by:245
Symbol 241 GraphicUsed by:244
Symbol 242 GraphicUsed by:244
Symbol 243 EditableTextUses:45Used by:244
Symbol 244 ButtonUses:241 242 243Used by:245
Symbol 245 MovieClipUses:234 89 58 236 240 244 56 173 10 12 14 16 18 20Used by:Timeline
Symbol 246 GraphicUses:223Used by:250
Symbol 247 GraphicUsed by:249
Symbol 248 EditableTextUses:45Used by:249
Symbol 249 ButtonUses:237 247 248Used by:250
Symbol 250 MovieClipUses:246 249 89 58 56 173 236 10 12 14 16 18 20Used by:Timeline
Symbol 251 MovieClipUses:88Used by:Timeline
Symbol 252 GraphicUsed by:Timeline
Symbol 253 TextUses:45Used by:Timeline
Symbol 254 TextUses:45Used by:Timeline
Symbol 255 TextUses:45Used by:Timeline
Symbol 256 EditableTextUses:45Used by:Timeline
Symbol 257 EditableTextUses:45Used by:Timeline
Symbol 258 EditableTextUses:45Used by:Timeline
Symbol 259 GraphicUsed by:260 261
Symbol 260 MovieClipUses:259 88Used by:Timeline
Symbol 261 ButtonUses:259Used by:Timeline
Symbol 262 EditableTextUses:45Used by:Timeline
Symbol 263 GraphicUsed by:266
Symbol 264 TextUses:45Used by:266
Symbol 265 GraphicUsed by:266
Symbol 266 ButtonUses:263 264 265Used by:Timeline
Symbol 267 TextUses:45Used by:Timeline
Symbol 268 EditableTextUses:45Used by:Timeline
Symbol 269 TextUses:45Used by:Timeline
Symbol 270 EditableTextUses:45Used by:Timeline
Symbol 271 TextUses:45Used by:Timeline

Instance Names

"percentloadedbox"Frame 1Symbol 213 MovieClip
"station1"Frame 4Symbol 245 MovieClip
"station2"Frame 4Symbol 200 MovieClip [station2]
"station3"Frame 4Symbol 250 MovieClip
"wave"Frame 4Symbol 251 MovieClip
"phaserbar"Frame 4Symbol 260 MovieClip
"shieldsbar"Frame 4Symbol 261 Button
"button"Symbol 52 MovieClip [mine] Frame 1Symbol 47 Button
"chargebar"Symbol 59 MovieClip [phaserpod] Frame 1Symbol 56 MovieClip
"barback"Symbol 59 MovieClip [phaserpod] Frame 1Symbol 58 MovieClip
"button"Symbol 84 MovieClip [ship] Frame 1Symbol 64 Button
"chargebar"Symbol 84 MovieClip [ship] Frame 1Symbol 56 MovieClip
"barback"Symbol 84 MovieClip [ship] Frame 1Symbol 58 MovieClip
"button"Symbol 84 MovieClip [ship] Frame 3Symbol 68 Button
"button"Symbol 84 MovieClip [ship] Frame 5Symbol 73 Button
"button"Symbol 84 MovieClip [ship] Frame 7Symbol 78 Button
"button"Symbol 84 MovieClip [ship] Frame 9Symbol 83 Button
"enemy"Symbol 117 MovieClip [enemy] Frame 2Symbol 87 MovieClip
"energybar"Symbol 117 MovieClip [enemy] Frame 2Symbol 89 MovieClip
"barback"Symbol 117 MovieClip [enemy] Frame 2Symbol 58 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 4Symbol 92 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 6Symbol 95 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 8Symbol 98 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 10Symbol 101 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 12Symbol 104 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 14Symbol 107 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 16Symbol 110 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 18Symbol 113 MovieClip
"enemy"Symbol 117 MovieClip [enemy] Frame 20Symbol 116 MovieClip
"plasma"Symbol 160 MovieClip [menu] Frame 1Symbol 140 Button
"pulse"Symbol 160 MovieClip [menu] Frame 1Symbol 141 Button
"lance"Symbol 160 MovieClip [menu] Frame 1Symbol 142 Button
"phasercharger"Symbol 160 MovieClip [menu] Frame 1Symbol 144 Button
"extendor"Symbol 160 MovieClip [menu] Frame 1Symbol 146 Button
"refinery"Symbol 160 MovieClip [menu] Frame 1Symbol 147 Button
"akira"Symbol 160 MovieClip [menu] Frame 1Symbol 148 Button
"sov"Symbol 160 MovieClip [menu] Frame 1Symbol 149 Button
"auto"Symbol 160 MovieClip [menu] Frame 1Symbol 150 Button
"ex"Symbol 160 MovieClip [menu] Frame 1Symbol 154 Button
"eplasma"Symbol 160 MovieClip [menu] Frame 1Symbol 155 Button
"epulse"Symbol 160 MovieClip [menu] Frame 1Symbol 156 Button
"elance"Symbol 160 MovieClip [menu] Frame 1Symbol 157 Button
"s1"Symbol 160 MovieClip [menu] Frame 1Symbol 158 Button
"s2"Symbol 160 MovieClip [menu] Frame 1Symbol 159 Button
"button"Symbol 200 MovieClip [station2] Frame 1Symbol 193 Button
"chargebar"Symbol 200 MovieClip [station2] Frame 1Symbol 56 MovieClip
"barback"Symbol 200 MovieClip [station2] Frame 1Symbol 58 MovieClip
"energybar"Symbol 245 MovieClip Frame 1Symbol 89 MovieClip
"barback"Symbol 245 MovieClip Frame 1Symbol 58 MovieClip
"button"Symbol 245 MovieClip Frame 1Symbol 240 Button
"button2"Symbol 245 MovieClip Frame 1Symbol 244 Button
"chargebar"Symbol 245 MovieClip Frame 1Symbol 56 MovieClip
"barback2"Symbol 245 MovieClip Frame 1Symbol 58 MovieClip
"button"Symbol 250 MovieClip Frame 1Symbol 249 Button
"energybar"Symbol 250 MovieClip Frame 1Symbol 89 MovieClip
"barback"Symbol 250 MovieClip Frame 1Symbol 58 MovieClip
"chargebar"Symbol 250 MovieClip Frame 1Symbol 56 MovieClip
"barback2"Symbol 250 MovieClip Frame 1Symbol 58 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "music"
ExportAssets (56)Timeline Frame 1Symbol 2 as "lance"
ExportAssets (56)Timeline Frame 1Symbol 3 as "torpedo"
ExportAssets (56)Timeline Frame 1Symbol 4 as "pulse"
ExportAssets (56)Timeline Frame 1Symbol 5 as "phas"
ExportAssets (56)Timeline Frame 1Symbol 6 as "build"
ExportAssets (56)Timeline Frame 1Symbol 7 as "armor"
ExportAssets (56)Timeline Frame 1Symbol 8 as "cheers"
ExportAssets (56)Timeline Frame 1Symbol 21 as "explosion"
ExportAssets (56)Timeline Frame 1Symbol 25 as "explosionmini"
ExportAssets (56)Timeline Frame 1Symbol 28 as "assimilate"
ExportAssets (56)Timeline Frame 1Symbol 31 as "tractor"
ExportAssets (56)Timeline Frame 1Symbol 40 as "phaser"
ExportAssets (56)Timeline Frame 1Symbol 52 as "mine"
ExportAssets (56)Timeline Frame 1Symbol 59 as "phaserpod"
ExportAssets (56)Timeline Frame 1Symbol 84 as "ship"
ExportAssets (56)Timeline Frame 1Symbol 117 as "enemy"
ExportAssets (56)Timeline Frame 1Symbol 123 as "etorp"
ExportAssets (56)Timeline Frame 1Symbol 125 as "torp"
ExportAssets (56)Timeline Frame 1Symbol 127 as "stagetext"
ExportAssets (56)Timeline Frame 1Symbol 130 as "subspace"
ExportAssets (56)Timeline Frame 1Symbol 133 as "target"
ExportAssets (56)Timeline Frame 1Symbol 160 as "menu"
ExportAssets (56)Timeline Frame 1Symbol 167 as "nebula"
ExportAssets (56)Timeline Frame 1Symbol 200 as "station2"
ExportAssets (56)Timeline Frame 4Symbol 200 as "station2"

Dynamic Text Variables

stagetextSymbol 126 EditableText"LEVEL 0"
shieldsnumSymbol 256 EditableText"(100/100)"
phasernumSymbol 257 EditableText"(5)"
resourcesSymbol 258 EditableText""
phasertypeSymbol 262 EditableText"Type X"
nextlevelSymbol 268 EditableText"LEVEL 0"
resourcesSymbol 270 EditableText"0 "




http://swfchan.com/2/9237/info.shtml
Created: 10/6 -2019 03:57:50 Last modified: 10/6 -2019 03:57:50 Server time: 05/05 -2024 13:25:23