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

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

Death Wheels.swf

This is the info page for
Flash #26868

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


Text
---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 1
function 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 2
gotoAndPlay (1);
Frame 20
stop();
Instance of Symbol 58 MovieClip in Frame 21
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 22
stop();
Frame 23
stop();
Instance of Symbol 58 MovieClip in Frame 23
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 24
stopAllSounds(); 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 24
onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.play(); } }
Instance of Symbol 102 MovieClip in Frame 24
onClipEvent (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 24
onClipEvent (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 24
onClipEvent (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 24
onClipEvent (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 24
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 25
stop();
Instance of Symbol 136 MovieClip "info_mid" in Frame 25
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } }
Instance of Symbol 99 MovieClip "ship" in Frame 25
onClipEvent (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 30
stop(); bones_found = 0;
Instance of Symbol 89 MovieClip in Frame 30
onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.nextFrame(); } }
Instance of Symbol 58 MovieClip in Frame 30
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 31
bones_found = 0; lives = 3; stop();
Instance of Symbol 89 MovieClip in Frame 31
onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.play(); } }
Frame 32
stop();
Instance of Symbol 136 MovieClip in Frame 32
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }
Instance of Symbol 99 MovieClip "ship" in Frame 32
onClipEvent (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 37
stop();
Instance of Symbol 58 MovieClip in Frame 37
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 38
bones_found = 0; lives = 3; stop();
Frame 39
stop();
Instance of Symbol 136 MovieClip in Frame 39
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }
Instance of Symbol 99 MovieClip "ship" in Frame 39
onClipEvent (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 44
stop(); bones_found = 0;
Instance of Symbol 58 MovieClip in Frame 44
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 45
bones_found = 0; lives = 3; stop();
Frame 46
stop();
Instance of Symbol 136 MovieClip in Frame 46
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }
Instance of Symbol 99 MovieClip "ship" in Frame 46
onClipEvent (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 51
stop(); bones_found = 0;
Instance of Symbol 58 MovieClip in Frame 51
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 52
bones_found = 0; stop();
Frame 53
stop();
Instance of Symbol 136 MovieClip in Frame 53
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }
Instance of Symbol 99 MovieClip "ship" in Frame 53
onClipEvent (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 58
stop(); bones_found = 0;
Instance of Symbol 58 MovieClip in Frame 58
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 59
stopAllSounds(); 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 59
onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.play(); } }
Instance of Symbol 102 MovieClip in Frame 59
onClipEvent (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 59
onClipEvent (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 59
onClipEvent (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 59
onClipEvent (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 59
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 60
stop();
Instance of Symbol 179 MovieClip "info_mid" in Frame 60
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } }
Instance of Symbol 99 MovieClip "ship" in Frame 60
onClipEvent (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 65
stop(); bones_found = 0;
Instance of Symbol 89 MovieClip in Frame 65
onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.nextFrame(); } }
Instance of Symbol 58 MovieClip in Frame 65
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 66
bones_found = 0; lives = 3; stop();
Instance of Symbol 89 MovieClip in Frame 66
onClipEvent (enterFrame) { if (this.hitTest(_root.ship.alt_hit) and (_root.bones_found == 5)) { _root.play(); } }
Frame 67
stop();
Instance of Symbol 179 MovieClip in Frame 67
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }
Instance of Symbol 99 MovieClip "ship" in Frame 67
onClipEvent (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 72
stop();
Instance of Symbol 58 MovieClip in Frame 72
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 73
bones_found = 0; lives = 3; stop();
Frame 74
stop();
Instance of Symbol 179 MovieClip in Frame 74
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }
Instance of Symbol 99 MovieClip "ship" in Frame 74
onClipEvent (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 79
stop(); bones_found = 0;
Instance of Symbol 58 MovieClip in Frame 79
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 80
bones_found = 0; lives = 3; stop();
Frame 81
stop();
Instance of Symbol 179 MovieClip in Frame 81
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }
Instance of Symbol 99 MovieClip "ship" in Frame 81
onClipEvent (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 86
stop(); bones_found = 0;
Instance of Symbol 58 MovieClip in Frame 86
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 87
bones_found = 0; stop();
Frame 88
stop();
Instance of Symbol 179 MovieClip in Frame 88
onClipEvent (enterFrame) { if (_root.bones_found == 5) { this.nextFrame(); } else { this.gotoAndStop(1); } }
Instance of Symbol 99 MovieClip "ship" in Frame 88
onClipEvent (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 93
stop(); bones_found = 0;
Instance of Symbol 58 MovieClip in Frame 93
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 94
stop();
Instance of Symbol 58 MovieClip in Frame 94
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 95
stopAllSounds();
Instance of Symbol 58 MovieClip in Frame 95
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Frame 404
stop();
Instance of Symbol 58 MovieClip in Frame 404
onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; Mouse.hide(); }
Instance of Symbol 4 MovieClip in Symbol 7 MovieClip [orb] Frame 1
onClipEvent (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 Button
on (release) { play(); }
Symbol 50 Button
on (release) { play(); }
Symbol 54 Button
on (release) { gotoAndPlay (95); }
Symbol 69 MovieClip Frame 1
stop();
Symbol 69 MovieClip Frame 5
stop();
Symbol 69 MovieClip Frame 10
stop();
Symbol 69 MovieClip Frame 15
stop();
Symbol 69 MovieClip Frame 20
stop();
Symbol 69 MovieClip Frame 25
stop();
Symbol 69 MovieClip Frame 30
stop();
Symbol 69 MovieClip Frame 35
stop();
Symbol 69 MovieClip Frame 40
_root.ship.gotoAndPlay(2); _root.Lives.play(); gotoAndStop (1);
Symbol 83 MovieClip Frame 1
stop();
Symbol 83 MovieClip Frame 2
stop();
Symbol 83 MovieClip Frame 3
stop();
Symbol 83 MovieClip Frame 4
stop();
Symbol 83 MovieClip Frame 5
_root.gotoAndStop("Game Over", 1); stop();
Symbol 86 MovieClip Frame 1
stop();
Symbol 86 MovieClip Frame 7
gotoAndPlay (2);
Symbol 99 MovieClip Frame 1
stop();
Symbol 99 MovieClip Frame 25
_root.prevFrame();
Instance of Symbol 102 MovieClip in Symbol 103 MovieClip Frame 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 2
onClipEvent (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 2
onClipEvent (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 3
onClipEvent (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 25
onClipEvent (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 25
onClipEvent (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 25
onClipEvent (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 26
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 Button
on (release) { nextFrame(); }
Symbol 129 MovieClip Frame 1
time = 40;
Symbol 129 MovieClip Frame 14
time = time - 1; gotoAndPlay (2);
Symbol 136 MovieClip Frame 1
stop();
Instance of Symbol 129 MovieClip "timer" in Symbol 136 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.time == 0) { _root.gotoAndPlay("Game Over", 1); } }
Symbol 136 MovieClip Frame 2
stop();
Symbol 143 Button
on (release) { play(); }
Instance of Symbol 102 MovieClip in Symbol 148 MovieClip Frame 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 2
onClipEvent (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 3
onClipEvent (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 25
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 1
onClipEvent (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 Button
on (release) { gotoAndPlay (95); }
Symbol 170 Button
on (release) { gotoAndPlay (21); }
Symbol 173 Button
on (release) { play(); }
Symbol 178 MovieClip Frame 1
time = 30;
Symbol 178 MovieClip Frame 14
time = time - 1; gotoAndPlay (2);
Symbol 179 MovieClip Frame 1
stop();
Instance of Symbol 178 MovieClip "timer" in Symbol 179 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.time == 0) { _root.gotoAndPlay("Game Over", 1); } }
Symbol 179 MovieClip Frame 2
stop();
Symbol 187 Button
on (release) { gotoAndPlay (59); }
Symbol 188 Button
on (release) { gotoAndStop (21); }
Symbol 205 Button
on (release) { getURL ("http://www.freewebs.com/absoluterequiem/Index.swf", _blank); }
Symbol 207 Button
on (release) { gotoAndPlay (95); }

Library Items

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

Instance Names

"loader"Frame 1Symbol 11 MovieClip
"health"Frame 24Symbol 69 MovieClip
"Lives"Frame 24Symbol 83 MovieClip
"engine"Frame 24Symbol 86 MovieClip
"ship"Frame 24Symbol 99 MovieClip
"info_mid"Frame 25Symbol 136 MovieClip
"ship"Frame 25Symbol 99 MovieClip
"ship"Frame 32Symbol 99 MovieClip
"ship"Frame 39Symbol 99 MovieClip
"ship"Frame 46Symbol 99 MovieClip
"ship"Frame 53Symbol 99 MovieClip
"health"Frame 59Symbol 69 MovieClip
"Lives"Frame 59Symbol 83 MovieClip
"engine"Frame 59Symbol 86 MovieClip
"ship"Frame 59Symbol 99 MovieClip
"info_mid"Frame 60Symbol 179 MovieClip
"ship"Frame 60Symbol 99 MovieClip
"ship"Frame 67Symbol 99 MovieClip
"ship"Frame 74Symbol 99 MovieClip
"ship"Frame 81Symbol 99 MovieClip
"ship"Frame 88Symbol 99 MovieClip
"alt_hit"Symbol 99 MovieClip Frame 1Symbol 93 MovieClip
"dead_hit"Symbol 99 MovieClip Frame 2Symbol 93 MovieClip
"timer"Symbol 136 MovieClip Frame 1Symbol 129 MovieClip
"timer"Symbol 179 MovieClip Frame 1Symbol 178 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "wallcrash_sound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "bell"
ExportAssets (56)Timeline Frame 1Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 25Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 25Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 25Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 25Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 25Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 32Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 32Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 32Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 32Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 32Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 39Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 39Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 39Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 39Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 39Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 46Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 46Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 46Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 46Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 46Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 53Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 53Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 53Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 53Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 53Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 60Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 60Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 60Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 60Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 60Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 67Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 67Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 67Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 67Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 67Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 74Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 74Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 74Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 74Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 74Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 81Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 81Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 81Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 81Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 81Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 88Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 88Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 88Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 88Symbol 7 as "orb"
ExportAssets (56)Timeline Frame 88Symbol 7 as "orb"

Dynamic Text Variables

_root.scoreSymbol 121 EditableText""
timeSymbol 127 EditableText""
timeSymbol 128 EditableText""
timeSymbol 176 EditableText""
timeSymbol 177 EditableText""




http://swfchan.com/6/26868/info.shtml
Created: 22/5 -2019 05:07:00 Last modified: 22/5 -2019 05:07:00 Server time: 12/05 -2024 10:12:30