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

swfchan turned sixteen years old the day before yesterday! (5may2024)

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

Star Wars Renegade Fleet.swf

This is the info page for
Flash #70107

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


Text
0

0

of

loadedkbytes

totalkbytes

0

0

KB

Bytes Loaded

Bytes Total

0

%

episode ii:
the renegade fleet

Level 4
get ready...

a note from the creator/animator/writer/editor/sound editor/mixer/
set designer/script supervisor/producer(ofthisgame)/key grip/gaffer/
foley artist: many thanks go out to many different people.  without
the support of the following people, none of this could have come to
exist.  i would like to thank: God, for without him, nothing is possible...
Jesus Christ, for being my personal Lord and Savior, (as well as yours),
my loving mother and father, who raised me right... my wonderful
girlfriend, Amanda Walter, for her never-ending love and care, all of
my immediate friends and family who have let me become the person i am,
the staff at all of the schools that i have ever had the pleasure of
attending for letting me pursue my goals and for supplying my thirst
for knowledge with limitless appetite :D, Josh Bowen and Patric DeLay
for being two of the greatest friends and influences two women could
ever produce, Derick Thomas for discreetly slipping a chicken
sandwich into my drink, and being an awesome best friend, all of the
guys in programming/project development who have helped me in the
past, and all of the players and management at RotS, for being my
friends and comrades. :)

Special thanks to: David Doull, japangreg, marmotte, milowerx, squize,
kenetor, catbert303, mbenney, drspock, pred32, xmcnkggetx2, olorin,
and all of the gang at the forums at flashkit.com... a very special
thanks goes out to George Lucas, for creating the vast Star Wars
universe as we know it.

Audio Credits
pre-game intro - Star Wars Main Theme, by John Williams
Level 1 - Duel of the Fates Techno Mix by DJ Middleground
Level 2 - Continued Destructive Chaos, by Edgan (flashkit sound loop)
Level 3 - Despair, by Justin R. Durban (FSL)
Level 4 - Ready on a Moment's Notice, by Edgan
Credits - Star Wars End Title, by John Williams
All images, sounds, references, ideas, and anything that refers to
Star Wars, (c)Lucasfilm, 2003. All rights reserved.

created february 2003 by joseph orellano.  all characters, places
and whatnot are fictional, and any likenesses to any real life persons
or places are purely unintentional. no animals were harmed in the
making of this game... but my poor computer had a few heart attacks
while publishing this massive game. :) this music is so incredibly moving
and emotional... especially that part where the strings got incredibly
high up. if you were wondering, this song is called "Anakin's Theme"...
if you are having difficulties viewing all of this text, you need to
download the font "star jedi", and install it on your computer.
go to google.com and do a search for "star jedi font"...
once more, thanks to all of you who have helped me and supported
me throughout the years. god bless you.

May the Force Be With You,
Always.

ActionScript [AS1/AS2]

