STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229671 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5191 |
This is the info page for Flash #26868 |
---LOADING--- |
Created by Flame reaper |
An absolute requiem game |
PLAY |
PLAY |
PLAY |
The game is preety simple. just use the arrow keys to move around . up accelerates and down brakes and reverses. the left and right arrows turn. you have to drive around each level collecting all of the bones . when youve got all of the gones just drive over the finish line to move on to the next level. try not to bump into things to much if you run out of time or lives its game over for you. |
Damage |
Retrive the bones |
Time |
Cross the Finish line |
Cross the Finish line |
Cross the Finish line |
Cross the Finish line |
Well done you got all of the grim reapers bones. click bellow to move on the to the next level. |
congratulations you beat the game |
Produced by Absolute Reuiem |
Creted by Flame Reaper |
Music and sounds Game Maker Flame Reaper System of a down |
Action Script by Flame Reaper |
With Special Thanks to Cartoon Smart Game Maker Newgrounds |
Thanks to everybody at newgrounds Hope you enjoyed the game |
Flame Rearer |
Absolute Requiem |
Henry Stratton |
Joe Edmonds, Matt Fenton Henry Stratton, Jake Mann |
ActionScript [AS1/AS2]
Frame 1function copyrite_text() { } function visit_our_site() { getURL ("http://www.freewebs.com/absoluterequiem/Index.swf", _blank); } function visit_newgrounds() { getURL ("http://www.newgrounds.com", _blank); } MENU = new ContextMenu(); MENU.hideBuiltInItems(); copyrite = new ContextMenuItem("Absolute Requiem \u00A9 2005", copyrite_text); site = new ContextMenuItem("Visit our site", visit_our_site); newgrounds = new ContextMenuItem("Visit Newgrounds", visit_newgrounds); MENU.customItems.push(copyrite); MENU.customItems.push(site); MENU.customItems.push(newgrounds); _root.menu = MENU; if (_framesloaded >= _totalframes) { gotoAndPlay (3); } else { _root.loader._yscale = (getBytesLoaded() / getBytesTotal()) * 100; }Frame 2gotoAndPlay (1);Frame 20stop();Instance of Symbol 58 MovieClip in Frame 21onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 22stop();Frame 23stop();Instance of Symbol 58 MovieClip in Frame 23onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 24stopAllSounds(); bones_found = 0; lives = 3; stop(); function doSomething() { } function goToSite() { getURL ("http://www.freewebs.com/absoluterequiem/Index.swf", _blank); } score = 0; var wallcrash_sound = new Sound(); wallcrash_sound.attachSound("wallcrash_sound"); var bell_sound = new Sound(); bell_sound.attachSound("bell"); bones_found = 0; MENU = new ContextMenu(); MENU.hideBuiltInItems(); Functioned = new ContextMenuItem("Absolute Requiem \u00A9 2005", doSomething); Functioned2 = new ContextMenuItem("Visit our site", goToSite); MENU.customItems.push(Functioned); MENU.customItems.push(Functioned2); _root.menu = MENU;Instance of Symbol 89 MovieClip in Frame 24onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.play(); } }Instance of Symbol 102 MovieClip in Frame 24onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Frame 24onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y - 20; } }Instance of Symbol 102 MovieClip in Frame 24onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Frame 24onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 58 MovieClip in Frame 24onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 25stop();Instance of Symbol 136 MovieClip "info_mid" in Frame 25onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } }Instance of Symbol 99 MovieClip "ship" in Frame 25onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 30stop(); bones_found = 0;Instance of Symbol 89 MovieClip in Frame 30onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.nextFrame(); } }Instance of Symbol 58 MovieClip in Frame 30onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 31bones_found = 0; lives = 3; stop();Instance of Symbol 89 MovieClip in Frame 31onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.play(); } }Frame 32stop();Instance of Symbol 136 MovieClip in Frame 32onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }Instance of Symbol 99 MovieClip "ship" in Frame 32onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 37stop();Instance of Symbol 58 MovieClip in Frame 37onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 38bones_found = 0; lives = 3; stop();Frame 39stop();Instance of Symbol 136 MovieClip in Frame 39onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }Instance of Symbol 99 MovieClip "ship" in Frame 39onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 44stop(); bones_found = 0;Instance of Symbol 58 MovieClip in Frame 44onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 45bones_found = 0; lives = 3; stop();Frame 46stop();Instance of Symbol 136 MovieClip in Frame 46onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }Instance of Symbol 99 MovieClip "ship" in Frame 46onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 51stop(); bones_found = 0;Instance of Symbol 58 MovieClip in Frame 51onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 52bones_found = 0; stop();Frame 53stop();Instance of Symbol 136 MovieClip in Frame 53onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }Instance of Symbol 99 MovieClip "ship" in Frame 53onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 58stop(); bones_found = 0;Instance of Symbol 58 MovieClip in Frame 58onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 59stopAllSounds(); bones_found = 0; lives = 3; stop(); function doSomething() { } function goToSite() { getURL ("http://www.freewebs.com/absoluterequiem/Index.swf", _blank); } score = 0; var wallcrash_sound = new Sound(); wallcrash_sound.attachSound("wallcrash_sound"); var bell_sound = new Sound(); bell_sound.attachSound("bell"); bones_found = 0; MENU = new ContextMenu(); MENU.hideBuiltInItems(); Functioned = new ContextMenuItem("Absolute Requiem \u00A9 2005", doSomething); Functioned2 = new ContextMenuItem("Visit our site", goToSite); MENU.customItems.push(Functioned); MENU.customItems.push(Functioned2); _root.menu = MENU;Instance of Symbol 89 MovieClip in Frame 59onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.play(); } }Instance of Symbol 102 MovieClip in Frame 59onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Frame 59onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y - 20; } }Instance of Symbol 102 MovieClip in Frame 59onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Frame 59onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 58 MovieClip in Frame 59onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 60stop();Instance of Symbol 179 MovieClip "info_mid" in Frame 60onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } }Instance of Symbol 99 MovieClip "ship" in Frame 60onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 65stop(); bones_found = 0;Instance of Symbol 89 MovieClip in Frame 65onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.nextFrame(); } }Instance of Symbol 58 MovieClip in Frame 65onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 66bones_found = 0; lives = 3; stop();Instance of Symbol 89 MovieClip in Frame 66onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.play(); } }Frame 67stop();Instance of Symbol 179 MovieClip in Frame 67onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }Instance of Symbol 99 MovieClip "ship" in Frame 67onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 72stop();Instance of Symbol 58 MovieClip in Frame 72onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 73bones_found = 0; lives = 3; stop();Frame 74stop();Instance of Symbol 179 MovieClip in Frame 74onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }Instance of Symbol 99 MovieClip "ship" in Frame 74onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 79stop(); bones_found = 0;Instance of Symbol 58 MovieClip in Frame 79onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 80bones_found = 0; lives = 3; stop();Frame 81stop();Instance of Symbol 179 MovieClip in Frame 81onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }Instance of Symbol 99 MovieClip "ship" in Frame 81onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 86stop(); bones_found = 0;Instance of Symbol 58 MovieClip in Frame 86onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 87bones_found = 0; stop();Frame 88stop();Instance of Symbol 179 MovieClip in Frame 88onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }Instance of Symbol 99 MovieClip "ship" in Frame 88onClipEvent (load) { speed = 0; } onClipEvent (enterFrame) { if (Key.isDown(38)) { _root.engine.gotoAndPlay(2); speed = speed + 1; } else { _root.engine.gotoAndStop(1); } if (Key.isDown(40)) { _root.engine.gotoAndPlay(2); speed = speed - 1; } else { _root.engine.gotoAndStop(1); } if (Math.abs(speed) > 15) { speed = speed * 0.8; } if (Key.isDown(37)) { _rotation = (_rotation - 15); } if (Key.isDown(39)) { _rotation = (_rotation + 15); } speed = speed * 0.9; 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); } else { speed = speed * -0.6; } }Frame 93stop(); bones_found = 0;Instance of Symbol 58 MovieClip in Frame 93onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 94stop();Instance of Symbol 58 MovieClip in Frame 94onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 95stopAllSounds();Instance of Symbol 58 MovieClip in Frame 95onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Frame 404stop();Instance of Symbol 58 MovieClip in Frame 404onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }Instance of Symbol 4 MovieClip in Symbol 7 MovieClip [orb] Frame 1onClipEvent (load) { this.bone_touched = false; } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (this.bone_touched == false)) { _root.bones_found = _root.bones_found + 1; _root.score = _root.score + 10; this.bone_touched = true; _root.bell_sound.start(); _root.bell_sound.setVolume(100); } if (this.bone_touched == true) { _parent._x = -100; _parent._y = -100; } }Symbol 42 Buttonon (release) { play(); }Symbol 50 Buttonon (release) { play(); }Symbol 54 Buttonon (release) { gotoAndPlay (95); }Symbol 69 MovieClip Frame 1stop();Symbol 69 MovieClip Frame 5stop();Symbol 69 MovieClip Frame 10stop();Symbol 69 MovieClip Frame 15stop();Symbol 69 MovieClip Frame 20stop();Symbol 69 MovieClip Frame 25stop();Symbol 69 MovieClip Frame 30stop();Symbol 69 MovieClip Frame 35stop();Symbol 69 MovieClip Frame 40_root.ship.gotoAndPlay(2); _root.Lives.play(); gotoAndStop (1);Symbol 83 MovieClip Frame 1stop();Symbol 83 MovieClip Frame 2stop();Symbol 83 MovieClip Frame 3stop();Symbol 83 MovieClip Frame 4stop();Symbol 83 MovieClip Frame 5_root.gotoAndStop("Game Over", 1); stop();Symbol 86 MovieClip Frame 1stop();Symbol 86 MovieClip Frame 7gotoAndPlay (2);Symbol 99 MovieClip Frame 1stop();Symbol 99 MovieClip Frame 25_root.prevFrame();Instance of Symbol 102 MovieClip in Symbol 103 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 103 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y - 20; } }Instance of Symbol 102 MovieClip in Symbol 104 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 104 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 106 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 106 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 106 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y - 20; } }Instance of Symbol 102 MovieClip in Symbol 106 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._ + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship.gotoAndPlay(2); _root.wallcrash_sound.start(); _root.health.nextFrame(); } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 2onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 2onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship.gotoAndPlay(2); _root.wallcrash_sound.start(); _root.health.nextFrame(); } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 3onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship.gotoAndPlay(2); _root.wallcrash_sound.start(); _root.health.nextFrame(); } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 25onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 25onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 25onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } }Instance of Symbol 102 MovieClip in Symbol 111 MovieClip Frame 26onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y - 20; } }Instance of Symbol 102 MovieClip in Symbol 114 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 114 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 114 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 114 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x - 20; } }Instance of Symbol 102 MovieClip in Symbol 114 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 114 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 114 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 114 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 116 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 116 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 116 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y - 20; } }Instance of Symbol 102 MovieClip in Symbol 116 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Symbol 126 Buttonon (release) { nextFrame(); }Symbol 129 MovieClip Frame 1time = 40;Symbol 129 MovieClip Frame 14time = time - 1; gotoAndPlay (2);Symbol 136 MovieClip Frame 1stop();Instance of Symbol 129 MovieClip "timer" in Symbol 136 MovieClip Frame 1onClipEvent (enterFrame) { if (this.time == 0) { _root.gotoAndPlay("Game Over", 1); } }Symbol 136 MovieClip Frame 2stop();Symbol 143 Buttonon (release) { play(); }Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x - 20; } }Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 149 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 149 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 149 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 149 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x - 20; } }Instance of Symbol 102 MovieClip in Symbol 149 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 149 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 149 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 149 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 154 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 154 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x - 20; } }Instance of Symbol 102 MovieClip in Symbol 154 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship.gotoAndPlay(2); _root.wallcrash_sound.start(); _root.health.nextFrame(); } }Instance of Symbol 102 MovieClip in Symbol 154 MovieClip Frame 2onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship.gotoAndPlay(2); _root.wallcrash_sound.start(); _root.health.nextFrame(); } }Instance of Symbol 102 MovieClip in Symbol 154 MovieClip Frame 3onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship.gotoAndPlay(2); _root.wallcrash_sound.start(); _root.health.nextFrame(); } }Instance of Symbol 102 MovieClip in Symbol 154 MovieClip Frame 25onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } }Instance of Symbol 102 MovieClip in Symbol 155 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 155 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 155 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 155 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x - 20; } }Instance of Symbol 102 MovieClip in Symbol 155 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 155 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Instance of Symbol 102 MovieClip in Symbol 155 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._y = _root.ship._y + 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._y = _root.ship._y + 20; } }Instance of Symbol 102 MovieClip in Symbol 155 MovieClip Frame 1onClipEvent (enterFrame) { while (this.hitTest(_root.ship.alt_hit)) { _root.ship._x = _root.ship._x - 20; _root.wallcrash_sound.start(); _root.health.nextFrame(); } } onClipEvent (enterFrame) { if (this.hitTest(_root.ship.dead_hit)) { _root.ship._x = _root.ship._x + 20; } }Symbol 168 Buttonon (release) { gotoAndPlay (95); }Symbol 170 Buttonon (release) { gotoAndPlay (21); }Symbol 173 Buttonon (release) { play(); }Symbol 178 MovieClip Frame 1time = 30;Symbol 178 MovieClip Frame 14time = time - 1; gotoAndPlay (2);Symbol 179 MovieClip Frame 1stop();Instance of Symbol 178 MovieClip "timer" in Symbol 179 MovieClip Frame 1onClipEvent (enterFrame) { if (this.time == 0) { _root.gotoAndPlay("Game Over", 1); } }Symbol 179 MovieClip Frame 2stop();Symbol 187 Buttonon (release) { gotoAndPlay (59); }Symbol 188 Buttonon (release) { gotoAndStop (21); }Symbol 205 Buttonon (release) { getURL ("http://www.freewebs.com/absoluterequiem/Index.swf", _blank); }Symbol 207 Buttonon (release) { gotoAndPlay (95); }
Library Items
Symbol 1 Sound [wallcrash_sound] | ||
Symbol 2 Sound [bell] | ||
Symbol 3 Graphic | Used by:4 | |
Symbol 4 MovieClip | Uses:3 | Used by:7 |
Symbol 5 Graphic | Used by:6 | |
Symbol 6 MovieClip | Uses:5 | Used by:7 |
Symbol 7 MovieClip [orb] | Uses:4 6 | Used by:Timeline |
Symbol 8 Graphic | Used by:Timeline | |
Symbol 9 Graphic | Used by:Timeline | |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip | Uses:10 | Used by:Timeline |
Symbol 12 Graphic | Used by:Timeline | |
Symbol 13 Graphic | Used by:15 | |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:13 14 | Used by:Timeline |
Symbol 16 Font | Used by:17 | |
Symbol 17 Text | Uses:16 | Used by:18 |
Symbol 18 MovieClip | Uses:17 | Used by:Timeline |
Symbol 19 Bitmap | Used by:21 | |
Symbol 20 Bitmap | Used by:21 | |
Symbol 21 Graphic | Uses:19 20 | Used by:Timeline |
Symbol 22 Graphic | Used by:Timeline | |
Symbol 23 Graphic | Used by:Timeline | |
Symbol 24 Graphic | Used by:Timeline | |
Symbol 25 Graphic | Used by:Timeline | |
Symbol 26 Bitmap | Used by:27 | |
Symbol 27 Graphic | Uses:26 | Used by:Timeline |
Symbol 28 Graphic | Used by:Timeline | |
Symbol 29 Graphic | Used by:Timeline | |
Symbol 30 Graphic | Used by:Timeline | |
Symbol 31 Graphic | Used by:32 | |
Symbol 32 MovieClip | Uses:31 | Used by:Timeline |
Symbol 33 Graphic | Used by:Timeline | |
Symbol 34 Font | Used by:35 36 61 70 72 74 131 132 133 134 140 166 191 193 194 195 196 198 199 200 201 202 | |
Symbol 35 Text | Uses:34 | Used by:Timeline |
Symbol 36 Text | Uses:34 | Used by:Timeline |
Symbol 37 Graphic | Used by:Timeline | |
Symbol 38 Font | Used by:39 40 41 | |
Symbol 39 Text | Uses:38 | Used by:42 |
Symbol 40 Text | Uses:38 | Used by:42 |
Symbol 41 Text | Uses:38 | Used by:42 |
Symbol 42 Button | Uses:39 40 41 | Used by:Timeline |
Symbol 43 Bitmap | Used by:44 60 | |
Symbol 44 Graphic | Uses:43 | Used by:Timeline |
Symbol 45 Graphic | Used by:Timeline | |
Symbol 46 Graphic | Used by:50 54 126 | |
Symbol 47 Graphic | Used by:50 | |
Symbol 48 Graphic | Used by:50 | |
Symbol 49 Graphic | Used by:50 | |
Symbol 50 Button | Uses:46 47 48 49 | Used by:Timeline |
Symbol 51 Graphic | Used by:54 | |
Symbol 52 Graphic | Used by:54 | |
Symbol 53 Graphic | Used by:54 | |
Symbol 54 Button | Uses:46 51 52 53 | Used by:Timeline |
Symbol 55 Graphic | Used by:Timeline | |
Symbol 56 Graphic | Used by:58 | |
Symbol 57 Graphic | Used by:58 | |
Symbol 58 MovieClip | Uses:56 57 | Used by:Timeline |
Symbol 59 Sound | Used by:Timeline | |
Symbol 60 Graphic | Uses:43 | Used by:Timeline |
Symbol 61 Text | Uses:34 | Used by:Timeline |
Symbol 62 Graphic | Used by:Timeline | |
Symbol 63 Graphic | Used by:69 | |
Symbol 64 Graphic | Used by:69 | |
Symbol 65 Graphic | Used by:69 | |
Symbol 66 Graphic | Used by:69 | |
Symbol 67 Graphic | Used by:69 | |
Symbol 68 Graphic | Used by:69 | |
Symbol 69 MovieClip | Uses:63 64 65 66 67 68 | Used by:Timeline |
Symbol 70 Text | Uses:34 | Used by:Timeline |
Symbol 71 Graphic | Used by:136 179 Timeline | |
Symbol 72 Text | Uses:34 | Used by:136 179 Timeline |
Symbol 73 Graphic | Used by:136 179 Timeline | |
Symbol 74 Text | Uses:34 | Used by:136 179 Timeline |
Symbol 75 Graphic | Used by:83 99 Timeline | |
Symbol 76 Graphic | Used by:83 99 Timeline | |
Symbol 77 Graphic | Used by:83 | |
Symbol 78 Graphic | Used by:83 | |
Symbol 79 Graphic | Used by:83 | |
Symbol 80 Graphic | Used by:83 | |
Symbol 81 Graphic | Used by:83 | |
Symbol 82 Graphic | Used by:83 | |
Symbol 83 MovieClip | Uses:75 76 77 78 79 80 81 82 | Used by:Timeline |
Symbol 84 Graphic | Used by:86 | |
Symbol 85 Sound | Used by:86 | |
Symbol 86 MovieClip | Uses:84 85 | Used by:Timeline |
Symbol 87 Graphic | Used by:Timeline | |
Symbol 88 Graphic | Used by:89 | |
Symbol 89 MovieClip | Uses:88 | Used by:Timeline |
Symbol 90 Graphic | Used by:Timeline | |
Symbol 91 Graphic | Used by:99 | |
Symbol 92 Graphic | Used by:93 | |
Symbol 93 MovieClip | Uses:92 | Used by:99 |
Symbol 94 Graphic | Used by:95 | |
Symbol 95 MovieClip | Uses:94 | Used by:99 |
Symbol 96 Graphic | Used by:99 | |
Symbol 97 Graphic | Used by:98 | |
Symbol 98 MovieClip | Uses:97 | Used by:99 |
Symbol 99 MovieClip | Uses:75 76 91 93 95 96 98 SS1 | Used by:Timeline |
Symbol 100 Graphic | Used by:101 | |
Symbol 101 MovieClip | Uses:100 | Used by:102 103 104 Timeline |
Symbol 102 MovieClip | Uses:101 | Used by:103 104 106 111 114 116 148 149 154 155 Timeline |
Symbol 103 MovieClip | Uses:101 102 | Used by:Timeline |
Symbol 104 MovieClip | Uses:101 102 | Used by:Timeline |
Symbol 105 Graphic | Used by:106 | |
Symbol 106 MovieClip | Uses:105 102 | Used by:Timeline |
Symbol 107 Graphic | Used by:111 154 | |
Symbol 108 Graphic | Used by:111 154 | |
Symbol 109 Graphic | Used by:111 154 | |
Symbol 110 Graphic | Used by:111 154 | |
Symbol 111 MovieClip | Uses:107 108 102 109 110 | Used by:Timeline |
Symbol 112 Graphic | Used by:114 148 149 155 | |
Symbol 113 Graphic | Used by:114 148 149 155 | |
Symbol 114 MovieClip | Uses:112 102 113 | Used by:Timeline |
Symbol 115 Graphic | Used by:116 | |
Symbol 116 MovieClip | Uses:115 102 | Used by:Timeline |
Symbol 117 Graphic | Used by:Timeline | |
Symbol 118 Graphic | Used by:Timeline | |
Symbol 119 Graphic | Used by:Timeline | |
Symbol 120 Font | Used by:121 127 128 176 177 | |
Symbol 121 EditableText | Uses:120 | Used by:Timeline |
Symbol 122 Graphic | Used by:Timeline | |
Symbol 123 Graphic | Used by:126 | |
Symbol 124 Graphic | Used by:126 | |
Symbol 125 Graphic | Used by:126 | |
Symbol 126 Button | Uses:46 123 124 125 | Used by:Timeline |
Symbol 127 EditableText | Uses:120 | Used by:129 |
Symbol 128 EditableText | Uses:120 | Used by:129 |
Symbol 129 MovieClip | Uses:127 128 | Used by:136 |
Symbol 130 Graphic | Used by:136 179 Timeline | |
Symbol 131 Text | Uses:34 | Used by:135 |
Symbol 132 Text | Uses:34 | Used by:135 |
Symbol 133 Text | Uses:34 | Used by:135 |
Symbol 134 Text | Uses:34 | Used by:135 |
Symbol 135 MovieClip | Uses:131 132 133 134 | Used by:136 179 |
Symbol 136 MovieClip | Uses:71 72 73 74 129 130 135 | Used by:Timeline |
Symbol 137 Graphic | Used by:Timeline | |
Symbol 138 Graphic | Used by:Timeline | |
Symbol 139 Graphic | Used by:Timeline | |
Symbol 140 Text | Uses:34 | Used by:Timeline |
Symbol 141 Graphic | Used by:143 168 170 187 188 207 | |
Symbol 142 Graphic | Used by:143 | |
Symbol 143 Button | Uses:141 142 | Used by:Timeline |
Symbol 144 Graphic | Used by:Timeline | |
Symbol 145 Graphic | Used by:Timeline | |
Symbol 146 Graphic | Used by:Timeline | |
Symbol 147 Graphic | Used by:Timeline | |
Symbol 148 MovieClip | Uses:112 102 113 | Used by:Timeline |
Symbol 149 MovieClip | Uses:112 102 113 | Used by:Timeline |
Symbol 150 Graphic | Used by:Timeline | |
Symbol 151 Graphic | Used by:Timeline | |
Symbol 152 Graphic | Used by:Timeline | |
Symbol 153 Graphic | Used by:Timeline | |
Symbol 154 MovieClip | Uses:107 108 102 109 110 | Used by:Timeline |
Symbol 155 MovieClip | Uses:112 102 113 | Used by:Timeline |
Symbol 156 Graphic | Used by:Timeline | |
Symbol 157 Graphic | Used by:Timeline | |
Symbol 158 Graphic | Used by:Timeline | |
Symbol 159 Graphic | Used by:Timeline | |
Symbol 160 Graphic | Used by:Timeline | |
Symbol 161 Graphic | Used by:Timeline | |
Symbol 162 Graphic | Used by:Timeline | |
Symbol 163 Graphic | Used by:Timeline | |
Symbol 164 Graphic | Used by:Timeline | |
Symbol 165 Graphic | Used by:Timeline | |
Symbol 166 Text | Uses:34 | Used by:Timeline |
Symbol 167 Graphic | Used by:168 187 | |
Symbol 168 Button | Uses:141 167 | Used by:Timeline |
Symbol 169 Graphic | Used by:170 188 | |
Symbol 170 Button | Uses:141 169 | Used by:Timeline |
Symbol 171 Graphic | Used by:173 | |
Symbol 172 Graphic | Used by:173 | |
Symbol 173 Button | Uses:171 172 | Used by:Timeline |
Symbol 174 Graphic | Used by:Timeline | |
Symbol 175 Graphic | Used by:Timeline | |
Symbol 176 EditableText | Uses:120 | Used by:178 |
Symbol 177 EditableText | Uses:120 | Used by:178 |
Symbol 178 MovieClip | Uses:176 177 | Used by:179 |
Symbol 179 MovieClip | Uses:71 72 73 74 178 130 135 | Used by:Timeline |
Symbol 180 Graphic | Used by:Timeline | |
Symbol 181 Graphic | Used by:Timeline | |
Symbol 182 Graphic | Used by:Timeline | |
Symbol 183 Graphic | Used by:Timeline | |
Symbol 184 Graphic | Used by:Timeline | |
Symbol 185 Graphic | Used by:Timeline | |
Symbol 186 Graphic | Used by:Timeline | |
Symbol 187 Button | Uses:141 167 | Used by:Timeline |
Symbol 188 Button | Uses:141 169 | Used by:Timeline |
Symbol 189 Graphic | Used by:Timeline | |
Symbol 190 Graphic | Used by:Timeline | |
Symbol 191 Text | Uses:34 | Used by:Timeline |
Symbol 192 Graphic | Used by:Timeline | |
Symbol 193 Text | Uses:34 | Used by:Timeline |
Symbol 194 Text | Uses:34 | Used by:Timeline |
Symbol 195 Text | Uses:34 | Used by:Timeline |
Symbol 196 Text | Uses:34 | Used by:Timeline |
Symbol 197 Graphic | Used by:Timeline | |
Symbol 198 Text | Uses:34 | Used by:Timeline |
Symbol 199 Text | Uses:34 | Used by:Timeline |
Symbol 200 Text | Uses:34 | Used by:Timeline |
Symbol 201 Text | Uses:34 | Used by:Timeline |
Symbol 202 Text | Uses:34 | Used by:Timeline |
Symbol 203 Graphic | Used by:205 | |
Symbol 204 Graphic | Used by:205 | |
Symbol 205 Button | Uses:203 204 | Used by:Timeline |
Symbol 206 Graphic | Used by:207 | |
Symbol 207 Button | Uses:141 206 | Used by:Timeline |
Streaming Sound 1 | Used by:Symbol 99 MovieClip |
Instance Names
"loader" | Frame 1 | Symbol 11 MovieClip |
"health" | Frame 24 | Symbol 69 MovieClip |
"Lives" | Frame 24 | Symbol 83 MovieClip |
"engine" | Frame 24 | Symbol 86 MovieClip |
"ship" | Frame 24 | Symbol 99 MovieClip |
"info_mid" | Frame 25 | Symbol 136 MovieClip |
"ship" | Frame 25 | Symbol 99 MovieClip |
"ship" | Frame 32 | Symbol 99 MovieClip |
"ship" | Frame 39 | Symbol 99 MovieClip |
"ship" | Frame 46 | Symbol 99 MovieClip |
"ship" | Frame 53 | Symbol 99 MovieClip |
"health" | Frame 59 | Symbol 69 MovieClip |
"Lives" | Frame 59 | Symbol 83 MovieClip |
"engine" | Frame 59 | Symbol 86 MovieClip |
"ship" | Frame 59 | Symbol 99 MovieClip |
"info_mid" | Frame 60 | Symbol 179 MovieClip |
"ship" | Frame 60 | Symbol 99 MovieClip |
"ship" | Frame 67 | Symbol 99 MovieClip |
"ship" | Frame 74 | Symbol 99 MovieClip |
"ship" | Frame 81 | Symbol 99 MovieClip |
"ship" | Frame 88 | Symbol 99 MovieClip |
"alt_hit" | Symbol 99 MovieClip Frame 1 | Symbol 93 MovieClip |
"dead_hit" | Symbol 99 MovieClip Frame 2 | Symbol 93 MovieClip |
"timer" | Symbol 136 MovieClip Frame 1 | Symbol 129 MovieClip |
"timer" | Symbol 179 MovieClip Frame 1 | Symbol 178 MovieClip |
Special Tags
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "wallcrash_sound" |
ExportAssets (56) | Timeline Frame 1 | Symbol 2 as "bell" |
ExportAssets (56) | Timeline Frame 1 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 25 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 25 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 25 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 25 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 25 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 32 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 32 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 32 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 32 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 32 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 39 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 39 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 39 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 39 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 39 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 46 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 46 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 46 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 46 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 46 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 53 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 53 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 53 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 53 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 53 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 60 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 60 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 60 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 60 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 60 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 67 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 67 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 67 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 67 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 67 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 74 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 74 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 74 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 74 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 74 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 81 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 81 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 81 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 81 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 81 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 88 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 88 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 88 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 88 | Symbol 7 as "orb" |
ExportAssets (56) | Timeline Frame 88 | Symbol 7 as "orb" |
Dynamic Text Variables
_root.score | Symbol 121 EditableText | "" |
time | Symbol 127 EditableText | "" |
time | Symbol 128 EditableText | "" |
time | Symbol 176 EditableText | "" |
time | Symbol 177 EditableText | "" |
|