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

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

Aeroknights.swf

This is the info page for
Flash #65110

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


Text
---


ActionScript [AS1/AS2]

Frame 147
stop();
Instance of Symbol 34 MovieClip "laser" in Frame 147
onClipEvent (load) { laserMoveSpeed = 5; this._x = _root.spaceship._x; this._y = _root.spaceship._y; } onClipEvent (enterFrame) { if (this._name != "laser") { this._x = this._x + laserMoveSpeed; if (this._x > 610) { _root.spaceship.laserCounter--; this.removeMovieClip(); } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root.score = _root.score + 100; _root["enemy" + i].gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.enemy2)) { _root.score = _root.score + 100; _root.enemy2.gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.it)) { _root.score = _root.score + 100; _root.blood.nextFrame(); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.boss)) { _root.score = _root.score + 100; _root.boss.nextFrame(); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.it)) { _root.flash.gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.enemy3)) { _root.enemy3.gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.enemy4)) { _root.enemy4.gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.boss)) { _root.superblood.nextFrame(); } i++; } } }
Instance of Symbol 36 MovieClip in Frame 147
onClipEvent (load) { Stage.showMenu = false; }
Frame 148
stop();
Frame 149
numEnemy = 1; i = 2; while (i <= numEnemy) { clouds.duplicateMovieClip("clouds" + i, i + 100); i++; } stopAllSounds(); score = 0;
Instance of Symbol 50 MovieClip in Frame 149
onClipEvent (load) { bg_move = 0.5; } onClipEvent (enterFrame) { this._x = this._x - bg_move; }
Instance of Symbol 53 MovieClip "health" in Frame 149
onClipEvent (load) { Stage.showMenu = false; }
Instance of Symbol 55 MovieClip "clouds" in Frame 149
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = 100; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -700) { reset(); } }
Frame 150
score = 0;
Instance of Symbol 62 MovieClip "stupid" in Frame 168
onClipEvent (enterFrame) { moveSpeed = 10; if (Key.isDown(39)) { this._x = this._x + 15; } else if (Key.isDown(37)) { this._x = this._x - 15; } if (Key.isDown(40)) { this._y = this._y + 15; } else if (Key.isDown(38)) { this._y = this._y - 15; } } onClipEvent (enterFrame) { if (_x > 560) { _x = 560; } if (_x < 40) { _x = 40; } if (_y > 370) { _y = 370; } if (_y < 20) { _y = 20; } } onClipEvent (enterFrame) { if (Key.isDown(90)) { _currentframe = 2; play(); } }
Instance of Symbol 28 MovieClip "spaceship" in Frame 168
onClipEvent (load) { moveSpeed = 50; _root.laser._visible = false; laserCounter = 10; maxLasers = 13; depthCounter = 8; } onClipEvent (enterFrame) { if (Key.isDown(90) and (laserCounter <= maxLasers)) { laserCounter++; _root.laser.duplicateMovieClip("laser" + depthCounter, depthCounter); _root["laser" + depthCounter]._visible = true; depthCounter++; if (depthCounter > maxLasers) { depthCounter = 1; } } if (Key.isDown(39)) { this._x = this._x + 15; } else if (Key.isDown(37)) { this._x = this._x - 15; } if (Key.isDown(40)) { this._y = this._y + 15; } else if (Key.isDown(38)) { this._y = this._y - 15; } if (Key.isDown(90)) { _currentframe = 2; play(); } } onClipEvent (enterFrame) { if (_x > 560) { _x = 560; } if (_x < 40) { _x = 40; } if (_y > 370) { _y = 370; } if (_y < 20) { _y = 20; } }
Frame 188
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); numEnemy = 1; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } numEnemy = 1; i = 2; while (i <= numEnemy) { enemy2.duplicateMovieClip("enemy2", i + 100); i++; } stop();
Instance of Symbol 68 MovieClip "enemy1" in Frame 188
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = 20; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 70 MovieClip in Frame 188
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 10; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.nextFrame(); } }
Frame 189
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); stop();
Instance of Symbol 80 MovieClip "enemy2" in Frame 189
onClipEvent (load) { function reset() { this._x = 600; enemySpeed = 12; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } } onClipEvent (enterFrame) { _y = (sy + (150 * Math.cos((ang = ang + 0.092)))); }
Instance of Symbol 70 MovieClip in Frame 189
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 21; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.nextFrame(); } }
Frame 190
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); stop();
Instance of Symbol 84 MovieClip in Frame 190
onClipEvent (load) { function reset() { this._x = 700; enemySpeed = 3; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -200) { nextFrame(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 91 MovieClip in Frame 190
onClipEvent (load) { function reset() { this._x = 700; enemySpeed = 3; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -200) { nextFrame(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 70 MovieClip in Frame 190
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 15; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.nextFrame(); } }
Frame 191
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); numEnemy = 1; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } stop();
Instance of Symbol 80 MovieClip "enemy2" in Frame 191
onClipEvent (load) { function reset() { this._x = 600; this._y = random(200); enemySpeed = random(12) + 7; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 97 MovieClip in Frame 191
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = 20; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -20) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 70 MovieClip in Frame 191
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 35; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.nextFrame(); } }
Frame 192
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); stop();
Instance of Symbol 99 MovieClip "death" in Frame 192
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = random(20) + 5; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -400) { reset(); } if (this.hitTest(_root.stupid)) { _root.gotoAndPlay("gameover"); } }
Instance of Symbol 109 MovieClip "boss" in Frame 192
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = 10; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -400) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 70 MovieClip in Frame 192
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 20; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.Play(); } }
Instance of Symbol 116 MovieClip in Frame 202
onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Frame 211
stop();
Instance of Symbol 137 MovieClip "beam" in Frame 211
onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Frame 212
stop();
Instance of Symbol 146 MovieClip "recover" in Frame 212
onClipEvent (load) { function reset() { enemySpeed = 4; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } } onClipEvent (enterFrame) { _y = (sy + (150 * Math.cos((ang = ang + 0.092)))); } onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { gotoAndStop (1); }; } } onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { nextFrame(); } }
Instance of Symbol 152 MovieClip in Frame 212
onClipEvent (load) { _root.score = _root.score + 100000; }
Frame 213
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); numEnemy = 1; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } stop();
Instance of Symbol 157 MovieClip "enemy1" in Frame 213
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = random(27) + 5; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 157 MovieClip "enemy2" in Frame 213
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = random(27) + 5; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 157 MovieClip "enemy3" in Frame 213
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = random(27) + 5; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 157 MovieClip "enemy4" in Frame 213
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = random(27) + 5; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 70 MovieClip in Frame 213
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 40; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.NextFrame(); } }
Frame 214
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); numEnemy = 4; i = 2; while (i <= numEnemy) { enemy1.duplicateMovieClip("enemy" + i, i + 100); i++; } stop();
Instance of Symbol 160 MovieClip in Frame 214
onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } } onClipEvent (load) { bg_move = 1; } onClipEvent (enterFrame) { this._x = this._x - bg_move; }
Instance of Symbol 160 MovieClip in Frame 214
onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } } onClipEvent (load) { bg_move = 1; } onClipEvent (enterFrame) { this._x = this._x - bg_move; }
Instance of Symbol 160 MovieClip in Frame 214
onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } } onClipEvent (load) { bg_move = 1; } onClipEvent (enterFrame) { this._x = this._x - bg_move; }
Instance of Symbol 160 MovieClip in Frame 214
onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } } onClipEvent (load) { bg_move = 1; } onClipEvent (enterFrame) { this._x = this._x - bg_move; }
Instance of Symbol 168 MovieClip in Frame 214
onClipEvent (enterFrame) { if (this.hitTest(_root.spaceship)) { play(); } } onClipEvent (load) { function reset() { this._y = 530; this._x = random(600); enemySpeed = 10; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._y = this._y - (enemySpeed + _root.mainGround.groundSpeed); } else { this._y = this._y - enemySpeed; } if (this._y < -350) { reset(); } }
Instance of Symbol 168 MovieClip in Frame 214
onClipEvent (enterFrame) { if (this.hitTest(_root.spaceship)) { play(); } } onClipEvent (load) { function reset() { this._y = 550; this._x = random(600); enemySpeed = 10; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._y = this._y - (enemySpeed + _root.mainGround.groundSpeed); } else { this._y = this._y - enemySpeed; } if (this._y < -350) { reset(); } }
Instance of Symbol 168 MovieClip in Frame 214
onClipEvent (enterFrame) { if (this.hitTest(_root.spaceship)) { play(); } } onClipEvent (load) { function reset() { this._y = 510; this._x = random(3600); enemySpeed = 10; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._y = this._y - (enemySpeed + _root.mainGround.groundSpeed); } else { this._y = this._y - enemySpeed; } if (this._y < -350) { reset(); } }
Instance of Symbol 70 MovieClip in Frame 214
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 80; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.NextFrame(); } }
Frame 215
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); stop();
Instance of Symbol 172 MovieClip "enemy1" in Frame 215
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = random(10) + 5; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 157 MovieClip "enemy4" in Frame 215
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = random(27) + 5; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 172 MovieClip "enemy2" in Frame 215
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = random(10) + 5; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -70) { reset(); } if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Instance of Symbol 70 MovieClip in Frame 215
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 20; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.NextFrame(); } }
Frame 216
function cntdwn() { _root.timerthing = _root.timerthing - 1; } _root.timerthing = 500; asslick = setInterval(cntdwn, 1000); stop();
Instance of Symbol 146 MovieClip "recover" in Frame 216
onClipEvent (load) { function reset() { this._x = 600; enemySpeed = 4; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } } onClipEvent (enterFrame) { _y = (sy + (150 * Math.cos((ang = ang + 0.092)))); } onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { stopAllSounds(); tellTarget ("_parent.Health") { gotoAndStop (1); }; } } onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { play(); } }
Instance of Symbol 70 MovieClip in Frame 216
onClipEvent (load) { startseconds = getTimer() / 1000; endAt = 5; } onClipEvent (enterFrame) { if ((getTimer() / 1000) > (startseconds + endAt)) { _root.NextFrame(); } }
Frame 220
stopAllSounds();
Instance of Symbol 192 MovieClip "monster" in Frame 230
onClipEvent (enterFrame) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Frame 236
stop();
Frame 237
stopAllSounds();
Frame 238
stop();
Instance of Symbol 203 MovieClip in Frame 238
onClipEvent (load) { _root.score = _root.score + 1000000; }
Frame 239
stopAllSounds();
Frame 257
stop();
Frame 280
gotoAndStop (286);
Frame 283
stopAllSounds();
Frame 284
stop();
Frame 285
stop();
Frame 286
play();
Frame 1132
stop();
Instance of Symbol 55 MovieClip "clouds" in Frame 1132
onClipEvent (load) { function reset() { this._x = 600; this._y = random(370); enemySpeed = 100; this.gotoAndStop(1); } reset(); } onClipEvent (enterFrame) { if (_root.spaceship.scrollStart) { this._x = this._x - (enemySpeed + _root.mainGround.groundSpeed); } else { this._x = this._x - enemySpeed; } if (this._x < -700) { reset(); } }
Symbol 9 Button
on (release) { _root.play(); }
Symbol 10 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop (3); }
Symbol 10 MovieClip Frame 2
gotoAndPlay (1);
Instance of Symbol 25 MovieClip in Symbol 27 MovieClip Frame 2
onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root["enemy" + i])) { _root["enemy" + i].gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.enemy2)) { _root.enemy2.gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.it)) { _root.blood.nextFrame(); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.boss)) { _root.boss.nextFrame(); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.it)) { _root.flash.gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.enemy3)) { _root.enemy3.gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.enemy4)) { _root.enemy4.gotoAndPlay(2); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.monster)) { _root.superblood.nextFrame(); } i++; } } } onClipEvent (enterFrame) { if (this._name != "laser") { i = 1; while (i <= _root.numEnemy) { if (this.hitTest(_root.monster)) { _root.monster.nextFrame(); } i++; } } }
Symbol 28 MovieClip Frame 1
stop();
Symbol 28 MovieClip Frame 12
gotoAndStop (1);
Symbol 38 Button
on (press) { gotoAndPlay (149); }
Symbol 41 Button
on (press) { nextFrame(); }
Symbol 43 Button
on (release) { if ((i++) >= 2) { i = 0; } _quality = ["HIGH", "MEDIUM", "LOW"][i]; }
Symbol 48 Button
on (press) { gotoAndPlay (147); }
Symbol 53 MovieClip Frame 1
stop();
Symbol 53 MovieClip Frame 50
_root.gotoAndPlay("gameover");
Symbol 62 MovieClip Frame 1
stop();
Symbol 62 MovieClip Frame 12
gotoAndPlay (1);
Symbol 68 MovieClip Frame 1
stop();
Instance of Symbol 64 MovieClip in Symbol 68 MovieClip Frame 2
onClipEvent (load) { _root.score = _root.score + 100; }
Symbol 68 MovieClip Frame 6
stop();
Symbol 80 MovieClip Frame 1
stop();
Instance of Symbol 79 MovieClip in Symbol 80 MovieClip Frame 2
onClipEvent (load) { _root.score = _root.score + 100; }
Symbol 80 MovieClip Frame 7
stop();
Instance of Symbol 89 MovieClip in Symbol 91 MovieClip Frame 1
onClipEvent (load) { if (this.hitTest(_root.stupid)) { tellTarget ("_parent.Health") { nextFrame(); }; } }
Symbol 101 MovieClip Frame 1
stop();
Symbol 103 MovieClip Frame 2
stop();
Symbol 104 MovieClip Frame 2
stop();
Symbol 105 MovieClip Frame 2
stop();
Symbol 109 MovieClip Frame 1
stop();
Symbol 109 MovieClip Frame 2
stop();
Symbol 109 MovieClip Frame 3
stop();
Symbol 109 MovieClip Frame 4
stop();
Symbol 109 MovieClip Frame 5
play();
Instance of Symbol 107 MovieClip in Symbol 109 MovieClip Frame 5
onClipEvent (load) { _root.score = _root.score + 500; }
Symbol 109 MovieClip Frame 6
stop();
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 26
tellTarget ("_parent.") { nextFrame(); };
Symbol 140 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 1
stop();
Symbol 146 MovieClip Frame 2
stop(); _root.score = _root.score + 50;
Symbol 152 MovieClip Frame 131
tellTarget ("_parent.") { nextFrame(); };
Symbol 157 MovieClip Frame 1
stop();
Instance of Symbol 154 MovieClip in Symbol 157 MovieClip Frame 3
onClipEvent (load) { _root.score = _root.score + 100; }
Symbol 157 MovieClip Frame 7
stop();
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 55
stop();
Symbol 172 MovieClip Frame 1
stop();
Symbol 172 MovieClip Frame 2
_root.score = _root.score + 200;
Symbol 172 MovieClip Frame 5
stop();
Symbol 192 MovieClip Frame 1
stop();
Instance of Symbol 191 MovieClip in Symbol 192 MovieClip Frame 1
onClipEvent (enterFrame) { _y = (sy + (100 * Math.cos((ang = ang + 0.092)))); }
Symbol 195 MovieClip Frame 1
stop();
Symbol 195 MovieClip Frame 762
tellTarget ("_parent.") { play(); };
Symbol 203 MovieClip Frame 116
_root.Play();
Symbol 205 MovieClip Frame 203
_root.Play();
Symbol 214 MovieClip Frame 121
_root.Play();
Symbol 216 Button
on (press) { gotoAndPlay (149); }