Frame 2
loadedbytes = getBytesLoaded(); totalbytes = getBytesTotal(); loadedkbytes = Math.ceil(loadedbytes / 1000); totalkbytes = Math.ceil(totalbytes / 1000); if (loadedbytes == totalbytes) { gotoAndPlay (4); } frame = int(loadedbytes / (totalbytes / 100)); tellTarget (_root.loader) { gotoAndStop(_root.frame); };
Frame 3
gotoAndPlay (1);
Frame 4
gotoAndPlay (5);
Frame 5
stop();
Frame 1606
numEnemy = 4; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } depthCounter = 1; score = 0; player_hp = 100; player_lives = 3; boom_hit = new Sound(); boom_hit.attachSound("sound1.wav"); boom_kill = new Sound(); boom_kill.attachSound("sound2.wav");
Instance of Symbol 66 MovieClip "mainGround" in Frame 1606
onClipEvent (load) { ground.duplicateMovieClip("ground2", 100); ground2._x = ground._x + ground._width; groundStartx = this._x; groundSpeed = 8; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart == true) { this._x = this._x - groundSpeed; if (this._x <= (groundStartx - ground._width)) { this._x = groundStartx - groundSpeed; } } }
Instance of Symbol 75 MovieClip "spaceship" in Frame 1606
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; scrollx = _root.mainStars.stars._width / 3; scrollStart = false; maxLasers = 5; depthCounter = 200; this.gotoandstop(3); } onClipEvent (enterFrame) { if (Key.isDown(32) and (laserCounter <= maxLasers)) { laserSound = new Sound(); laserSound.attachSound("laserFire01"); laserSound.start(); laserCounter++; _root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; } if (Key.isDown(39)) { _root.spaceship.gotoandplay("thrust"); if (this._x < scrollx) { this._x = this._x + moveSpeed; } else { scrollStart = true; } } else if (Key.isDown(37) and (this._x > 60)) { this._x = this._x - moveSpeed; } if (Key.isDown(40) and (this._y < 380)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38) and (this._y > 60)) { this._y = this._y - moveSpeed; } } onClipEvent (keyUp) { if (Key.getCode() == 39) { _root.spaceship.gotoandstop("load"); scrollStart = false; } }
Instance of Symbol 77 MovieClip "laser" in Frame 1606
onClipEvent (load) { laserMoveSpeed = 25; this._x = _root.spaceship._x + 90; this._y = _root.spaceship._y; } onClipEvent (enterFrame) { if (this._name != "laser") { this._x = this._x + laserMoveSpeed; if (this._x > 600) { _root.spaceship.laserCounter--; this.removeMovieClip(); } i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.boom_hit.start(); _root["enemy" + i].enemy_hp = _root["enemy" + i].enemy_hp - 1; _root.score = _root.score + 1; if (_root["enemy" + i].enemy_hp < 1) { _root.score = _root.score + 10; score = _root.score; if (_root.score >= 3000) { _root.gotoandplay("ready2"); } _root["enemy" + i].gotoAndPlay(2); } _root.spaceship.laserCounter--; this.removeMovieClip(); } i++; } } }
Instance of Symbol 92 MovieClip "enemy1" in Frame 1606
onClipEvent (load) { function reset() { _x = 600; _y = (random(200) + 100); enemySpeed = random(15) + 1; this.gotoAndStop(1); enemy_hp = 2; enemyLaserCounter = 1; } enemyLaserSound = new Sound(); enemylaserSound.attachSound("ddlaser"); reset(); } onClipEvent (enterFrame) { randomnmr = random(75) + 1; if (randomnmr == 1) { if (_currentframe == 1) { enemyLaserCounter++; _root.depthCounter++; if (_root.depthCounter < 100) { _root.enemyLaser.duplicateMovieClip("enemyLaser" + _root.depthCounter, _root.depthCounter); } else { _root.depthCounter = 1; _root.enemyLaser.duplicateMovieClip("enemyLaser" + _root.depthCounter, _root.depthCounter); } enemylaserSound.start(); _root["enemyLaser" + _root.depthCounter].target_name = this._name; } } if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -10) { reset(); } if (this.hitTest(_root.spaceship)) { _root.player_hp = _root.player_hp - 1; this.gotoAndPlay(2); _root.boom_hit.start(); if (_root.player_hp < 1) { _root.player_lives = _root.player_lives - 1; if (_root.player_lives < 1) { _root.gotoAndStop("gameOver"); } else { _root.player_hp = 100; _root.spaceship.gotoandplay("die"); } } } }
Instance of Symbol 94 MovieClip "enemyLaser" in Frame 1606
onClipEvent (load) { enemyLaserMoveSpeed = 25; _x = _root[target_name]._x; _y = _root[target_name]._y; } onClipEvent (enterFrame) { if (_name != "enemyLaser") { _x = (_x - enemyLaserMoveSpeed); if (_x < 0) { _root.enemy.enemyLaserCounter--; this.removeMovieClip(); } if (this.hitTest(_root.spaceship)) { _root.boom_hit.start(); _root.player_hp = _root.player_hp - 1; _root.enemy.enemyLaserCounter--; this.removeMovieClip(); } } else { _visible = false; } }
Instance of Symbol 97 MovieClip "mainStars" in Frame 1606
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 30; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Frame 1607
stop();
Frame 1608
stopAllSounds();
Frame 1610
stopAllSounds();
Frame 1661
numEnemy = 5; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } depthCounter = 1; player_hp = 100; boom_hit = new Sound(); boom_hit.attachSound("sound1.wav"); boom_kill = new Sound(); boom_kill.attachSound("sound2.wav");
Instance of Symbol 75 MovieClip "spaceship" in Frame 1661
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; scrollx = _root.mainStars.stars._width / 3; scrollStart = false; maxLasers = 5; depthCounter = 200; this.gotoandstop(3); } onClipEvent (enterFrame) { if (Key.isDown(32) and (laserCounter <= maxLasers)) { laserSound = new Sound(); laserSound.attachSound("laserFire01"); laserSound.start(); laserCounter++; _root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; } if (Key.isDown(39)) { _root.spaceship.gotoandplay("thrust"); if (this._x < scrollx) { this._x = this._x + moveSpeed; } else { scrollStart = true; } } else if (Key.isDown(37) and (this._x > 60)) { this._x = this._x - moveSpeed; } if (Key.isDown(40) and (this._y < 380)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38) and (this._y > 60)) { this._y = this._y - moveSpeed; } } onClipEvent (keyUp) { if (Key.getCode() == 39) { _root.spaceship.gotoandstop("load"); scrollStart = false; } }
Instance of Symbol 77 MovieClip "laser" in Frame 1661
onClipEvent (load) { laserMoveSpeed = 25; this._x = _root.spaceship._x + 90; this._y = _root.spaceship._y; } onClipEvent (enterFrame) { if (this._name != "laser") { this._x = this._x + laserMoveSpeed; if (this._x > 600) { _root.spaceship.laserCounter--; this.removeMovieClip(); } i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.boom_hit.start(); _root["enemy" + i].enemy_hp = _root["enemy" + i].enemy_hp - 1; _root.score = _root.score + 1; if (_root["enemy" + i].enemy_hp < 1) { _root.score = _root.score + 20; score = _root.score; if (_root.score >= 7000) { _root.gotoandplay("ready3"); } _root["enemy" + i].gotoAndPlay(2); } _root.spaceship.laserCounter--; this.removeMovieClip(); } i++; } } }
Instance of Symbol 125 MovieClip "enemy1" in Frame 1661
onClipEvent (load) { function reset() { _x = 600; _y = (random(200) + 100); enemySpeed = random(15) + 1; this.gotoAndStop(1); enemy_hp = 3; enemyLaserCounter = 1; } enemyLaserSound = new Sound(); enemylaserSound.attachSound("ddlaser"); reset(); } onClipEvent (enterFrame) { randomnmr = random(50) + 1; if (randomnmr == 1) { if (_currentframe == 1) { enemyLaserCounter++; _root.depthCounter++; if (_root.depthCounter < 100) { _root.enemyLaser.duplicateMovieClip("enemyLaser" + _root.depthCounter, _root.depthCounter); } else { _root.depthCounter = 1; _root.enemyLaser.duplicateMovieClip("enemyLaser" + _root.depthCounter, _root.depthCounter); } enemylaserSound.start(); _root["enemyLaser" + _root.depthCounter].target_name = this._name; } } if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainStars.starsSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -10) { reset(); } if (this.hitTest(_root.spaceship)) { _root.player_hp = _root.player_hp - 1; this.gotoAndPlay(2); _root.boom_hit.start(); if (_root.player_hp < 1) { _root.player_lives = _root.player_lives - 1; if (_root.player_lives < 1) { _root.gotoAndStop("gameOver1"); } else { _root.player_hp = 100; _root.spaceship.gotoandplay("die"); } } } }
Instance of Symbol 94 MovieClip "enemyLaser" in Frame 1661
onClipEvent (load) { laserMoveSpeed = 25; _x = _root[target_name]._x; _y = _root[target_name]._y; } onClipEvent (enterFrame) { if (_name != "enemyLaser") { _x = (_x - laserMoveSpeed); if (_x < 0) { _root.enemy.laserCounter--; this.removeMovieClip(); } if (this.hitTest(_root.spaceship)) { _root.boom_hit.start(); _root.player_hp = _root.player_hp - 1; _root.enemy.laserCounter--; this.removeMovieClip(); } } else { _visible = false; } }
Instance of Symbol 97 MovieClip "mainStars" in Frame 1661
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 15; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Frame 1662
stop();
Frame 1663
stopAllSounds();
Frame 1665
stopAllSounds();
Frame 1716
numEnemy = 6; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } depthCounter = 1; player_hp = 100; boom_hit = new Sound(); boom_hit.attachSound("sound1.wav"); boom_kill = new Sound(); boom_kill.attachSound("sound2.wav");
Instance of Symbol 137 MovieClip "mainGround" in Frame 1716
onClipEvent (load) { ground.duplicateMovieClip("ground2", 100); ground2._x = ground._x + ground._width; groundStartx = this._x; groundSpeed = 10; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart == true) { this._x = this._x - groundSpeed; if (this._x <= (groundStartx - ground2._width)) { this._x = groundStartx - groundSpeed; } } }
Instance of Symbol 75 MovieClip "spaceship" in Frame 1716
onClipEvent (load) { moveSpeed = 13; _root.laser._visible = false; laserCounter = 1; scrollx = _root.mainStars.stars._width / 3; scrollStart = false; maxLasers = 5; depthCounter = 200; this.gotoandstop(3); } onClipEvent (enterFrame) { if (Key.isDown(32) and (laserCounter <= maxLasers)) { laserSound = new Sound(); laserSound.attachSound("laserFire01"); laserSound.start(); laserCounter++; _root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; } if (Key.isDown(39)) { _root.spaceship.gotoandplay("thrust"); if (this._x < scrollx) { this._x = this._x + moveSpeed; } else { scrollStart = true; } } else if (Key.isDown(37) and (this._x > 60)) { this._x = this._x - moveSpeed; } if (Key.isDown(40) and (this._y < 380)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38) and (this._y > 60)) { this._y = this._y - moveSpeed; } } onClipEvent (keyUp) { if (Key.getCode() == 39) { _root.spaceship.gotoandstop("load"); scrollStart = false; } }
Instance of Symbol 77 MovieClip "laser" in Frame 1716
onClipEvent (load) { laserMoveSpeed = 35; this._x = _root.spaceship._x + 90; this._y = _root.spaceship._y; } onClipEvent (enterFrame) { if (this._name != "laser") { this._x = this._x + laserMoveSpeed; if (this._x > 600) { _root.spaceship.laserCounter--; this.removeMovieClip(); } i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.boom_hit.start(); _root["enemy" + i].enemy_hp = _root["enemy" + i].enemy_hp - 1; _root.score = _root.score + 1; if (_root["enemy" + i].enemy_hp < 1) { _root.score = _root.score + 20; score = _root.score; if (_root.score >= 12000) { _root.gotoandplay("ready4"); } _root["enemy" + i].gotoAndPlay(2); } _root.spaceship.laserCounter--; this.removeMovieClip(); } i++; } } }
Instance of Symbol 140 MovieClip "enemy1" in Frame 1716
onClipEvent (load) { function reset() { _x = 600; _y = (random(200) + 100); enemySpeed = random(15) + 1; this.gotoAndStop(1); enemy_hp = 1; enemyLaserCounter = 1; } enemyLaserSound = new Sound(); enemylaserSound.attachSound("ddlaser"); reset(); } onClipEvent (enterFrame) { randomnmr = random(50) + 1; if (randomnmr == 1) { if (_currentframe == 1) { enemyLaserCounter++; _root.depthCounter++; if (_root.depthCounter < 100) { _root.enemyLaser.duplicateMovieClip("enemyLaser" + _root.depthCounter, _root.depthCounter); } else { _root.depthCounter = 1; _root.enemyLaser.duplicateMovieClip("enemyLaser" + _root.depthCounter, _root.depthCounter); } enemylaserSound.start(); _root["enemyLaser" + _root.depthCounter].target_name = this._name; } } if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -10) { reset(); } if (this.hitTest(_root.spaceship)) { _root.player_hp = _root.player_hp - 1; this.gotoAndPlay(2); _root.boom_hit.start(); if (_root.player_hp < 1) { _root.player_lives = _root.player_lives - 1; if (_root.player_lives < 1) { _root.gotoAndStop("gameOver3"); } else { _root.player_hp = 100; _root.spaceship.gotoandplay("die"); } } } }
Instance of Symbol 94 MovieClip "enemyLaser" in Frame 1716
onClipEvent (load) { laserMoveSpeed = 25; _x = _root[target_name]._x; _y = _root[target_name]._y; } onClipEvent (enterFrame) { if (_name != "enemyLaser") { _x = (_x - laserMoveSpeed); if (_x < 0) { _root.enemy.laserCounter--; this.removeMovieClip(); } if (this.hitTest(_root.spaceship)) { _root.boom_hit.start(); _root.player_hp = _root.player_hp - 1; _root.enemy.laserCounter--; this.removeMovieClip(); } } else { _visible = false; } }
Instance of Symbol 143 MovieClip "mainStars" in Frame 1716
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 20; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Frame 1717
stop();
Frame 1718
stopAllSounds();
Frame 1719
stopAllSounds();
Frame 1770
numEnemy = 6; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } depthCounter = 1; player_hp = 100; boom_hit = new Sound(); boom_hit.attachSound("sound1.wav"); boom_kill = new Sound(); boom_kill.attachSound("sound2.wav");
Instance of Symbol 155 MovieClip "mainGround" in Frame 1770
onClipEvent (load) { ground2.duplicateMovieClip("ground3", 100); ground3._x = ground2._x + ground2._width; groundStartx = this._x; groundSpeed = 10; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart == true) { this._x = this._x - groundSpeed; if (this._x <= (groundStartx - ground2._width)) { this._x = groundStartx - groundSpeed; } } }
Instance of Symbol 75 MovieClip "spaceship" in Frame 1770
onClipEvent (load) { moveSpeed = 10; _root.laser._visible = false; laserCounter = 1; scrollx = _root.mainStars.stars._width / 3; scrollStart = false; maxLasers = 5; depthCounter = 200; this.gotoandstop(3); } onClipEvent (enterFrame) { if (Key.isDown(32) and (laserCounter <= maxLasers)) { laserSound = new Sound(); laserSound.attachSound("laserFire01"); laserSound.start(); laserCounter++; _root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; } if (Key.isDown(39)) { _root.spaceship.gotoandplay("thrust"); if (this._x < scrollx) { this._x = this._x + moveSpeed; } else { scrollStart = true; } } else if (Key.isDown(37) and (this._x > 60)) { this._x = this._x - moveSpeed; } if (Key.isDown(40) and (this._y < 380)) { this._y = this._y + moveSpeed; } else if (Key.isDown(38) and (this._y > 60)) { this._y = this._y - moveSpeed; } } onClipEvent (keyUp) { if (Key.getCode() == 39) { _root.spaceship.gotoandstop("load"); scrollStart = false; } }
Instance of Symbol 77 MovieClip "laser" in Frame 1770
onClipEvent (load) { laserMoveSpeed = 25; this._x = _root.spaceship._x + 90; this._y = _root.spaceship._y; } onClipEvent (enterFrame) { if (this._name != "laser") { this._x = this._x + laserMoveSpeed; if (this._x > 600) { _root.spaceship.laserCounter--; this.removeMovieClip(); } i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.boom_hit.start(); _root["enemy" + i].enemy_hp = _root["enemy" + i].enemy_hp - 1; _root.score = _root.score + 1; if (_root["enemy" + i].enemy_hp < 1) { _root.score = _root.score + 30; score = _root.score; if (_root.score >= 20000) { _root.gotoandplay("credits"); } _root["enemy" + i].gotoAndPlay(2); } _root.spaceship.laserCounter--; this.removeMovieClip(); } i++; } } }
Instance of Symbol 159 MovieClip "enemy1" in Frame 1770
onClipEvent (load) { function reset() { _x = 600; _y = (random(200) + 100); enemySpeed = random(15) + 1; this.gotoAndStop(1); enemy_hp = 4; enemyLaserCounter = 1; } enemyLaserSound = new Sound(); enemylaserSound.attachSound("ddlaser"); reset(); } onClipEvent (enterFrame) { randomnmr = random(40) + 1; if (randomnmr == 1) { if (_currentframe == 1) { enemyLaserCounter++; _root.depthCounter++; if (_root.depthCounter < 100) { _root.enemyLaser.duplicateMovieClip("enemyLaser" + _root.depthCounter, _root.depthCounter); } else { _root.depthCounter = 1; _root.enemyLaser.duplicateMovieClip("enemyLaser" + _root.depthCounter, _root.depthCounter); } enemylaserSound.start(); _root["enemyLaser" + _root.depthCounter].target_name = this._name; } } if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -10) { reset(); } if (this.hitTest(_root.spaceship)) { _root.player_hp = _root.player_hp - 1; this.gotoAndPlay(2); _root.boom_hit.start(); if (_root.player_hp < 1) { _root.player_lives = _root.player_lives - 1; if (_root.player_lives < 1) { _root.gotoAndStop("gameOver2"); } else { _root.player_hp = 100; _root.spaceship.gotoandplay("die"); } } } }
Instance of Symbol 94 MovieClip "enemyLaser" in Frame 1770
onClipEvent (load) { laserMoveSpeed = 25; _x = _root[target_name]._x; _y = _root[target_name]._y; } onClipEvent (enterFrame) { if (_name != "enemyLaser") { _x = (_x - laserMoveSpeed); if (_x < 0) { _root.enemy.laserCounter--; this.removeMovieClip(); } if (this.hitTest(_root.spaceship)) { _root.boom_hit.start(); _root.player_hp = _root.player_hp - 2; if (_root.player_hp < 1) { _root.player_lives = _root.player_lives - 1; _root.spaceship.gotoandplay("die"); if (_root.player_lives < 1) { _root.gotoAndStop("gameOver2"); } else { _root.player_hp = 100; } } _root.enemy.laserCounter--; this.removeMovieClip(); } } else { _visible = false; } }
Instance of Symbol 162 MovieClip "mainStars" in Frame 1770
onClipEvent (load) { stars.duplicateMovieClip("stars2", 1000); stars2._x = stars._x + stars._width; starsStartx = this._x; starsSpeed = 15; } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - starsSpeed; if (this._x <= (starsStartx - stars._width)) { this._x = starsStartx - starsSpeed; } } }
Frame 1771
stop();
Frame 1772
stopAllSounds();
Frame 1773
stopAllSounds();
Frame 4643
stop(); stopAllSounds();
Symbol 40 Button
on (release) { gotoAndPlay (6); }
Symbol 59 Button
on (release) { gotoAndPlay (1556); }
Symbol 61 Button
on (release) { gotoAndStop (1606); }
Symbol 75 MovieClip Frame 1
stop();
Symbol 75 MovieClip Frame 3
gotoAndStop (1);
Symbol 75 MovieClip Frame 7
gotoAndPlay (2);
Symbol 75 MovieClip Frame 11
gotoAndPlay (10);
Symbol 92 MovieClip Frame 1
stop();
Symbol 92 MovieClip Frame 8
stop();
Symbol 118 Button
on (release) { gotoAndPlay (1606); player_lives = 3; }
Symbol 125 MovieClip Frame 1
stop();
Symbol 125 MovieClip Frame 8
stop();
Symbol 131 Button
on (release) { gotoAndPlay (1660); player_lives = 3; }
Symbol 140 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 8
stop();
Symbol 149 Button
on (release) { gotoAndPlay (1715); player_lives = 3; }
Symbol 159 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 8
stop();
Symbol 168 Button
on (release) { gotoAndPlay (1769); player_lives = 3; }
Symbol 200 Button
on (release) { gotoAndPlay (6); }

