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

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

Graag Revamped.swf

This is the info page for
Flash #29609

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


Text
Play More
Games

Difficulty

Easy

Medium

Hard

<<

REVAMPED

Asteroids fly through
the screen, but
are non-homing

The object of Graag is to avoid all enemy objects for as long as
possible. Use the arrow keys or WASD to move. If you
ever get bothered by the music, feel free to turn it off using the
space bar, at any time during the game.

There are aliens on
each level. They follow
you around.

Detonator Asteroids blink
blue, but when the light
turns red, they're about
to explode

Next >>

Black holes will suck
you towards them

Plus 100 Points

Plus 500 points

Brief Shield
-Takes One Hit-

Slows down
the alien

Transports you
to the next
level

Extra Life

Musical scores produced by Dimrain47

Play More
Games

Art- eatmorchikin6464
Script- Homakruz

Special thanks to Jammer for art submissions

Thankyou to Chejrw, n00bsta, and gentoro
for background images

VISIT RUBBER TACO UNLIMITED

Copyright Rubber Taco Unlimited 2006

Score

Time

X

1

3

2

1

GO

Level 1

Complete

+ 5,000

Here Comes
Level 2

Ready?

1

Level 2

+ 10,000

Here Comes
Level 3

1

X

=

Final Score

Score

Time

Don't bigger numbers look nice?

Play More
Games

ActionScript [AS1/AS2]