Library Items

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

Instance Names

"spaceship"Frame 59Symbol 28 MovieClip
"laser"Frame 147Symbol 34 MovieClip
"health"Frame 149Symbol 53 MovieClip
"clouds"Frame 149Symbol 55 MovieClip
"stupid"Frame 168Symbol 62 MovieClip
"spaceship"Frame 168Symbol 28 MovieClip
"enemy1"Frame 188Symbol 68 MovieClip
"enemy2"Frame 189Symbol 80 MovieClip
"enemy2"Frame 191Symbol 80 MovieClip
"death"Frame 192Symbol 99 MovieClip
"boss"Frame 192Symbol 109 MovieClip
"it"Frame 202Symbol 118 MovieClip
"blood"Frame 202Symbol 121 MovieClip
"beam"Frame 211Symbol 137 MovieClip
"flash"Frame 211Symbol 140 MovieClip
"recover"Frame 212Symbol 146 MovieClip
"enemy1"Frame 213Symbol 157 MovieClip
"enemy2"Frame 213Symbol 157 MovieClip
"enemy3"Frame 213Symbol 157 MovieClip
"enemy4"Frame 213Symbol 157 MovieClip
"enemy1"Frame 215Symbol 172 MovieClip
"enemy4"Frame 215Symbol 157 MovieClip
"enemy2"Frame 215Symbol 172 MovieClip
"recover"Frame 216Symbol 146 MovieClip
"monster"Frame 230Symbol 192 MovieClip
"superblood"Frame 230Symbol 195 MovieClip
"dead"Frame 284Symbol 214 MovieClip
"clouds"Frame 1132Symbol 55 MovieClip
"bar"Symbol 10 MovieClip Frame 1Symbol 3 MovieClip
"slash"Symbol 28 MovieClip Frame 2Symbol 27 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$lx$1iH0Zmmuf0BFtRlDZ4UMn1."
ExportAssets (56)Timeline Frame 1Symbol 1 as "sound4"
ExportAssets (56)Timeline Frame 211Symbol 1 as "sound4"

Labels

"gameover"Frame 283
"loaded"Symbol 10 MovieClip Frame 3

Dynamic Text Variables

scoreSymbol 57 EditableText"                                                       "
timerthingSymbol 72 EditableText""
scoreSymbol 218 EditableText"                                                       "
scoreSymbol 230 EditableText"                                                       "




http://swfchan.com/14/65110/info.shtml
Created: 12/4 -2019 18:49:39 Last modified: 12/4 -2019 18:49:39 Server time: 05/05 -2024 16:15:27