STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #9237 |
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 2if (_root.percentLoaded == 100) { gotoAndPlay (3); } else { gotoAndPlay (1); }Frame 3stop();Frame 4function 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 4onClipEvent (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 4onClipEvent (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 4onClipEvent (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 5stop(); stopAllSounds(); attachMovie("menu", "menu", level2); setProperty("menu", _x , 325); setProperty("menu", _y , 200); level2++; _root.wavelevel++; nextlevel = "LEVEL " + _root.wavelevel;Frame 6stopAllSounds(); i = 0; while (i < 99999) { removeMovieClip("enemy" add i); removeMovieClip("ship" add i); removeMovieClip("mine" add i); removeMovieClip("phaserpod" add i); i++; }Frame 25gotAndPlay("menu", 1);Symbol 21 MovieClip [explosion] Frame 7removeMovieClip("");Symbol 25 MovieClip [explosionmini] Frame 1if (mytarget == 0) { _x = 0; _y = 0; } else { _x = getProperty("../" add mytarget, _x); _y = getProperty("../" add mytarget, _y); }Symbol 25 MovieClip [explosionmini] Frame 2if (mytarget == 0) { _x = 0; _y = 0; } else { _x = getProperty("../" add mytarget, _x); _y = getProperty("../" add mytarget, _y); }Symbol 25 MovieClip [explosionmini] Frame 3if (mytarget == 0) { _x = 0; _y = 0; } else { _x = getProperty("../" add mytarget, _x); _y = getProperty("../" add mytarget, _y); }Symbol 25 MovieClip [explosionmini] Frame 4removeMovieClip("");Symbol 28 MovieClip [assimilate] Frame 1targetx = 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 2targetx = 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 1targetx = 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 2targetx = 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 1if (_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 2if (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 3if (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 4if (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 5if (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 6if (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 7if (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 8if (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 9if (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 Buttonon (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 1i = 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 2gotoAndPlay (1);Symbol 52 MovieClip [mine] Frame 7removeMovieClip("");Symbol 52 MovieClip [mine] Frame 8i = 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 9i = 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 10i = 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 11i = 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 12i = 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 13i = 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 14removeMovieClip("");Symbol 59 MovieClip [phaserpod] Frame 1if (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 Buttonon (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 Buttonon (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 Buttonon (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 Buttonon (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 Buttonon (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 1if ((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 1on (release) { }Symbol 84 MovieClip [ship] Frame 2gotoAndPlay(mytype);Symbol 84 MovieClip [ship] Frame 3if ((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 4gotoAndPlay(mytype);Symbol 84 MovieClip [ship] Frame 5if ((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 6gotoAndPlay(mytype);Symbol 84 MovieClip [ship] Frame 7if ((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 8gotoAndPlay(mytype);Symbol 84 MovieClip [ship] Frame 9if ((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 10gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 1gotoAndPlay(mytype); phaserpower = _root.phaserpower;Symbol 117 MovieClip [enemy] Frame 2if (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 2on (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 2onClipEvent (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 2onClipEvent (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 3if (_x < 450) { _x = (_x + (1 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 4if (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 4on (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 5if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 6if (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 6on (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 7if (_x < 450) { _x = (_x + (1 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 8if (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 8on (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 9if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 10if (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 10on (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 11if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 12if (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 12on (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 13if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 14if (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 14on (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 15if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 16if (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 16on (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 17if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 18if (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 18on (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 19if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 20if (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 20on (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 21if (_x < 450) { _x = (_x + (1.5 / slow)); } gotoAndPlay(mytype);Symbol 117 MovieClip [enemy] Frame 22_root.cursor = 1;Symbol 117 MovieClip [enemy] Frame 28removeMovieClip("");Symbol 123 MovieClip [etorp] Frame 1soundbeep = new Sound(this); soundbeep.attachSound("torpedo"); soundbeep.start(0, 0); gotoAndPlay(mytype + 1);Symbol 123 MovieClip [etorp] Frame 2if (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 3if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);Symbol 123 MovieClip [etorp] Frame 4if (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 5if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);Symbol 123 MovieClip [etorp] Frame 6if (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 7if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);Symbol 123 MovieClip [etorp] Frame 8if (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 9if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);Symbol 123 MovieClip [etorp] Frame 10if (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 11if (timer == undefined) { _x = (_x + 10); } if (_x > 650) { removeMovieClip(""); } gotoAndPlay(mytype + 1);Symbol 125 MovieClip [torp] Frame 1if (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 2if (mytype == undefined) { mytype = 1; } _x = (_x - 10); if (_x < 0) { removeMovieClip(""); } gotoAndPlay(mytype);Symbol 127 MovieClip [stagetext] Frame 1stagetext = "LEVEL " + _root.wavelevel;Symbol 127 MovieClip [stagetext] Frame 25removeMovieClip("");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 1this._x = _parent._xmouse; this._y = _parent._ymouse;Symbol 133 MovieClip [target] Frame 2this._x = _parent._xmouse; this._y = _parent._ymouse; gotoAndPlay(_root.cursor);Symbol 133 MovieClip [target] Frame 3this._x = _parent._xmouse; this._y = _parent._ymouse;Symbol 133 MovieClip [target] Frame 4this._x = _parent._xmouse; this._y = _parent._ymouse; gotoAndPlay(_root.cursor);Symbol 140 Buttonon (release) { if ((_root.resources >= 2000) and (this._alpha == 100)) { _root.resources = _root.resources - 2000; _root.plasma = 1; setProperty("plasma", _alpha , 0); } }Symbol 141 Buttonon (release) { if ((_root.resources >= 5000) and (this._alpha == 100)) { _root.resources = _root.resources - 5000; _root.pulse = 1; setProperty("pulse", _alpha , 0); } }Symbol 142 Buttonon (release) { if ((_root.resources >= 10000) and (this._alpha == 100)) { _root.resources = _root.resources - 10000; _root.lance = 1; setProperty("lance", _alpha , 0); } }Symbol 143 Buttonon (release) { if (_root.resources > 1000) { _root.resources = _root.resources - 1000; _root.totshields = _root.totshields + 100; } }Symbol 144 Buttonon (release) { if ((_root.resources <= 5000) and (this._alpha == 100)) { _root.phasercharger = 2; _root.resources = _root.resources - 5000; setProperty("phasercharger", _alpha , 0); } }Symbol 146 Buttonon (release) { if ((_root.resources >= 50000) and (this._alpha == 100)) { _root.resources = _root.resources - 50000; _root.extendor = 1; } }Symbol 147 Buttonon (release) { if ((_root.resources >= 100000) and (this._alpha == 100)) { _root.resources = _root.resources - 100000; _root.refinery = 4; } }Symbol 148 Buttonon (release) { if ((_alpha == 100) and (_root.resources >= 15000)) { _root.resources = _root.resources - 15000; _root.akira = 1; } }Symbol 149 Buttonon (release) { if ((_alpha == 100) and (_root.resources >= 20000)) { _root.resources = _root.resources - 20000; _root.sov = 1; } }Symbol 150 Buttonon (release) { if ((_alpha == 100) and (_root.resources >= 30000)) { _root.resources = _root.resources - 30000; _root.auto = 1; } }Symbol 154 Buttonon (release) { _root.phaserpower = 1; _root.totphaser = 5; _root.phaserrecharge = 30; }Symbol 155 Buttonon (release) { if (plasma._alpha == 0) { _root.phaserpower = 2; _root.totphaser = 6; _root.phaserrecharge = 40; } }Symbol 156 Buttonon (release) { _root.phaserpower = 3; _root.totphaser = 15; _root.phaserrecharge = 50; }Symbol 157 Buttonon (release) { _root.phaserpower = 10; _root.totphaser = 4; _root.phaserrecharge = 60; }Symbol 158 Buttonon (release) { if ((_alpha == 100) and (_root.resources >= 50000)) { _root.resources = _root.resources - 50000; _root.rebuild1(); } }Symbol 159 Buttonon (release) { if ((_alpha == 100) and (_root.resources >= 50000)) { _root.resources = _root.resources - 50000; _root.rebuild2(); } }Symbol 160 MovieClip [menu] Frame 1if (_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 1if (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 1onClipEvent (enterFrame) { _rotation = (_rotation + 10); }Instance of Symbol 166 MovieClip in Symbol 167 MovieClip [nebula] Frame 1onClipEvent (enterFrame) { _rotation = (_rotation - 10); }Symbol 167 MovieClip [nebula] Frame 2i = 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 Buttonon (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 Buttonon (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 Buttonon (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 Buttonon (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 Buttonon (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 1if (_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 1onClipEvent (enterFrame) { if (_root.refinery == 4) { _alpha = 100; } }Instance of Symbol 173 MovieClip in Symbol 200 MovieClip [station2] Frame 1onClipEvent (enterFrame) { if (_root.phasercharger == 2) { _alpha = 100; } }Symbol 200 MovieClip [station2] Frame 2gotoAndPlay (1);Symbol 200 MovieClip [station2] Frame 10_root.dead();Symbol 203 Buttonon (release) { gotoAndPlay (3); }Symbol 217 Buttonon (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 Buttonon (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 Buttonon (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 Buttonon (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 Buttonon (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 1if (_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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (enterFrame) { if (_root.extendor == 1) { _alpha = 20; } }Instance of Symbol 173 MovieClip in Symbol 245 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.sov == 1) { _alpha = 100; } }Symbol 245 MovieClip Frame 2gotoAndPlay (1);Symbol 245 MovieClip Frame 3_root.s1 = 0;Symbol 245 MovieClip Frame 9if (_root.s1 == 1) { gotoAndPlay (1); }Symbol 245 MovieClip Frame 10gotoAndPlay (9);Symbol 249 Buttonon (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 1if (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 1onClipEvent (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 1onClipEvent (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 1onClipEvent (enterFrame) { if (_root.akira == 1) { _alpha = 100; } }Instance of Symbol 236 MovieClip in Symbol 250 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.extendor == 1) { _alpha = 20; } }Symbol 250 MovieClip Frame 2gotoAndPlay (1);Symbol 250 MovieClip Frame 10gotoAndPlay (9);Symbol 260 MovieClip Frame 1if (mytype == undefined) { mytype = 1; } gotoAndPlay(mytype);Symbol 260 MovieClip Frame 2gotoAndPlay(mytype);Symbol 266 Buttonon (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 Bitmap | Used by:10 22 48 194 | |
Symbol 10 Graphic | Uses:9 | Used by:21 52 117 245 250 |
Symbol 11 Bitmap | Used by:12 23 49 195 | |
Symbol 12 Graphic | Uses:11 | Used by:21 52 117 245 250 |
Symbol 13 Bitmap | Used by:14 196 | |
Symbol 14 Graphic | Uses:13 | Used by:21 52 117 245 250 |
Symbol 15 Bitmap | Used by:16 50 197 | |
Symbol 16 Graphic | Uses:15 | Used by:21 52 117 245 250 |
Symbol 17 Bitmap | Used by:18 198 | |
Symbol 18 Graphic | Uses:17 | Used by:21 52 117 245 250 |
Symbol 19 Bitmap | Used by:20 24 51 199 | |
Symbol 20 Graphic | Uses:19 | Used by:21 52 117 245 250 |
Symbol 21 MovieClip [explosion] | Uses:10 12 14 16 18 20 | |
Symbol 22 Graphic | Uses:9 | Used by:25 |
Symbol 23 Graphic | Uses:11 | Used by:25 |
Symbol 24 Graphic | Uses:19 | Used by:25 |
Symbol 25 MovieClip [explosionmini] | Uses:22 23 24 | |
Symbol 26 Graphic | Used by:28 | |
Symbol 27 Graphic | Used by:28 | |
Symbol 28 MovieClip [assimilate] | Uses:26 27 | |
Symbol 29 Graphic | Used by:31 | |
Symbol 30 Graphic | Used by:31 | |
Symbol 31 MovieClip [tractor] | Uses:29 30 | |
Symbol 32 Graphic | Used by:40 | |
Symbol 33 Graphic | Used by:40 | |
Symbol 34 Graphic | Used by:40 | |
Symbol 35 Graphic | Used by:40 | |
Symbol 36 Graphic | Used by:40 | |
Symbol 37 Graphic | Used by:40 | |
Symbol 38 Graphic | Used by:40 | |
Symbol 39 Graphic | Used by:40 | |
Symbol 40 MovieClip [phaser] | Uses:32 33 34 35 36 37 38 39 | |
Symbol 41 Bitmap | Used by:42 224 | |
Symbol 42 Graphic | Uses:41 | Used by:52 |
Symbol 43 Graphic | Used by:47 64 68 73 78 83 | |
Symbol 44 Graphic | Used by:47 64 68 73 78 83 | |
Symbol 45 Font | Used 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 EditableText | Uses:45 | Used by:47 |
Symbol 47 Button | Uses:43 44 46 | Used by:52 |
Symbol 48 Graphic | Uses:9 | Used by:52 |
Symbol 49 Graphic | Uses:11 | Used by:52 |
Symbol 50 Graphic | Uses:15 | Used by:52 |
Symbol 51 Graphic | Uses:19 | Used by:52 |
Symbol 52 MovieClip [mine] | Uses:42 47 48 49 50 51 10 12 14 16 18 20 | |
Symbol 53 Bitmap | Used by:54 224 | |
Symbol 54 Graphic | Uses:53 | Used by:59 173 |
Symbol 55 Graphic | Used by:56 | |
Symbol 56 MovieClip | Uses:55 | Used by:59 84 200 245 250 |
Symbol 57 Graphic | Used by:58 | |
Symbol 58 MovieClip | Uses:57 | Used by:59 84 117 200 245 250 |
Symbol 59 MovieClip [phaserpod] | Uses:54 56 58 | |
Symbol 60 Bitmap | Used by:61 218 | |
Symbol 61 Graphic | Uses:60 | Used by:62 |
Symbol 62 MovieClip | Uses:61 | Used by:84 |
Symbol 63 EditableText | Uses:45 | Used by:64 |
Symbol 64 Button | Uses:43 44 63 | Used by:84 |
Symbol 65 Bitmap | Used by:66 218 | |
Symbol 66 Graphic | Uses:65 | Used by:84 |
Symbol 67 EditableText | Uses:45 | Used by:68 |
Symbol 68 Button | Uses:43 44 67 | Used by:84 |
Symbol 69 Bitmap | Used by:70 218 | |
Symbol 70 Graphic | Uses:69 | Used by:71 |
Symbol 71 MovieClip | Uses:70 | Used by:84 |
Symbol 72 EditableText | Uses:45 | Used by:73 |
Symbol 73 Button | Uses:43 44 72 | Used by:84 |
Symbol 74 Bitmap | Used by:75 218 | |
Symbol 75 Graphic | Uses:74 | Used by:76 |
Symbol 76 MovieClip | Uses:75 | Used by:84 |
Symbol 77 EditableText | Uses:45 | Used by:78 |
Symbol 78 Button | Uses:43 44 77 | Used by:84 |
Symbol 79 Bitmap | Used by:80 218 | |
Symbol 80 Graphic | Uses:79 | Used by:81 |
Symbol 81 MovieClip | Uses:80 | Used by:84 |
Symbol 82 EditableText | Uses:45 | Used by:83 |
Symbol 83 Button | Uses:43 44 82 | Used by:84 |
Symbol 84 MovieClip [ship] | Uses:62 64 56 58 66 68 71 73 76 78 81 83 | |
Symbol 85 Bitmap | Used by:86 | |
Symbol 86 Graphic | Uses:85 | Used by:87 |
Symbol 87 MovieClip | Uses:86 | Used by:117 |
Symbol 88 Graphic | Used by:89 251 260 | |
Symbol 89 MovieClip | Uses:88 | Used by:117 245 250 |
Symbol 90 Bitmap | Used by:91 | |
Symbol 91 Graphic | Uses:90 | Used by:92 |
Symbol 92 MovieClip | Uses:91 | Used by:117 |
Symbol 93 Bitmap | Used by:94 | |
Symbol 94 Graphic | Uses:93 | Used by:95 |
Symbol 95 MovieClip | Uses:94 | Used by:117 |
Symbol 96 Bitmap | Used by:97 | |
Symbol 97 Graphic | Uses:96 | Used by:98 |
Symbol 98 MovieClip | Uses:97 | Used by:117 |
Symbol 99 Bitmap | Used by:100 | |
Symbol 100 Graphic | Uses:99 | Used by:101 |
Symbol 101 MovieClip | Uses:100 | Used by:117 |
Symbol 102 Bitmap | Used by:103 | |
Symbol 103 Graphic | Uses:102 | Used by:104 |
Symbol 104 MovieClip | Uses:103 | Used by:117 |
Symbol 105 Bitmap | Used by:106 | |
Symbol 106 Graphic | Uses:105 | Used by:107 |
Symbol 107 MovieClip | Uses:106 | Used by:117 |
Symbol 108 Bitmap | Used by:109 | |
Symbol 109 Graphic | Uses:108 | Used by:110 |
Symbol 110 MovieClip | Uses:109 | Used by:117 |
Symbol 111 Bitmap | Used by:112 | |
Symbol 112 Graphic | Uses:111 | Used by:113 |
Symbol 113 MovieClip | Uses:112 | Used by:117 |
Symbol 114 Bitmap | Used by:115 | |
Symbol 115 Graphic | Uses:114 | Used by:116 |
Symbol 116 MovieClip | Uses:115 | Used 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 Graphic | Used by:123 | |
Symbol 119 Graphic | Used by:123 | |
Symbol 120 Graphic | Used by:123 | |
Symbol 121 Graphic | Used by:123 | |
Symbol 122 Graphic | Used by:123 | |
Symbol 123 MovieClip [etorp] | Uses:118 119 120 121 122 | |
Symbol 124 Graphic | Used by:125 | |
Symbol 125 MovieClip [torp] | Uses:124 | |
Symbol 126 EditableText | Uses:45 | Used by:127 |
Symbol 127 MovieClip [stagetext] | Uses:126 | |
Symbol 128 Bitmap | Used by:129 | |
Symbol 129 Graphic | Uses:128 | Used by:130 |
Symbol 130 MovieClip [subspace] | Uses:129 | |
Symbol 131 Graphic | Used by:133 | |
Symbol 132 Graphic | Used by:133 | |
Symbol 133 MovieClip [target] | Uses:131 132 | |
Symbol 134 Graphic | Used by:135 | |
Symbol 135 Button | Uses:134 | Used by:160 |
Symbol 136 Text | Uses:45 | Used by:160 |
Symbol 137 Graphic | Used by:140 141 142 143 144 145 146 147 148 149 150 154 155 156 157 158 159 | |
Symbol 138 Text | Uses:45 | Used by:140 141 142 143 144 145 146 147 148 149 150 158 159 |
Symbol 139 Graphic | Used by:140 141 142 143 144 145 146 147 148 149 150 158 159 | |
Symbol 140 Button | Uses:137 138 139 | Used by:160 |
Symbol 141 Button | Uses:137 138 139 | Used by:160 |
Symbol 142 Button | Uses:137 138 139 | Used by:160 |
Symbol 143 Button | Uses:137 138 139 | Used by:160 |
Symbol 144 Button | Uses:137 138 139 | Used by:160 |
Symbol 145 Button | Uses:137 138 139 | Used by:160 |
Symbol 146 Button | Uses:137 138 139 | Used by:160 |
Symbol 147 Button | Uses:137 138 139 | Used by:160 |
Symbol 148 Button | Uses:137 138 139 | Used by:160 |
Symbol 149 Button | Uses:137 138 139 | Used by:160 |
Symbol 150 Button | Uses:137 138 139 | Used by:160 |
Symbol 151 Text | Uses:45 | Used by:160 |
Symbol 152 Text | Uses:45 | Used by:154 155 156 157 |
Symbol 153 Graphic | Used by:154 155 156 157 | |
Symbol 154 Button | Uses:137 152 153 | Used by:160 |
Symbol 155 Button | Uses:137 152 153 | Used by:160 |
Symbol 156 Button | Uses:137 152 153 | Used by:160 |
Symbol 157 Button | Uses:137 152 153 | Used by:160 |
Symbol 158 Button | Uses:137 138 139 | Used by:160 |
Symbol 159 Button | Uses:137 138 139 | Used 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 Bitmap | Used by:162 | |
Symbol 162 Graphic | Uses:161 | Used by:163 |
Symbol 163 MovieClip | Uses:162 | Used by:167 |
Symbol 164 Bitmap | Used by:165 | |
Symbol 165 Graphic | Uses:164 | Used by:166 |
Symbol 166 MovieClip | Uses:165 | Used by:167 |
Symbol 167 MovieClip [nebula] | Uses:163 166 | |
Symbol 168 Bitmap | Used by:169 197 224 | |
Symbol 169 Graphic | Uses:168 | Used by:200 |
Symbol 170 Bitmap | Used by:171 | |
Symbol 171 Graphic | Uses:170 | Used by:172 |
Symbol 172 MovieClip | Uses:171 | Used by:200 |
Symbol 173 MovieClip | Uses:54 | Used by:200 245 250 |
Symbol 174 Graphic | Used by:177 | |
Symbol 175 Graphic | Used by:177 | |
Symbol 176 EditableText | Uses:45 | Used by:177 |
Symbol 177 Button | Uses:174 175 176 | Used by:200 |
Symbol 178 Graphic | Used by:181 | |
Symbol 179 Graphic | Used by:181 | |
Symbol 180 EditableText | Uses:45 | Used by:181 |
Symbol 181 Button | Uses:178 179 180 | Used by:200 |
Symbol 182 Graphic | Used by:185 | |
Symbol 183 Graphic | Used by:185 | |
Symbol 184 EditableText | Uses:45 | Used by:185 |
Symbol 185 Button | Uses:182 183 184 | Used by:200 |
Symbol 186 Graphic | Used by:189 | |
Symbol 187 Graphic | Used by:189 | |
Symbol 188 EditableText | Uses:45 | Used by:189 |
Symbol 189 Button | Uses:186 187 188 | Used by:200 |
Symbol 190 Graphic | Used by:193 | |
Symbol 191 Graphic | Used by:193 | |
Symbol 192 EditableText | Uses:45 | Used by:193 |
Symbol 193 Button | Uses:190 191 192 | Used by:200 |
Symbol 194 Graphic | Uses:9 | Used by:200 |
Symbol 195 Graphic | Uses:11 | Used by:200 |
Symbol 196 Graphic | Uses:13 | Used by:200 |
Symbol 197 Graphic | Uses:15 168 | Used by:200 |
Symbol 198 Graphic | Uses:17 | Used by:200 |
Symbol 199 Graphic | Uses:19 | Used by:200 |
Symbol 200 MovieClip [station2] | Uses:169 172 173 177 181 185 189 193 56 58 194 195 196 197 198 199 | Used by:Timeline |
Symbol 201 Graphic | Used by:213 Timeline | |
Symbol 202 Graphic | Used by:203 | |
Symbol 203 Button | Uses:202 | Used by:Timeline |
Symbol 204 Font | Used by:205 | |
Symbol 205 Text | Uses:204 | Used by:Timeline |
Symbol 206 Font | Used by:207 | |
Symbol 207 Text | Uses:206 | Used by:208 |
Symbol 208 MovieClip | Uses:207 | Used by:Timeline |
Symbol 209 Font | Used by:210 214 | |
Symbol 210 Text | Uses:209 | Used by:Timeline |
Symbol 211 Bitmap | Used by:212 | |
Symbol 212 Graphic | Uses:211 | Used by:Timeline |
Symbol 213 MovieClip | Uses:201 | Used by:Timeline |
Symbol 214 Text | Uses:209 | Used by:Timeline |
Symbol 215 Graphic | Used by:217 229 231 | |
Symbol 216 Text | Uses:45 | Used by:217 231 |
Symbol 217 Button | Uses:215 216 | Used by:Timeline |
Symbol 218 Graphic | Uses:65 74 79 69 60 | Used by:Timeline |
Symbol 219 Text | Uses:45 | Used by:Timeline |
Symbol 220 Bitmap | Used by:221 234 | |
Symbol 221 Graphic | Uses:220 | Used by:Timeline |
Symbol 222 Text | Uses:45 | Used by:Timeline |
Symbol 223 Bitmap | Used by:224 246 | |
Symbol 224 Graphic | Uses:53 41 168 223 | Used by:Timeline |
Symbol 225 Text | Uses:45 | Used by:Timeline |
Symbol 226 Text | Uses:45 | Used by:Timeline |
Symbol 227 Text | Uses:45 | Used by:Timeline |
Symbol 228 Text | Uses:45 | Used by:229 |
Symbol 229 Button | Uses:215 228 | Used by:Timeline |
Symbol 230 Text | Uses:45 | Used by:Timeline |
Symbol 231 Button | Uses:215 216 | Used by:Timeline |
Symbol 232 Bitmap | Used by:233 | |
Symbol 233 Graphic | Uses:232 | Used by:Timeline |
Symbol 234 Graphic | Uses:220 | Used by:245 |
Symbol 235 Graphic | Used by:236 | |
Symbol 236 MovieClip | Uses:235 | Used by:245 250 |
Symbol 237 Graphic | Used by:240 249 | |
Symbol 238 Graphic | Used by:240 | |
Symbol 239 EditableText | Uses:45 | Used by:240 |
Symbol 240 Button | Uses:237 238 239 | Used by:245 |
Symbol 241 Graphic | Used by:244 | |
Symbol 242 Graphic | Used by:244 | |
Symbol 243 EditableText | Uses:45 | Used by:244 |
Symbol 244 Button | Uses:241 242 243 | Used by:245 |
Symbol 245 MovieClip | Uses:234 89 58 236 240 244 56 173 10 12 14 16 18 20 | Used by:Timeline |
Symbol 246 Graphic | Uses:223 | Used by:250 |
Symbol 247 Graphic | Used by:249 | |
Symbol 248 EditableText | Uses:45 | Used by:249 |
Symbol 249 Button | Uses:237 247 248 | Used by:250 |
Symbol 250 MovieClip | Uses:246 249 89 58 56 173 236 10 12 14 16 18 20 | Used by:Timeline |
Symbol 251 MovieClip | Uses:88 | Used by:Timeline |
Symbol 252 Graphic | Used by:Timeline | |
Symbol 253 Text | Uses:45 | Used by:Timeline |
Symbol 254 Text | Uses:45 | Used by:Timeline |
Symbol 255 Text | Uses:45 | Used by:Timeline |
Symbol 256 EditableText | Uses:45 | Used by:Timeline |
Symbol 257 EditableText | Uses:45 | Used by:Timeline |
Symbol 258 EditableText | Uses:45 | Used by:Timeline |
Symbol 259 Graphic | Used by:260 261 | |
Symbol 260 MovieClip | Uses:259 88 | Used by:Timeline |
Symbol 261 Button | Uses:259 | Used by:Timeline |
Symbol 262 EditableText | Uses:45 | Used by:Timeline |
Symbol 263 Graphic | Used by:266 | |
Symbol 264 Text | Uses:45 | Used by:266 |
Symbol 265 Graphic | Used by:266 | |
Symbol 266 Button | Uses:263 264 265 | Used by:Timeline |
Symbol 267 Text | Uses:45 | Used by:Timeline |
Symbol 268 EditableText | Uses:45 | Used by:Timeline |
Symbol 269 Text | Uses:45 | Used by:Timeline |
Symbol 270 EditableText | Uses:45 | Used by:Timeline |
Symbol 271 Text | Uses:45 | Used by:Timeline |
Instance Names
"percentloadedbox" | Frame 1 | Symbol 213 MovieClip |
"station1" | Frame 4 | Symbol 245 MovieClip |
"station2" | Frame 4 | Symbol 200 MovieClip [station2] |
"station3" | Frame 4 | Symbol 250 MovieClip |
"wave" | Frame 4 | Symbol 251 MovieClip |
"phaserbar" | Frame 4 | Symbol 260 MovieClip |
"shieldsbar" | Frame 4 | Symbol 261 Button |
"button" | Symbol 52 MovieClip [mine] Frame 1 | Symbol 47 Button |
"chargebar" | Symbol 59 MovieClip [phaserpod] Frame 1 | Symbol 56 MovieClip |
"barback" | Symbol 59 MovieClip [phaserpod] Frame 1 | Symbol 58 MovieClip |
"button" | Symbol 84 MovieClip [ship] Frame 1 | Symbol 64 Button |
"chargebar" | Symbol 84 MovieClip [ship] Frame 1 | Symbol 56 MovieClip |
"barback" | Symbol 84 MovieClip [ship] Frame 1 | Symbol 58 MovieClip |
"button" | Symbol 84 MovieClip [ship] Frame 3 | Symbol 68 Button |
"button" | Symbol 84 MovieClip [ship] Frame 5 | Symbol 73 Button |
"button" | Symbol 84 MovieClip [ship] Frame 7 | Symbol 78 Button |
"button" | Symbol 84 MovieClip [ship] Frame 9 | Symbol 83 Button |
"enemy" | Symbol 117 MovieClip [enemy] Frame 2 | Symbol 87 MovieClip |
"energybar" | Symbol 117 MovieClip [enemy] Frame 2 | Symbol 89 MovieClip |
"barback" | Symbol 117 MovieClip [enemy] Frame 2 | Symbol 58 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 4 | Symbol 92 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 6 | Symbol 95 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 8 | Symbol 98 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 10 | Symbol 101 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 12 | Symbol 104 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 14 | Symbol 107 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 16 | Symbol 110 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 18 | Symbol 113 MovieClip |
"enemy" | Symbol 117 MovieClip [enemy] Frame 20 | Symbol 116 MovieClip |
"plasma" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 140 Button |
"pulse" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 141 Button |
"lance" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 142 Button |
"phasercharger" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 144 Button |
"extendor" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 146 Button |
"refinery" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 147 Button |
"akira" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 148 Button |
"sov" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 149 Button |
"auto" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 150 Button |
"ex" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 154 Button |
"eplasma" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 155 Button |
"epulse" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 156 Button |
"elance" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 157 Button |
"s1" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 158 Button |
"s2" | Symbol 160 MovieClip [menu] Frame 1 | Symbol 159 Button |
"button" | Symbol 200 MovieClip [station2] Frame 1 | Symbol 193 Button |
"chargebar" | Symbol 200 MovieClip [station2] Frame 1 | Symbol 56 MovieClip |
"barback" | Symbol 200 MovieClip [station2] Frame 1 | Symbol 58 MovieClip |
"energybar" | Symbol 245 MovieClip Frame 1 | Symbol 89 MovieClip |
"barback" | Symbol 245 MovieClip Frame 1 | Symbol 58 MovieClip |
"button" | Symbol 245 MovieClip Frame 1 | Symbol 240 Button |
"button2" | Symbol 245 MovieClip Frame 1 | Symbol 244 Button |
"chargebar" | Symbol 245 MovieClip Frame 1 | Symbol 56 MovieClip |
"barback2" | Symbol 245 MovieClip Frame 1 | Symbol 58 MovieClip |
"button" | Symbol 250 MovieClip Frame 1 | Symbol 249 Button |
"energybar" | Symbol 250 MovieClip Frame 1 | Symbol 89 MovieClip |
"barback" | Symbol 250 MovieClip Frame 1 | Symbol 58 MovieClip |
"chargebar" | Symbol 250 MovieClip Frame 1 | Symbol 56 MovieClip |
"barback2" | Symbol 250 MovieClip Frame 1 | Symbol 58 MovieClip |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "music" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "lance" |
ExportAssets (56) | Timeline Frame 1 | Symbol 3 as "torpedo" |
ExportAssets (56) | Timeline Frame 1 | Symbol 4 as "pulse" |
ExportAssets (56) | Timeline Frame 1 | Symbol 5 as "phas" |
ExportAssets (56) | Timeline Frame 1 | Symbol 6 as "build" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "armor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 8 as "cheers" |
ExportAssets (56) | Timeline Frame 1 | Symbol 21 as "explosion" |
ExportAssets (56) | Timeline Frame 1 | Symbol 25 as "explosionmini" |
ExportAssets (56) | Timeline Frame 1 | Symbol 28 as "assimilate" |
ExportAssets (56) | Timeline Frame 1 | Symbol 31 as "tractor" |
ExportAssets (56) | Timeline Frame 1 | Symbol 40 as "phaser" |
ExportAssets (56) | Timeline Frame 1 | Symbol 52 as "mine" |
ExportAssets (56) | Timeline Frame 1 | Symbol 59 as "phaserpod" |
ExportAssets (56) | Timeline Frame 1 | Symbol 84 as "ship" |
ExportAssets (56) | Timeline Frame 1 | Symbol 117 as "enemy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 123 as "etorp" |
ExportAssets (56) | Timeline Frame 1 | Symbol 125 as "torp" |
ExportAssets (56) | Timeline Frame 1 | Symbol 127 as "stagetext" |
ExportAssets (56) | Timeline Frame 1 | Symbol 130 as "subspace" |
ExportAssets (56) | Timeline Frame 1 | Symbol 133 as "target" |
ExportAssets (56) | Timeline Frame 1 | Symbol 160 as "menu" |
ExportAssets (56) | Timeline Frame 1 | Symbol 167 as "nebula" |
ExportAssets (56) | Timeline Frame 1 | Symbol 200 as "station2" |
ExportAssets (56) | Timeline Frame 4 | Symbol 200 as "station2" |
Dynamic Text Variables
stagetext | Symbol 126 EditableText | "LEVEL 0" |
shieldsnum | Symbol 256 EditableText | "(100/100)" |
phasernum | Symbol 257 EditableText | "(5)" |
resources | Symbol 258 EditableText | "" |
phasertype | Symbol 262 EditableText | "Type X" |
nextlevel | Symbol 268 EditableText | "LEVEL 0" |
resources | Symbol 270 EditableText | "0 " |
|