Library Items

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

Instance Names

"loader"Frame 1Symbol 15 MovieClip
"mainGround"Frame 1606Symbol 66 MovieClip
"spaceship"Frame 1606Symbol 75 MovieClip
"laser"Frame 1606Symbol 77 MovieClip
"enemy1"Frame 1606Symbol 92 MovieClip
"enemyLaser"Frame 1606Symbol 94 MovieClip
"mainStars"Frame 1606Symbol 97 MovieClip
"spaceship"Frame 1661Symbol 75 MovieClip
"laser"Frame 1661Symbol 77 MovieClip
"enemy1"Frame 1661Symbol 125 MovieClip
"enemyLaser"Frame 1661Symbol 94 MovieClip
"mainStars"Frame 1661Symbol 97 MovieClip
"mainGround"Frame 1716Symbol 137 MovieClip
"spaceship"Frame 1716Symbol 75 MovieClip
"laser"Frame 1716Symbol 77 MovieClip
"enemy1"Frame 1716Symbol 140 MovieClip
"enemyLaser"Frame 1716Symbol 94 MovieClip
"mainStars"Frame 1716Symbol 143 MovieClip
"mainGround"Frame 1770Symbol 155 MovieClip
"spaceship"Frame 1770Symbol 75 MovieClip
"laser"Frame 1770Symbol 77 MovieClip
"enemy1"Frame 1770Symbol 159 MovieClip
"enemyLaser"Frame 1770Symbol 94 MovieClip
"mainStars"Frame 1770Symbol 162 MovieClip
"ground"Symbol 66 MovieClip Frame 1Symbol 65 MovieClip
"stars"Symbol 97 MovieClip Frame 1Symbol 96 MovieClip
"ground"Symbol 137 MovieClip Frame 1Symbol 136 MovieClip
"stars"Symbol 143 MovieClip Frame 1Symbol 142 MovieClip
"ground2"Symbol 155 MovieClip Frame 1Symbol 154 MovieClip
"stars"Symbol 162 MovieClip Frame 1Symbol 161 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "ddlaser"
ExportAssets (56)Timeline Frame 1Symbol 2 as "sound1.wav"
ExportAssets (56)Timeline Frame 1Symbol 3 as "laserFire01"
ExportAssets (56)Timeline Frame 1Symbol 4 as "sound2.wav"
ExportAssets (56)Timeline Frame 1606Symbol 4 as "sound2.wav"
ExportAssets (56)Timeline Frame 1661Symbol 4 as "sound2.wav"
ExportAssets (56)Timeline Frame 1716Symbol 4 as "sound2.wav"
ExportAssets (56)Timeline Frame 1770Symbol 4 as "sound2.wav"