Frame 1
function reset() { _root.b = 0; _root.i = 0; _root.d = 0; _root.c = 4; _root.p = 0; _root.time = 0; _root.score = 0; _root.level = 1; _root.lives = 2; _root.gametimeenabled = false; _root.timeenabled = false; _root.pup = false; _root.powupout = false; _root.pfade = false; _root.fade = false; _root.hitready = true; _root.ship.dead = false; _root.levelout = false; _root.alien.speed = 0; _root.ship.rspeed = 0; _root.ship.speed = 0; _root.countdown._alpha = 100; while (i <= 3) { _root["d" + i] = false; _root["asteroid" + i]._y = 365; _root["asteroid" + i]._x = 17; _root["asteroid" + i]._alpha = 0; _root["asteroid" + _root.i].asteroidx = 0; _root["asteroid" + _root.i].asteroidy = 0; i++; } } function levelreset() { _root.b = 0; _root.i = 0; _root.d = 0; _root.c = 4; _root.p = 0; _root.gametimeenabled = false; _root.timeenabled = false; _root.pup = false; _root.powupout = false; _root.pfade = false; _root.fade = false; _root.hitready = true; _root.ship.dead = false; _root.levelout = false; _root.alien.speed = 0; _root.ship.rspeed = 0; _root.ship.speed = 0; _root.countdown._alpha = 100; while (i <= 3) { _root["d" + i] = false; _root["asteroid" + i]._y = 365; _root["asteroid" + i]._x = 17; _root["asteroid" + i]._alpha = 0; _root["asteroid" + _root.i].asteroidx = 0; _root["asteroid" + _root.i].asteroidy = 0; i++; } } var b = 0; var i = 0; var c = 4; var d = 0; var p = 0; var difficulty = 1; var time = 0; var score = 0; var level = 1; var lives = 2; var gametimeenabled = false; var timeenabled = false; var fade = false; var pfade = false; var d1 = false; var d2 = false; var d3 = false; var hitready = true; var powupout = false; var pup = false; var levelout = false; function firstframetimer() { if (_root.gametimeenabled) { _root.score = _root.score + (_root.level * _root.difficulty); } } function secondframetimer() { if (_root.gametimeenabled) { _root.score = _root.score + (_root.level * _root.difficulty); } } function thirdframetimer() { if (_root.gametimeenabled) { _root.score = _root.score + (_root.level * _root.difficulty); } } function lastframetimer() { _root.timer(); _root.gametimer(); } function gametimer() { if (_root.gametimeenabled) { _root.randompow(); if (!_root.levelout) { _root.time = _root.time + 1; _root.levcheck(); _root.score = _root.score + (_root.level * _root.difficulty); } } } function beginLevel() { _root.initPowerups(); _root.initAsteroid(); _root.startAsteroid(); if (_root.level == 1) { _root.lvl1.start(0, 999); _root.ship.mplaying = true; _root.alien.speed = 7.2; } else if (_root.level == 2) { _root.lvl2.start(0, 999); _root.ship.mplaying = true; _root.alien.speed = 5; } else { _root.lvl3.start(0, 999); _root.ship.mplaying = true; } _root.ship.speed = 0; _root.ship.rspeed = 7.5; } function nextlevel() { if (_root.level < 3) { var _local2 = _root.level + 1; _root.level = _local2; _root.gotoAndStop(["level" + _local2]); _root.lvl1.stop(); _root.lvl2.stop(); _root.lvl3.stop(); _root.countdown.fade.countnumber = ["Level " + _local2]; _root.levelreset(); _root.timeenabled = true; } } function levcheck() { if (_root.level < 3) { if (_root.time >= (((_root.level * 2) - 1) * 30)) { _root.initPowerups(); _root.levelout = true; _root.p6._x = Math.random() * 550; _root.p6._y = Math.random() * 400; _root.powupout = true; _root.pup = true; } } } function shipSpeedUp() { if (!_root.ship.dead) { _root.ship.engineprop.play(); _root.ship.speed = _root.ship.speed + 0.5; _root.ship.key = true; } } function shipSpeedDown() { if (!_root.ship.dead) { _root.ship.key = true; if (_root.ship.speed <= -2) { } else { _root.ship.speed = _root.ship.speed - 0.5; } } } function ShootTongue() { if (!_root.alien.shooting) { _root.alien.shooting = true; _root.alien.Tongue.play(); } } function shootPlasma() { if (_root.gametimeenabled) { if (!_root.alien.shooting) { var _local2 = 1; if (!_root["ps" + _local2].out) { _root["ps" + _local2]._y = _root.alien._x; _root["ps" + _local2]._x = _root.alien._x; _root["ps" + _local2].speed = 6 + _root.difficulty; _root["ps" + _local2].play(); } else { _local2++; if (!_root["ps" + _local2].out) { _root["ps" + _local2]._y = _root.alien._x; _root["ps" + _local2]._x = _root.alien._x; _root["ps" + _local2].speed = 6 + _root.difficulty; _root["ps" + _local2].play(); } else { _local2++; if (!_root["ps" + _local2].out) { _root["ps" + _local2]._y = _root.alien._x; _root["ps" + _local2]._x = _root.alien._x; _root["ps" + _local2].speed = 6 + _root.difficulty; _root["ps" + _local2].play(); } else { _local2++; if (!_root["ps" + _local2].out) { _root["ps" + _local2]._y = _root.alien._x; _root["ps" + _local2]._x = _root.alien._x; _root["ps" + _local2].speed = 6 + _root.difficulty; _root["ps" + _local2].play(); } else { _local2++; if (!_root["ps" + _local2].out) { _root["ps" + _local2]._y = _root.alien._x; _root["ps" + _local2]._x = _root.alien._x; _root["ps" + _local2].speed = 6 + _root.difficulty; _root["ps" + _local2].play(); } } } } } } } } function initAsteroid() { var _local2 = 1; while (_local2 <= 3) { _root["asteroid" + _local2]._y = -50; _root["asteroid" + _local2]._x = (Math.random() * 200) + 200; _root["asteroid" + _local2]._alpha = 100; _local2++; } } function startAsteroid() { _root.i = 1; _root.asteroidChange(); if (_root.difficulty > 2) { _root.i = 2; _root.asteroidChange(); if (_root.difficulty > 3) { _root.i = 3; _root.asteroidChange(); } } } function asteroidChange() { var _local2 = Math.random() * 20; if (_local2 <= (1 * _root.difficulty)) { if (!_root["d" + _root.i]) { _root["asteroid" + _root.i].gotoAndStop(2); _root["d" + _root.i] = true; } } else if (!_root["d" + _root.i]) { _root["asteroid" + _root.i].gotoAndStop(1); } _root["asteroid" + _root.i].negativer = Math.ceil(Math.random() * 2); if (_root["asteroid" + _root.i].negativer == 1) { _root["asteroid" + _root.i].rotation = Math.random() * 15; } else { _root["asteroid" + _root.i].rotation = (-Math.random()) * 15; } _root["asteroid" + _root.i].asteroidx = (Math.random() * 5) + 3; _root["asteroid" + _root.i].asteroidy = (Math.random() * 5) + 3; } function singleAsteroid() { var _local2 = _root.b; _root["asteroid" + _local2]._y = -10; _root["asteroid" + _local2]._x = (Math.random() * 200) + 200; _root["asteroid" + _local2]._alpha = 100; _root.i = _local2; _root.asteroidChange(); } onEnterFrame = function () { if (_root.blackhole.blackhole == true) { var _local7 = (_root.ship._x - _root.blackhole._x) * (_root.ship._x - _root.blackhole._x); var _local6 = (_root.ship._y - _root.blackhole._y) * (_root.ship._y - _root.blackhole._y); var _local10 = _local7 + _local6; var _local4 = Math.sqrt(_local10); if (_local4 >= 20) { var _local13 = _root.ship._x - _root.blackhole._x; var _local9 = _root.ship._y - _root.blackhole._y; var _local12 = Math.atan2(_local13, _local9); var _local2 = 700 / _local4; var _local8 = Math.sin(_local12); var _local3 = _local8 * _local2; var _local11 = (_local2 * _local2) - (_local3 * _local3); var _local5 = Math.sqrt(_local11); _root.ship._x = _root.ship._x - _local3; if (_root.ship._y >= _root.blackhole._y) { _root.ship._y = _root.ship._y - _local5; } if (_root.ship._y < _root.blackhole._y) { _root.ship._y = _root.ship._y + _local5; } } } }; function initPowerups() { var _local2 = 1; while (_local2 <= 6) { _root["p" + _local2]._y = -60; _root["p" + _local2]._x = 0; _root["p" + _local2]._alpha = 100; _local2++; } } function randompow() { if (!_root.powupout) { var _local3 = Math.random() * 5; var _local2 = Math.random() * 12; if ((_root.level == 1) || (_root.level == 2)) { if (_local3 < (1 * difficulty)) { if (_local2 <= 6) { _root.p1._x = Math.random() * 550; _root.p1._y = Math.random() * 400; _root.powupout = true; _root.pup = true; } if ((_local2 > 6) && (_local2 <= 9)) { _root.p2._x = Math.random() * 550; _root.p2._y = Math.random() * 400; _root.powupout = true; _root.pup = true; } if ((_local2 > 9) && (_local2 <= 10)) { if (_root.level < 3) { _root.p3._x = Math.random() * 550; _root.p3._y = Math.random() * 400; _root.powupout = true; _root.pup = true; } else { _root.p2._x = Math.random() * 550; _root.p2._y = Math.random() * 400; _root.powupout = true; _root.pup = true; } } if ((_local2 > 10) && (_local2 <= 11)) { if (!_root.ship.shield) { _root.p4._x = Math.random() * 550; _root.p4._y = Math.random() * 400; _root.powupout = true; _root.pup = true; } } if ((_local2 > 11) && (_local2 <= 12)) { _root.p5._x = Math.random() * 550; _root.p5._y = Math.random() * 400; _root.powupout = true; _root.pup = true; } } } } } function shieldpow() { if (!_root.ship.dead) { if (_root.pup) { _root.b = 4; _root.pup = false; _root.pfade = true; powsound.start(0, 1); _root.powfade(); _root.ship.shield = true; _root.ship.shieldmc.gotoAndPlay("powerup"); } } } function slowpow() { if (!_root.ship.dead) { if (_root.pup) { _root.b = 3; _root.pup = false; _root.pfade = true; powsound.start(0, 1); _root.powfade(); _root.slow(); } } } function hundpow() { if (!_root.ship.dead) { if (_root.pup) { _root.b = 1; if (_root.difficulty < 3) { _root.score = _root.score + 100; } else { _root.score = _root.score + (100 * _root.difficulty); } _root.pup = false; _root.pfade = true; powsound.start(0, 1); _root.powfade(); } } } function fivepow() { if (!_root.ship.dead) { if (_root.pup) { _root.b = 2; if (_root.difficulty < 3) { _root.score = _root.score + 500; } else { _root.score = _root.score + (500 * _root.difficulty); } _root.pup = false; _root.pfade = true; powsound.start(0, 1); _root.powfade(); } } } function lifepow() { if (!_root.ship.dead) { if (_root.pup) { _root.b = 5; if (_root.difficulty < 3) { _root.lives = _root.lives + 1; } else { _root.lives = _root.lives + ((1 * _root.difficulty) - 1); } _root.pup = false; _root.pfade = true; powsound.start(0, 1); _root.powfade(); } } } function levelpow() { if (!_root.ship.dead) { if (_root.pup) { _root.b = 6; _root.pup = false; _root.pfade = true; powsound.start(0, 1); _root.powfade(); } } } function powfade() { if (_root.pfade) { if (_root["p" + _root.b]._alpha > 0) { _root["p" + _root.b]._alpha = _root["p" + _root.b]._alpha - 10; } else { _root.pfade = false; _root.powupout = false; _root.resetPow(); if (_root.b == 6) { _root.nextlevel(); } _root.b = 0; } } } function resetPow() { _root["p" + _root.b]._x = 0; _root["p" + _root.b]._y = -60; _root["p" + _root.b]._alpha = 100; } function shieldHit() { _root.ship.shieldmc.gotoAndPlay("powerdown"); _root.ship.shield = false; _root.hitready = false; } function objectHit() { if (_root.hitready) { _root.lifeCheck(); } } function lifeCheck() { if (_root.lives > 1) { _root.hitready = false; shipexplosion.start(0, 1); _root.ship.gotoAndStop("invinc"); _root.lives = _root.lives - 1; } else { _root.thetimer.gotoAndStop("timestop"); _root.ship.dead = true; _root.ship.gotoAndStop("shipdead"); } } cdbeep = new Sound(); cdbeep.attachSound("cdbeep"); powsound = new Sound(); powsound.attachSound("powsound"); plasshot = new Sound(); plasshot.attachSound("plasshot"); shieldup = new Sound(); shieldup.attachSound("shieldup"); shielddown = new Sound(); shielddown.attachSound("shielddown"); shieldpulse = new Sound(); shieldpulse.attachSound("shieldpulse"); shipexplosion = new Sound(); shipexplosion.attachSound("shipexplosion"); dooropen = new Sound(); dooropen.attachSound("dooropen"); doorclose = new Sound(); doorclose.attachSound("doorclose"); lvl1 = new Sound(); lvl1.attachSound("lvl1"); lvl2 = new Sound(); lvl2.attachSound("lvl2"); lvl3 = new Sound(); lvl3.attachSound("lvl3"); endingmusic = new Sound(); endingmusic.attachSound("endingmusic"); pointadd = new Sound(); pointadd.attachSound("pointadd"); function RTUpopup() { getURL ("http://www.rubbertaco.com"); } newContext = new ContextMenu(); newContext.builtInItems.zoom = false; newContext.builtInItems.quality = true; newContext.builtInItems.print = false; newContext.builtInItems.save = false; newContext.builtInItems.loop = false; newContext.builtInItems.rewind = false; newContext.builtInItems.forward_back = false; newContext.builtInItems.play = false; option1 = new ContextMenuItem("Visit RTU", RTUpopup); newContext.customItems.push(option1); _root.menu = newContext; function __com_mochibot__(swfid, mc, lv, trk) { var x; var g; var s; var fv; var sb; var u; var res; var mb; var mbc; mb = "__mochibot__"; mbc = "mochibot.com"; g = (_global ? (_global) : (_level0._root)); if (g[mb + swfid]) { return(g[mb + swfid]); } s = System.security; x = mc._root.getSWFVersion; fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5))); if (!s) { s = {}; } sb = s.sandboxType; if (sb == "localWithFile") { return(null); } x = s.allowDomain; if (x) { s.allowDomain(mbc); } x = s.allowInsecureDomain; if (x) { s.allowInsecureDomain(mbc); } u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : ""); lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv)))); g[mb + "level"] = lv; if (fv == 5) { res = "_level" + lv; if (!eval (res)) { loadMovieNum (u, lv); } } else { res = mc.createEmptyMovieClip(mb + swfid, lv); res.loadMovie(u); } return(res); } __com_mochibot__("d9adf9d5", this, 10301, true); stop();
Instance of Symbol 23 MovieClip "preloader" in Frame 1
onClipEvent (enterFrame) { _root.sloaded = _root.getBytesLoaded(); _root.total = _root.getBytesTotal(); _root.percentloaded = int((_root.sloaded / _root.total) * 100) + "%"; if (_root.sloaded >= _root.total) { _root.gotoAndPlay("gameLoaded"); } this._xscale = (_root.sloaded / _root.total) * 100; }
Frame 2
stop();
Frame 3
_root.dooropen.start(0, 1);
Frame 85
_root.doorclose.start(0, 1);
Frame 141
_root.dooropen.start(0, 1);
Frame 185
stop();
Instance of Symbol 52 MovieClip "Diff" in Frame 185
onClipEvent (load) { this.gotoAndStop(_root.difficulty); } onClipEvent (enterFrame) { this.gotoAndStop(_root.difficulty); }
Frame 186
stop();
Frame 187
stop();
Frame 188
stop();
Frame 189
stop();
Instance of Symbol 130 MovieClip "ship" in Frame 189
onClipEvent (load) { var speed = undefined; var rspeed = undefined; var key = false; var dead = false; var shield = false; var mplaying = false; var kpress = false; } onClipEvent (enterFrame) { if (!_root.ship.dead) { if (Key.isDown(32)) { if (_root.gametimeenabled) { if (kpress == false) { if (!mplaying) { _root.lvl1.start(0, 999); mplaying = true; kpress = true; } else { _root.lvl1.stop(); mplaying = false; kpress = true; } } } } else { kpress = false; } if (Key.isDown(38) || (Key.isDown(87))) { _root.shipSpeedUp(); } else { _root.ship.engineprop.gotoAndStop("idle"); key = false; } if (Key.isDown(40) || (Key.isDown(83))) { _root.shipSpeedDown(); } else { key = false; } if (Key.isDown(39) || (Key.isDown(68))) { if (!dead) { _rotation = (_rotation + rspeed); } } if (Key.isDown(37) || (Key.isDown(65))) { if (!dead) { _rotation = (_rotation - rspeed); } } if (Math.abs(speed) > 10) { speed = 10; } speed = speed * 0.989; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.land.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } if (_x <= -15) { _x = 564; } if (_x >= 565) { _x = -14; } if (_y <= -15) { _y = 414; } if (_y >= 415) { _y = -14; } } }
Instance of Symbol 152 MovieClip "asteroid1" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (!_root.ship.dead) { this._x = this._x + asteroidx; this._y = this._y + asteroidy; this._rotation = this._rotation + rotation; if (this._x <= -15) { this._x = 564; _root.i = 1; _root.asteroidChange(); } if (this._x >= 565) { this._x = -14; _root.i = 1; _root.asteroidChange(); } if (this._y <= -15) { this._y = 414; _root.i = 1; _root.asteroidChange(); } if (this._y >= 415) { this._y = -5; _root.i = 1; _root.asteroidChange(); } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 154 MovieClip "asteroid2" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (!_root.ship.dead) { this._x = this._x - asteroidx; this._y = this._y + asteroidy; this._rotation = this._rotation + rotation; if (_root.difficulty >= 2) { if (this._x <= -15) { this._x = 564; _root.i = 2; _root.asteroidChange(); } if (this._x >= 565) { this._x = -14; _root.i = 2; _root.asteroidChange(); } if (this._y <= -15) { this._y = 414; _root.i = 2; _root.asteroidChange(); } if (this._y >= 415) { this._y = -5; _root.i = 2; _root.asteroidChange(); } } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 156 MovieClip "asteroid3" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (!_root.ship.dead) { this._x = this._x - asteroidx; this._y = this._y - asteroidy; this._rotation = this._rotation + rotation; if (_root.difficulty == 3) { if (this._x <= -15) { this._x = 564; _root.i = 3; _root.asteroidChange(); } if (this._x >= 565) { this._x = -14; _root.i = 3; _root.asteroidChange(); } if (this._y <= -15) { this._y = 414; _root.i = 3; _root.asteroidChange(); } if (this._y >= 415) { this._y = -5; _root.i = 3; _root.asteroidChange(); } } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 163 MovieClip "alien" in Frame 189
onClipEvent (load) { var speed = 0; var distance = (_root.ship._x - _root.alien._x); } onClipEvent (enterFrame) { if (!_root.ship.dead) { x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.land.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } if ((distance < 25) || (distance > -25)) { delta_x = _x - _root.ship._x; delta_y = _y - _root.ship._y; _rotation = ((-Math.atan2(delta_x, delta_y)) / (Math.PI/180)); } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 164 MovieClip "p1" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 1) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.hundpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.hundpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.hundpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.hundpow(); } }
Instance of Symbol 165 MovieClip "p2" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 2) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.fivepow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.fivepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.fivepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.fivepow(); } }
Instance of Symbol 166 MovieClip "p3" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 3) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.slowpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.slowpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.slowpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.slowpow(); } }
Instance of Symbol 167 MovieClip "p4" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 4) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldpow(); } }
Instance of Symbol 168 MovieClip "p6" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 6) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.levelpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.levelpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.levelpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.levelpow(); } }
Instance of Symbol 169 MovieClip "p5" in Frame 189
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 5) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.lifepow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.lifepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.lifepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.lifepow(); } }
Instance of Symbol 183 MovieClip "countdown" in Frame 189
onClipEvent (enterFrame) { _root.fadeout(); }
Frame 190
stop();
Frame 191
stop();
Frame 192
stop(); xdistance = 0; ydistance = 0;
Instance of Symbol 154 MovieClip "asteroid2" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (!_root.ship.dead) { this._x = this._x - asteroidx; this._y = this._y + asteroidy; this._rotation = this._rotation + rotation; if (_root.difficulty >= 2) { if (this._x <= -15) { this._x = 564; _root.i = 2; _root.asteroidChange(); } if (this._x >= 565) { this._x = -14; _root.i = 2; _root.asteroidChange(); } if (this._y <= -15) { this._y = 414; _root.i = 2; _root.asteroidChange(); } if (this._y >= 415) { this._y = -5; _root.i = 2; _root.asteroidChange(); } } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 156 MovieClip "asteroid3" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (!_root.ship.dead) { this._x = this._x - asteroidx; this._y = this._y - asteroidy; this._rotation = this._rotation + rotation; if (_root.difficulty == 3) { if (this._x <= -15) { this._x = 564; _root.i = 3; _root.asteroidChange(); } if (this._x >= 565) { this._x = -14; _root.i = 3; _root.asteroidChange(); } if (this._y <= -15) { this._y = 414; _root.i = 3; _root.asteroidChange(); } if (this._y >= 415) { this._y = -5; _root.i = 3; _root.asteroidChange(); } } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 152 MovieClip "asteroid1" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (!_root.ship.dead) { this._x = this._x + asteroidx; this._y = this._y + asteroidy; this._rotation = this._rotation + rotation; if (this._x <= -15) { this._x = 564; _root.i = 1; _root.asteroidChange(); } if (this._x >= 565) { this._x = -14; _root.i = 1; _root.asteroidChange(); } if (this._y <= -15) { this._y = 414; _root.i = 1; _root.asteroidChange(); } if (this._y >= 415) { this._y = -5; _root.i = 1; _root.asteroidChange(); } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 130 MovieClip "ship" in Frame 192
onClipEvent (load) { var speed = undefined; var rspeed = undefined; var key = false; var dead = false; var shield = false; var mplaying = false; var kpress = false; } onClipEvent (enterFrame) { if (!_root.ship.dead) { if (Key.isDown(32)) { if (_root.gametimeenabled) { if (kpress == false) { if (!mplaying) { _root.lvl2.start(0, 999); mplaying = true; kpress = true; } else { _root.lvl2.stop(); mplaying = false; kpress = true; } } } } else { kpress = false; } if (Key.isDown(38) || (Key.isDown(87))) { _root.shipSpeedUp(); } else { _root.ship.engineprop.gotoAndStop("idle"); key = false; } if (Key.isDown(40) || (Key.isDown(83))) { _root.shipSpeedDown(); } else { key = false; } if (Key.isDown(39) || (Key.isDown(68))) { if (!dead) { _rotation = (_rotation + rspeed); } } if (Key.isDown(37) || (Key.isDown(65))) { if (!dead) { _rotation = (_rotation - rspeed); } } if (Math.abs(speed) > 10) { speed = 10; } speed = speed * 0.989; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.land.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } if (_x <= -15) { _x = 564; } if (_x >= 565) { _x = -14; } if (_y <= -15) { _y = 414; } if (_y >= 415) { _y = -14; } } }
Instance of Symbol 164 MovieClip "p1" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 1) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.hundpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.hundpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.hundpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.hundpow(); } }
Instance of Symbol 165 MovieClip "p2" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 2) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.fivepow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.fivepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.fivepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.fivepow(); } }
Instance of Symbol 166 MovieClip "p3" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 3) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.slowpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.slowpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.slowpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.slowpow(); } }
Instance of Symbol 167 MovieClip "p4" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 4) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldpow(); } }
Instance of Symbol 168 MovieClip "p6" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 6) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.levelpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.levelpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.levelpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.levelpow(); } }
Instance of Symbol 239 MovieClip "alien" in Frame 192
onClipEvent (load) { var speed = 0; var distance = (_root.ship._x - _root.alien._x); var xdistance = (_root.ship._x - _x); var ydistance = (_root.ship._y - _y); var shooting = false; } onClipEvent (enterFrame) { xdistance = _root.ship._x - _x; ydistance = _root.ship._y - _y; if ((xdistance <= 50) && (xdistance >= -50)) { if ((ydistance <= 50) && (ydistance >= -50)) { _root.ShootTongue(); } } if (!_root.ship.dead) { x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.land.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } if ((distance < 25) || (distance > -25)) { delta_x = _x - _root.ship._x; delta_y = _y - _root.ship._y; _rotation = ((-Math.atan2(delta_x, delta_y)) / (Math.PI/180)); } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 169 MovieClip "p5" in Frame 192
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (_root.b == 5) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.lifepow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.lifepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.lifepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.lifepow(); } }
Instance of Symbol 183 MovieClip "countdown" in Frame 192
onClipEvent (enterFrame) { _root.fadeout(); }
Frame 193
stop();
Frame 194
stop();
Frame 195
stop();
Instance of Symbol 164 MovieClip "p1" in Frame 195
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { xdistance = _root.alien._x - _x; ydistance = _root.alien._y - _y; if ((xdistance <= 50) && (xdistance >= -50)) { if ((ydistance <= 50) && (ydistance >= -50)) { _root.b = 1; _root.pfade = false; _root.powupout = false; _root.resetPow(); _root.b = 0; } } if (_root.b == 1) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.hundpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.hundpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.hundpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.hundpow(); } }
Instance of Symbol 165 MovieClip "p2" in Frame 195
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { xdistance = _root.alien._x - _x; ydistance = _root.alien._y - _y; if ((xdistance <= 50) && (xdistance >= -50)) { if ((ydistance <= 50) && (ydistance >= -50)) { _root.b = 2; _root.pfade = false; _root.powupout = false; _root.resetPow(); _root.b = 0; } } if (_root.b == 2) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.fivepow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.fivepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.fivepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.fivepow(); } }
Instance of Symbol 166 MovieClip "p3" in Frame 195
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { xdistance = _root.alien._x - _x; ydistance = _root.alien._y - _y; if ((xdistance <= 50) && (xdistance >= -50)) { if ((ydistance <= 50) && (ydistance >= -50)) { _root.b = 3; _root.pfade = false; _root.powupout = false; _root.resetPow(); _root.b = 0; } } if (_root.b == 3) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.slowpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.slowpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.slowpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.slowpow(); } }
Instance of Symbol 167 MovieClip "p4" in Frame 195
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { xdistance = _root.alien._x - _x; ydistance = _root.alien._y - _y; if ((xdistance <= 50) && (xdistance >= -50)) { if ((ydistance <= 50) && (ydistance >= -50)) { _root.b = 4; _root.pfade = false; _root.powupout = false; _root.resetPow(); _root.b = 0; } } if (_root.b == 4) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldpow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldpow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldpow(); } }
Instance of Symbol 169 MovieClip "p5" in Frame 195
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { xdistance = _root.alien._x - _x; ydistance = _root.alien._y - _y; if ((xdistance <= 50) && (xdistance >= -50)) { if ((ydistance <= 50) && (ydistance >= -50)) { _root.b = 5; _root.pfade = false; _root.powupout = false; _root.resetPow(); _root.b = 0; } } if (_root.b == 5) { _root.powfade(); } if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.lifepow(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.lifepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.lifepow(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.lifepow(); } }
Instance of Symbol 258 MovieClip "ps1" in Frame 195
onClipEvent (load) { var n = 1; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._x; _root["ps" + n].speed = 0; var out = false; } onClipEvent (enterFrame) { if (_root["ps" + n]._rotation > 180) { _root["ps" + n]._y = _root["ps" + n]._y + (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x - (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } else { _root["ps" + n]._y = _root["ps" + n]._y - (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x + (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } if (this._x <= -10) { this._x = 550; } if (this._x >= 560) { this._x = 0; } if (this._y <= -10) { this._y = 400; } if (this._y >= 410) { this._y = 0; } }
Instance of Symbol 259 MovieClip "ps2" in Frame 195
onClipEvent (load) { var n = 2; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._x; _root["ps" + n].speed = 0; var out = false; } onClipEvent (enterFrame) { if (_root["ps" + n]._rotation > 180) { _root["ps" + n]._y = _root["ps" + n]._y + (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x - (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } else { _root["ps" + n]._y = _root["ps" + n]._y - (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x + (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } if (this._x <= -10) { this._x = 550; } if (this._x >= 560) { this._x = 0; } if (this._y <= -10) { this._y = 400; } if (this._y >= 410) { this._y = 0; } }
Instance of Symbol 260 MovieClip "ps3" in Frame 195
onClipEvent (load) { var n = 3; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._x; _root["ps" + n].speed = 0; var out = false; } onClipEvent (enterFrame) { if (_root["ps" + n]._rotation > 180) { _root["ps" + n]._y = _root["ps" + n]._y + (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x - (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } else { _root["ps" + n]._y = _root["ps" + n]._y - (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x + (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } if (this._x <= -10) { this._x = 550; } if (this._x >= 560) { this._x = 0; } if (this._y <= -10) { this._y = 400; } if (this._y >= 410) { this._y = 0; } }
Instance of Symbol 261 MovieClip "ps4" in Frame 195
onClipEvent (load) { var n = 4; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._x; _root["ps" + n].speed = 0; var out = false; } onClipEvent (enterFrame) { if (_root["ps" + n]._rotation > 180) { _root["ps" + n]._y = _root["ps" + n]._y + (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x - (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } else { _root["ps" + n]._y = _root["ps" + n]._y - (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x + (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } if (this._x <= -10) { this._x = 550; } if (this._x >= 560) { this._x = 0; } if (this._y <= -10) { this._y = 400; } if (this._y >= 410) { this._y = 0; } }
Instance of Symbol 262 MovieClip "ps5" in Frame 195
onClipEvent (load) { var n = 5; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._x; _root["ps" + n].speed = 0; var out = false; } onClipEvent (enterFrame) { if (_root["ps" + n]._rotation > 180) { _root["ps" + n]._y = _root["ps" + n]._y + (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x - (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } else { _root["ps" + n]._y = _root["ps" + n]._y - (_root["ps" + n].speed * Math.cos((Math.PI/180) * _root["ps" + n]._rotation)); _root["ps" + n]._x = _root["ps" + n]._x + (_root["ps" + n].speed * Math.sin((Math.PI/180) * _root["ps" + n]._rotation)); } if (this._x <= -10) { this._x = 550; } if (this._x >= 560) { this._x = 0; } if (this._y <= -10) { this._y = 400; } if (this._y >= 410) { this._y = 0; } }
Instance of Symbol 264 MovieClip "blackhole" in Frame 195
onClipEvent (load) { blackhole = false; } onClipEvent (enterFrame) { }
Instance of Symbol 130 MovieClip "ship" in Frame 195
onClipEvent (load) { var speed = undefined; var rspeed = undefined; var key = false; var dead = false; var shield = false; var mplaying = false; var kpress = false; } onClipEvent (enterFrame) { if (!_root.ship.dead) { if (Key.isDown(32)) { if (_root.gametimeenabled) { if (kpress == false) { if (!mplaying) { _root.lvl3.start(0, 999); mplaying = true; kpress = true; } else { _root.lvl3.stop(); mplaying = false; kpress = true; } } } } else { kpress = false; } if (Key.isDown(38) || (Key.isDown(87))) { _root.shipSpeedUp(); } else { _root.ship.engineprop.gotoAndStop("idle"); key = false; } if (Key.isDown(40) || (Key.isDown(83))) { _root.shipSpeedDown(); } else { key = false; } if (Key.isDown(39) || (Key.isDown(68))) { if (!dead) { _rotation = (_rotation + rspeed); } } if (Key.isDown(37) || (Key.isDown(65))) { if (!dead) { _rotation = (_rotation - rspeed); } } if (Math.abs(speed) > 10) { speed = 10; } speed = speed * 0.989; x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.land.hitTest(_x + x, _y + y, true)) { _x = (_x + x); _y = (_y + y); } if (_x <= -15) { _x = 564; } if (_x >= 565) { _x = -14; } if (_y <= -15) { _y = 414; } if (_y >= 415) { _y = -14; } } if (_root.ship.shield) { if (_root.floatingplasmas.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.floatingplasmas.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.floatingplasmas.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.floatingplasmas.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.floatingplasmas.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.floatingplasmas.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.floatingplasmas.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.floatingplasmas.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } e = 1; while (e < 5) { if (_root.ship.shield) { if (_root["ps" + e].hT.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root["ps" + e].hT.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root["ps" + e].hT.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root["ps" + e].hT.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root["ps" + e].hT.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root["ps" + e].hT.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root["ps" + e].hT.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root["ps" + e].hT.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } e++; } }
Instance of Symbol 268 MovieClip "alien" in Frame 195
onClipEvent (load) { var shooting = false; var speed = 0; var distance = (_root.ship._x - _root.alien._x); var xdistance = (_root.ship._x - _x); var ydistance = (_root.ship._y - _y); } onClipEvent (enterFrame) { _root.shootPlasma(); if (!_root.ship.dead) { x = Math.sin(_rotation * (Math.PI/180)) * speed; y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1; if (!_root.land.hitTest(_x + x, _y + y, true)) { } if ((distance < 25) || (distance > -25)) { delta_x = _x - _root.ship._x; delta_y = _y - _root.ship._y; _rotation = ((-Math.atan2(delta_x, delta_y)) / (Math.PI/180)); } } if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Instance of Symbol 274 MovieClip "floatingplasmas" in Frame 195
onClipEvent (enterFrame) { _rotation = (_rotation + 10); }
Instance of Symbol 183 MovieClip "countdown" in Frame 195
onClipEvent (enterFrame) { _root.fadeout(); }
Frame 196
stop(); stopAllSounds(); _root.Fscore = Number(_root.time) * Number(_root.score); playernombre = "Enter Name";
Symbol 27 Button
on (release) { gotoAndPlay ("intro"); }
Symbol 30 Button
on (release) { getURL ("http://www.rubbertaco.com", "_blank"); }
Symbol 35 Button
on (release) { getURL ("http://www.ugotgames.com", "_blank"); }
Symbol 44 Button
on (release) { _root.gotoAndStop("level1"); }
Symbol 45 Button
on (release) { _root.gotoAndPlay("instructions"); }
Symbol 46 Button
on (release) { getURL ("http://www.rubbertaco.com/games/GraagRevamped/highscores", "_blank"); }
Symbol 47 Button
on (release) { gotoAndPlay ("credits"); }
Symbol 52 MovieClip Frame 1
stop(); _root.difficulty = 1;
Symbol 52 MovieClip Frame 2
stop(); _root.difficulty = 2;
Symbol 52 MovieClip Frame 3
stop(); _root.difficulty = 3;
Symbol 55 Button
on (release) { if (_root.difficulty == 1) { _root.difficulty = 3; } else if (_root.difficulty == 2) { _root.difficulty = 1; } else if (_root.difficulty == 3) { _root.difficulty = 2; } }
Symbol 56 Button
on (release) { if (_root.difficulty == 1) { _root.difficulty = 2; } else if (_root.difficulty == 2) { _root.difficulty = 3; } else if (_root.difficulty == 3) { _root.difficulty = 1; } }
Symbol 58 Button
on (release) { getURL ("http://www.ugotgames.com", "_blank"); }
Symbol 62 Button
on (release) { _root.gotoAndStop("instructions2"); }
Symbol 63 Button
on (release) { gotoAndPlay ("mainMenu"); }
Symbol 107 Button
on (release) { gotoAndPlay ("mainMenu"); }
Symbol 109 Button
on (release) { getURL ("http://www.rubbertaco.com", "_blank"); }
Symbol 113 Button
on (release) { getURL ("http://www.ugotgames.com", "_blank"); }
Symbol 116 MovieClip Frame 1
stop();
Symbol 116 MovieClip Frame 13
gotoAndPlay ("engine");
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 2
_root.shieldup.start(0, 1);
Symbol 121 MovieClip Frame 33
_root.shieldpulse.start(0, 1);
Symbol 121 MovieClip Frame 62
gotoAndPlay ("shield");
Symbol 121 MovieClip Frame 63
_root.shielddown.start(0, 1);
Symbol 121 MovieClip Frame 68
gotoAndStop ("down"); _root.ship.gotoAndStop("invinc");
Symbol 125 MovieClip Frame 42
stop();
Symbol 126 MovieClip Frame 1
_root.shipexplosion.start(0, 1);
Symbol 126 MovieClip Frame 55
_root.gotoAndStop("gameOver");
Symbol 129 MovieClip Frame 1
Symbol 129 MovieClip Frame 31
_root.hitready = true; _root.ship.gotoAndPlay("ship");
Symbol 130 MovieClip Frame 1
stop(); _root.hitReady = true;
Symbol 130 MovieClip Frame 2
stop();
Symbol 130 MovieClip Frame 3
stop();
Instance of Symbol 148 MovieClip in Symbol 150 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ship)) { _root.objectHit(); } }
Symbol 151 MovieClip Frame 1
if (dtimer == undefined) { dtimer = 0; }
Symbol 151 MovieClip Frame 10
if (dtimer < 3) { dtimer = dtimer + 1; gotoAndPlay ("blue"); } else { gotoAndPlay ("red"); }
Symbol 151 MovieClip Frame 11
if (dtimer2 == undefined) { dtimer2 = 0; }
Symbol 151 MovieClip Frame 15
if (dtimer2 < 2) { dtimer2 = dtimer2 + 1; gotoAndPlay ("red"); } else { gotoAndPlay ("aexplosion"); }
Symbol 151 MovieClip Frame 17
_root.asteroid1.rotation = 0; _root.asteroid1.asteroidx = 0; _root.asteroid1.asteroidy = 0;
Symbol 151 MovieClip Frame 58
dtimer = undefined; dtimer2 = undefined; _root.d1 = false; _root.b = 1; _root.singleAsteroid();
Symbol 152 MovieClip Frame 1
stop();
Symbol 152 MovieClip Frame 2
stop();
Symbol 153 MovieClip Frame 1
if (dtimer == undefined) { dtimer = 0; }
Symbol 153 MovieClip Frame 10
if (dtimer < 3) { dtimer = dtimer + 1; gotoAndPlay ("blue"); } else { gotoAndPlay ("red"); }
Symbol 153 MovieClip Frame 11
if (dtimer2 == undefined) { dtimer2 = 0; }
Symbol 153 MovieClip Frame 15
if (dtimer2 < 2) { dtimer2 = dtimer2 + 1; gotoAndPlay ("red"); } else { gotoAndPlay ("aexplosion"); }
Symbol 153 MovieClip Frame 17
_root.asteroid2.rotation = 0; _root.asteroid2.asteroidx = 0; _root.asteroid2.asteroidy = 0;
Symbol 153 MovieClip Frame 58
dtimer = undefined; dtimer2 = undefined; _root.d2 = false; _root.b = 2; _root.singleAsteroid();
Symbol 154 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 2
stop();
Symbol 155 MovieClip Frame 1
if (dtimer == undefined) { dtimer = 0; }
Symbol 155 MovieClip Frame 10
if (dtimer < 3) { dtimer = dtimer + 1; gotoAndPlay ("blue"); } else { gotoAndPlay ("red"); }
Symbol 155 MovieClip Frame 11
if (dtimer2 == undefined) { dtimer2 = 0; }
Symbol 155 MovieClip Frame 15
if (dtimer2 < 2) { dtimer2 = dtimer2 + 1; gotoAndPlay ("red"); } else { gotoAndPlay ("aexplosion"); }
Symbol 155 MovieClip Frame 17
_root.asteroid3.rotation = 0; _root.asteroid3.asteroidx = 0; _root.asteroid3.asteroidy = 0;
Symbol 155 MovieClip Frame 58
dtimer = undefined; dtimer2 = undefined; _root.d3 = false; _root.b = 3; _root.singleAsteroid();
Symbol 156 MovieClip Frame 1
stop();
Symbol 156 MovieClip Frame 2
stop();
Symbol 163 MovieClip Frame 1
stop();
Instance of Symbol 161 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.ship.dead) { stop(); } }
Symbol 164 MovieClip Frame 1
stop();
Symbol 165 MovieClip Frame 1
stop();
Symbol 166 MovieClip Frame 1
stop();
Symbol 167 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 1
stop();
Symbol 169 MovieClip Frame 1
stop();
Symbol 182 MovieClip Frame 1
_root.cdbeep.start(0, 1);
Symbol 182 MovieClip Frame 10
_root.cdbeep.start(0, 1);
Symbol 182 MovieClip Frame 20
_root.cdbeep.start(0, 1);
Symbol 182 MovieClip Frame 31
_root.cdbeep.start(0, 1);
Symbol 182 MovieClip Frame 51
stop(); _alpha = 0; _root.gotoAndStop(["level" + _root.level]); _root.gametimeenabled = true; _root.beginLevel();
Symbol 184 MovieClip Frame 5
_root.firstframetimer();
Symbol 184 MovieClip Frame 10
_root.secondframetimer();
Symbol 184 MovieClip Frame 15
_root.thirdframetimer();
Symbol 184 MovieClip Frame 20
_root.lastframetimer();
Symbol 192 MovieClip Frame 33
_root.score = _root.score + 5000;
Symbol 192 MovieClip Frame 70
play();
Symbol 193 MovieClip Frame 1
_root.cdbeep.start(0, 1);
Symbol 193 MovieClip Frame 10
_root.cdbeep.start(0, 1);
Symbol 193 MovieClip Frame 20
_root.cdbeep.start(0, 1);
Symbol 193 MovieClip Frame 31
_root.cdbeep.start(0, 1);
Symbol 193 MovieClip Frame 51
play();
Symbol 201 MovieClip Frame 1
stop();
Instance of Symbol 195 MovieClip "TonHT" in Symbol 201 MovieClip Frame 2
onClipEvent (enterFrame) { if (_root.ship.shield) { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.shieldHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.shieldHit(); } } else { if (_root.ship.hitTest(getBounds(_root).xMax, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(getBounds(_root).xMin, _y, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMax, true)) { _root.objectHit(); } if (_root.ship.hitTest(_x, getBounds(_root).yMin, true)) { _root.objectHit(); } } }
Symbol 201 MovieClip Frame 11
gotoAndStop ("TonIdle"); _root.alien.shooting = false;
Symbol 239 MovieClip Frame 1
stop();
Symbol 248 MovieClip Frame 33
_root.score = _root.score + 10000;
Symbol 248 MovieClip Frame 70
play();
Symbol 258 MovieClip Frame 1
stop(); var n = 1;
Symbol 258 MovieClip Frame 2
_root.plasshot.start(0, 1); _root["ps" + n].out = true; _root.alien.shooting = true; _root["ps" + n]._rotation = _root.alien._rotation; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y;
Symbol 258 MovieClip Frame 8
_root.alien.shooting = false;
Symbol 258 MovieClip Frame 102
gotoAndStop ("plasmaidle"); _root["ps" + n].out = false; _root["ps" + n].speed = 0; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y; _root["ps" + n]._rotation = _root.alien._rotation;
Symbol 259 MovieClip Frame 1
stop(); var n = 2;
Symbol 259 MovieClip Frame 2
_root.plasshot.start(0, 1); _root["ps" + n].out = true; _root.alien.shooting = true; _root["ps" + n]._rotation = _root.alien._rotation; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y;
Symbol 259 MovieClip Frame 8
_root.alien.shooting = false;
Symbol 259 MovieClip Frame 102
gotoAndStop ("plasmaidle"); _root["ps" + n].out = false; _root["ps" + n].speed = 0; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y; _root["ps" + n]._rotation = _root.alien._rotation;
Symbol 260 MovieClip Frame 1
stop(); var n = 3;
Symbol 260 MovieClip Frame 2
_root.plasshot.start(0, 1); _root["ps" + n].out = true; _root.alien.shooting = true; _root["ps" + n]._rotation = _root.alien._rotation; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y;
Symbol 260 MovieClip Frame 8
_root.alien.shooting = false;
Symbol 260 MovieClip Frame 102
gotoAndStop ("plasmaidle"); _root["ps" + n].out = false; _root["ps" + n].speed = 0; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y; _root["ps" + n]._rotation = _root.alien._rotation;
Symbol 261 MovieClip Frame 1
stop(); var n = 4;
Symbol 261 MovieClip Frame 2
_root.plasshot.start(0, 1); _root["ps" + n].out = true; _root.alien.shooting = true; _root["ps" + n]._rotation = _root.alien._rotation; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y;
Symbol 261 MovieClip Frame 8
_root.alien.shooting = false;
Symbol 261 MovieClip Frame 102
gotoAndStop ("plasmaidle"); _root["ps" + n].out = false; _root["ps" + n].speed = 0; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y; _root["ps" + n]._rotation = _root.alien._rotation;
Symbol 262 MovieClip Frame 1
stop(); var n = 5;
Symbol 262 MovieClip Frame 2
_root.plasshot.start(0, 1); _root["ps" + n].out = true; _root.alien.shooting = true; _root["ps" + n]._rotation = _root.alien._rotation; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y;
Symbol 262 MovieClip Frame 8
_root.alien.shooting = false;
Symbol 262 MovieClip Frame 102
gotoAndStop ("plasmaidle"); _root["ps" + n].out = false; _root["ps" + n].speed = 0; _root["ps" + n]._x = _root.alien._x; _root["ps" + n]._y = _root.alien._y; _root["ps" + n]._rotation = _root.alien._rotation;
Symbol 264 MovieClip Frame 1
stop(); BlackHrep = 0;
Symbol 264 MovieClip Frame 6
_root.blackhole.blackhole = true;
Symbol 264 MovieClip Frame 40
if (BlackHrep < 3) { BlackHrep = BlackHrep + 1; gotoAndPlay ("Spin"); } else { gotoAndPlay ("Cont"); _root.blackhole.blackhole = false; BlackHrep = 0; }
Symbol 264 MovieClip Frame 45
gotoAndStop ("Stop");
Symbol 288 Button
on (release) { gotoAndPlay ("mainMenu"); _root.reset(); }
Symbol 289 Button
on (release) { if (((_root.playernombre == "Enter Name") || (_root.playernombre == "YOU MUST ENTER A NAME")) || (_root.playernombre == "")) { _root.playernombre = "YOU MUST ENTER A NAME"; } else { lo = new LoadVars(); so = new LoadVars(); score = _root.Fscore; hsname = _root.playernombre; gamename = "GraagRevamped"; getURL ("http://www.rubbertaco.com/highscores/hsa.php", "_blank", "POST"); gotoAndStop ("mainMenu"); } }
Symbol 291 Button
on (release) { getURL ("http://www.ugotgames.com", "_blank"); }

Library Items

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

Instance Names

"preloader"Frame 1Symbol 23 MovieClip
"Diff"Frame 185Symbol 52 MovieClip
"ship"Frame 189Symbol 130 MovieClip
"asteroid1"Frame 189Symbol 152 MovieClip
"asteroid2"Frame 189Symbol 154 MovieClip
"asteroid3"Frame 189Symbol 156 MovieClip
"alien"Frame 189Symbol 163 MovieClip
"p1"Frame 189Symbol 164 MovieClip
"p2"Frame 189Symbol 165 MovieClip
"p3"Frame 189Symbol 166 MovieClip
"p4"Frame 189Symbol 167 MovieClip
"p6"Frame 189Symbol 168 MovieClip
"p5"Frame 189Symbol 169 MovieClip
"shiplives"Frame 189Symbol 175 EditableText
"engineprop"Frame 189Symbol 116 MovieClip
"countdown"Frame 189Symbol 183 MovieClip
"thetimer"Frame 189Symbol 184 MovieClip
"asteroid2"Frame 192Symbol 154 MovieClip
"asteroid3"Frame 192Symbol 156 MovieClip
"asteroid1"Frame 192Symbol 152 MovieClip
"ship"Frame 192Symbol 130 MovieClip
"p1"Frame 192Symbol 164 MovieClip
"p2"Frame 192Symbol 165 MovieClip
"p3"Frame 192Symbol 166 MovieClip
"p4"Frame 192Symbol 167 MovieClip
"p6"Frame 192Symbol 168 MovieClip
"alien"Frame 192Symbol 239 MovieClip
"p5"Frame 192Symbol 169 MovieClip
"shiplives"Frame 192Symbol 242 EditableText
"engineprop"Frame 192Symbol 116 MovieClip
"countdown"Frame 192Symbol 183 MovieClip
"thetimer"Frame 192Symbol 184 MovieClip
"shiplives"Frame 195Symbol 251 EditableText
"engineprop"Frame 195Symbol 116 MovieClip
"p1"Frame 195Symbol 164 MovieClip
"p2"Frame 195Symbol 165 MovieClip
"p3"Frame 195Symbol 166 MovieClip
"p4"Frame 195Symbol 167 MovieClip
"p5"Frame 195Symbol 169 MovieClip
"ps1"Frame 195Symbol 258 MovieClip
"ps2"Frame 195Symbol 259 MovieClip
"ps3"Frame 195Symbol 260 MovieClip
"ps4"Frame 195Symbol 261 MovieClip
"ps5"Frame 195Symbol 262 MovieClip
"blackhole"Frame 195Symbol 264 MovieClip
"ship"Frame 195Symbol 130 MovieClip
"alien"Frame 195Symbol 268 MovieClip
"floatingplasmas"Frame 195Symbol 274 MovieClip
"countdown"Frame 195Symbol 183 MovieClip
"thetimer"Frame 195Symbol 184 MovieClip
"Flames"Symbol 128 MovieClip Frame 1Symbol 116 MovieClip
"engineprop"Symbol 130 MovieClip Frame 1Symbol 116 MovieClip
"shieldmc"Symbol 130 MovieClip Frame 1Symbol 121 MovieClip
"d"Symbol 152 MovieClip Frame 2Symbol 151 MovieClip
"d"Symbol 154 MovieClip Frame 2Symbol 153 MovieClip
"d"Symbol 156 MovieClip Frame 2Symbol 155 MovieClip
"HT"Symbol 163 MovieClip Frame 1Symbol 158 MovieClip
"fade"Symbol 183 MovieClip Frame 1Symbol 182 MovieClip
"TonHT"Symbol 201 MovieClip Frame 2Symbol 195 MovieClip
"Tongue"Symbol 239 MovieClip Frame 1Symbol 201 MovieClip
"hT"Symbol 258 MovieClip Frame 2Symbol 254 MovieClip
"hT"Symbol 259 MovieClip Frame 2Symbol 254 MovieClip
"hT"Symbol 260 MovieClip Frame 2Symbol 254 MovieClip
"ht"Symbol 261 MovieClip Frame 2Symbol 254 MovieClip
"hT"Symbol 262 MovieClip Frame 2Symbol 254 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "shipexplosion"
ExportAssets (56)Timeline Frame 1Symbol 2 as "shieldpulse"
ExportAssets (56)Timeline Frame 1Symbol 3 as "powsound"
ExportAssets (56)Timeline Frame 1Symbol 4 as "shieldup"
ExportAssets (56)Timeline Frame 1Symbol 5 as "shielddown"
ExportAssets (56)Timeline Frame 1Symbol 6 as "pointadd"
ExportAssets (56)Timeline Frame 1Symbol 7 as "plasshot"
ExportAssets (56)Timeline Frame 1Symbol 8 as "lvl3"
ExportAssets (56)Timeline Frame 1Symbol 9 as "lvl2"
ExportAssets (56)Timeline Frame 1Symbol 10 as "lvl1"
ExportAssets (56)Timeline Frame 1Symbol 11 as "endingmusic"
ExportAssets (56)Timeline Frame 1Symbol 12 as "cdbeep"
ExportAssets (56)Timeline Frame 1Symbol 13 as "dooropen"
ExportAssets (56)Timeline Frame 1Symbol 14 as "doorclose"

Labels

"gameLoading"Frame 1
"gameLoaded"Frame 2
"intro"Frame 3
"mainMenu"Frame 185
"instructions"Frame 186
"instructions2"Frame 187
"credits"Frame 188
"level1"Frame 189
"level2"Frame 192
"level3"Frame 195
"gameOver"Frame 196
"idle"Symbol 116 MovieClip Frame 1
"down"Symbol 121 MovieClip Frame 1
"powerup"Symbol 121 MovieClip Frame 2
"shield"Symbol 121 MovieClip Frame 6
"powerdown"Symbol 121 MovieClip Frame 63
"ship"Symbol 130 MovieClip Frame 1
"shipdead"Symbol 130 MovieClip Frame 2
"invinc"Symbol 130 MovieClip Frame 3
"blue"Symbol 151 MovieClip Frame 1
"red"Symbol 151 MovieClip Frame 11
"aexplosion"Symbol 151 MovieClip Frame 17
"blue"Symbol 153 MovieClip Frame 1
"red"Symbol 153 MovieClip Frame 11
"aexplosion"Symbol 153 MovieClip Frame 17
"d"Symbol 154 MovieClip Frame 2
"blue"Symbol 155 MovieClip Frame 1
"red"Symbol 155 MovieClip Frame 11
"aexplosion"Symbol 155 MovieClip Frame 17
"timestop"Symbol 184 MovieClip Frame 1
"TonIdle"Symbol 201 MovieClip Frame 1
"plasmaidle"Symbol 258 MovieClip Frame 1
"plasmamove"Symbol 258 MovieClip Frame 2
"plasmaidle"Symbol 259 MovieClip Frame 1
"plasmamove"Symbol 259 MovieClip Frame 2
"plasmaidle"Symbol 260 MovieClip Frame 1
"plasmamove"Symbol 260 MovieClip Frame 2
"plasmaidle"Symbol 261 MovieClip Frame 1
"plasmamove"Symbol 261 MovieClip Frame 2
"plasmaidle"Symbol 262 MovieClip Frame 1
"plasmamove"Symbol 262 MovieClip Frame 2
"Stop"Symbol 264 MovieClip Frame 1
"Spin"Symbol 264 MovieClip Frame 6
"Cont"Symbol 264 MovieClip Frame 41

Dynamic Text Variables

scoreSymbol 170 EditableText""
timeSymbol 172 EditableText""
livesSymbol 175 EditableText"1"
scoreSymbol 240 EditableText""
timeSymbol 241 EditableText""
livesSymbol 242 EditableText"1"
scoreSymbol 249 EditableText""
timeSymbol 250 EditableText""
livesSymbol 251 EditableText"1"
timeSymbol 284 EditableText""
scoreSymbol 285 EditableText""
FscoreSymbol 286 EditableText""
playernombreSymbol 287 EditableText""




http://swfchan.com/6/29609/info.shtml
Created: 19/5 -2019 20:29:35 Last modified: 19/5 -2019 20:29:35 Server time: 09/05 -2024 04:56:34