Labels

"gameOver"Frame 1608
"ready2"Frame 1609
"gameOver1"Frame 1663
"ready3"Frame 1664
"gameOver3"Frame 1718
"ready4"Frame 1719
"gameOver2"Frame 1772
"credits"Frame 1773
"load"Symbol 75 MovieClip Frame 1
"reload"Symbol 75 MovieClip Frame 2
"die"Symbol 75 MovieClip Frame 4
"thrust"Symbol 75 MovieClip Frame 10

Dynamic Text Variables

totalkbytesSymbol 17 EditableText" 0"
loadedkbytesSymbol 18 EditableText"0 "
totalbytesSymbol 23 EditableText" 0"
loadedbytesSymbol 24 EditableText"0 "
frameSymbol 29 EditableText"0"
player_hpSymbol 100 EditableText""
player_livesSymbol 102 EditableText""
scoreSymbol 103 EditableText""
player_hpSymbol 127 EditableText""
player_livesSymbol 128 EditableText""
scoreSymbol 129 EditableText""
player_hpSymbol 145 EditableText""
player_livesSymbol 146 EditableText""
scoreSymbol 147 EditableText""
player_hpSymbol 164 EditableText""
player_livesSymbol 165 EditableText""
scoreSymbol 166 EditableText""




http://swfchan.com/15/70107/info.shtml
Created: 10/4 -2019 02:14:23 Last modified: 10/4 -2019 02:14:23 Server time: 07/05 -2024 17:59:26