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

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

Collecto.swf

This is the info page for
Flash #73763

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


Text
The Story:
One day the Wizard was walking and he ran into a Ghost
and a Chomper. They scattered his body parts leaving
only his magical hat. Your job is to find the pieces of his
body, as the magical hat and save the Wizard.

How to play:
Guide the Wizard's magical hat around the playing field, while
collecting body pieces, and avoiding the Chomper and the Ghost.
Each time you collect all of the pieces, you'll progress a level.  If
you get hit when you don't have any pieces, it's Game Over!

Controls:
Up Arrow: Up
Down Arrow: Down
Left Arrow: Left
Right Arrow: Right

Next

Passwords:
Each time you pass a level you will obtain a password
which you can enter in the password area on this front
page.  The passwords are used to get you back to the level
you were on before you lost.

Hints:
1) When you obtain a password from a level, the password given
is able to be highlighted, so you can copy/paste it into the
password area so that you don't have to keep typing it all over
again!
2) When going to the next level after the password giving screen,
you can press the space bar instead of clicking the button with
your mouse.

Back

GOOD LUCK!!!

Submit

(Just press Enter)

<P ALIGN="LEFT"><FONT FACE="_sans" SIZE="16" COLOR="#FF0000">Password not recognized</FONT></P>

Next Level

Level 2 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">fudjud</FONT></P>

Next Level

(Just Press Space)

Level 3 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">ishkabibble</FONT></P>

Level 4 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">sharshotono</FONT></P>

Level 5 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">8bu9sd098</FONT></P>

Level 6 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">giveawayofthecentury</FONT></P>

Level 7 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">zeldagamesrule</FONT></P>

Level 8 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">doyouhavetogotothebathroom</FONT></P>

Level 9 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">almostattheendofthegame</FONT></P>

Level 10 Password

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">iknowthatjeremysfilmsisbetterthanmeineveryway</FONT></P>

<P ALIGN="LEFT"><FONT FACE="_typewriter" SIZE="24" COLOR="#000000">Sh0wMithaS3cr3ts</FONT></P>

Secrets Screen Password

Replay

Secrets

Zelda Market
Theme

Final Fantasy
One Winged Angel

Zelda
Windmill Song

NEXT

NEXT

BOSS
BATTLE

Windows XP
Simulator
Trailor

Back

Back

Windows
XPerience
Trailor

Metroid MX
Demo

Download a
Real-Time
Cuckoo Clock
(FLA)

Coming later this year

But already had

Get ready

For the biggest
XPerience in your life

Samus!!!  You are in great danger, your suit has
become infected!  A vaccine has been detected in the
Abandoned Laboratory, you must get there now!

There were some bio-signs detected in the area.
Be careful.

Do you understand your mission?

Yes

Yes

No

No

-END OF DEMO-
Sorry, I ran out of time to work on the game demo!

Replay


ActionScript [AS1/AS2]

Frame 1
Stage.showMenu = false;
Frame 2
stop();
Frame 3
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 1; ghost.speed = 2; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 4
stop();
Frame 5
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 3; ghost.speed = 4; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 6
stop();
Frame 7
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 4; ghost.speed = 5; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 8
stop();
Frame 9
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 5; ghost.speed = 6; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 9
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 10
stop();
Frame 11
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 6; ghost.speed = 7; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 12
stop();
Frame 13
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 7; ghost.speed = 8; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 14
stop();
Frame 15
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 8; ghost.speed = 9; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 16
stop();
Frame 17
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 10; ghost.speed = 11; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 18
stop();
Frame 19
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 12; ghost.speed = 13; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 19
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 20
stop();
Frame 21
function movewizard() { if (Key.isDown(39)) { this._x = this._x + this.speed; } if (Key.isDown(37)) { this._x = this._x - this.speed; } if (Key.isDown(40)) { this._y = this._y + this.speed; } if (Key.isDown(38)) { this._y = this._y - this.speed; } if (this._x > 530) { this._x = 20; } if (this._x < 20) { this._x = 530; } if (this._y > 380) { this._y = 20; } if (this._y < 20) { this._y = 380; } if (this.hitTest(_root.monster)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.ghost)) { if (_root.parts._currentframe == 1) { _root.gotoAndStop("gameover"); } else { _root.wizard.gotoAndStop(_root.wizard._currentframe - 1); _root.parts.gotoAndStop(_root.parts._currentframe - 1); } } if (this.hitTest(_root.parts)) { _root.wizard.gotoAndStop(_root.wizard._currentframe + 1); _root.parts.gotoAndStop(_root.parts._currentframe + 1); } } function moveMonster() { if (_root.wizard._y > _root.monster._y) { _root.monster._y = _root.monster._y + monster.speed; } if (_root.wizard._y < _root.monster._y) { _root.monster._y = _root.monster._y - monster.speed; } if (_root.wizard._x > _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x + monster.speed; } if (_root.wizard._x < _root.monster._x) { _root.monster._rotation = 0; _root.monster._x = _root.monster._x - monster.speed; } } function moveGhost() { if (_root.wizard._y > _root.ghost._y) { _root.ghost._y = _root.ghost._y + ghost.speed; } if (_root.wizard._y < _root.ghost._y) { _root.ghost._y = _root.ghost._y - ghost.speed; } if (_root.wizard._x > _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x + ghost.speed; } if (_root.wizard._x < _root.ghost._x) { _root.ghost._rotation = 0; _root.ghost._x = _root.ghost._x - ghost.speed; } } stop(); Stage.showMenu = false; monster.speed = 13; ghost.speed = 14; wizard.speed = 17; _root.parts.gotoAndStop(1); _root.wizard.gotoAndStop(1); wizard.onEnterFrame = movewizard; monster.onEnterFrame = moveMonster; ghost.onEnterFrame = moveGhost;
Instance of Symbol 179 MovieClip "parts" in Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Frame 22
stop(); stopAllSounds();
Frame 23
stop();
Frame 24
stop();
Symbol 24 MovieClip Frame 80
gotoAndPlay (1);
Symbol 75 MovieClip Frame 118
_root.play();
Symbol 76 MovieClip Frame 1
stop();
Instance of Symbol 8 MovieClip in Symbol 76 MovieClip Frame 1
onClipEvent (load) { _root.stop(); bytesLoaded = 0; bytesTotal = _root.getBytesTotal(); } onClipEvent (enterFrame) { if (bytesLoaded < bytesTotal) { bytesLoaded = _root.getBytesLoaded(); percentLoaded = Math.round((100 * bytesLoaded) / bytesTotal); if (bytesLoaded < bytesTotal) { displayText = ("Loading: " + percentLoaded) + "%"; barFill._xscale = percentLoaded; } else { barFill._xscale = 100; _root.preloader.nextFrame(); } } }
Symbol 76 MovieClip Frame 2
stop();
Symbol 88 Button
on (release) { tellTarget (instructions) { nextFrame(); }; }
Symbol 100 Button
on (release) { tellTarget (ins1) { nextFrame(); }; }
Symbol 107 Button
on (release) { tellTarget (ins1) { prevFrame(); }; }
Symbol 109 MovieClip Frame 1
stop();
Symbol 109 MovieClip Frame 2
stop();
Symbol 112 MovieClip Frame 1
stop();
Symbol 112 MovieClip Frame 2
play();
Symbol 112 MovieClip Frame 8
stop();
Symbol 112 MovieClip Frame 9
play();
Symbol 112 MovieClip Frame 16
tellTarget (this) { gotoAndStop (1); };
Symbol 135 Button
on (release, keyPress "<Enter>") { if (password == "fudjud") { stopAllSounds(); _root.gotoAndStop("level2"); } else if (password == "ishkabibble") { stopAllSounds(); _root.gotoAndStop("level3"); } else if (password == "sharshotono") { stopAllSounds(); _root.gotoAndStop("level4"); } else if (password == "8bu9sd098") { stopAllSounds(); _root.gotoAndStop("level5"); } else if (password == "giveawayofthecentury") { stopAllSounds(); _root.gotoAndStop("level6"); } else if (password == "zeldagamesrule") { stopAllSounds(); _root.gotoAndStop("level7"); } else if (password == "doyouhavetogotothebathroom") { stopAllSounds(); _root.gotoAndStop("level8"); } else if (password == "almostattheendofthegame") { stopAllSounds(); _root.gotoAndStop("level9"); } else if (password == "iknowthatjeremysfilmsisbetterthanmeineveryway") { stopAllSounds(); _root.gotoAndStop("level10"); } else if (password == "Sh0wMithaS3cr3ts") { stopAllSounds(); _root.gotoAndStop("secrets"); } else { tellTarget (passstat) { nextFrame(); }; } }
Symbol 138 MovieClip Frame 1
stop();
Symbol 138 MovieClip Frame 2
play();
Symbol 138 MovieClip Frame 15
tellTarget (this) { gotoAndStop (1); };
Symbol 143 Button
on (release) { stopAllSounds(); } on (release) { _root.play(); }
Symbol 144 Button
on (release) { tellTarget (instructions) { nextFrame(); }; }
Symbol 146 MovieClip Frame 28
stop();
Symbol 179 MovieClip Frame 1
stop();
Instance of Symbol 151 MovieClip in Symbol 179 MovieClip Frame 1
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 2
stop();
Instance of Symbol 152 MovieClip in Symbol 179 MovieClip Frame 2
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 3
stop();
Instance of Symbol 154 MovieClip in Symbol 179 MovieClip Frame 3
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 4
stop();
Instance of Symbol 156 MovieClip in Symbol 179 MovieClip Frame 4
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 5
stop();
Instance of Symbol 158 MovieClip in Symbol 179 MovieClip Frame 5
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 6
stop();
Instance of Symbol 160 MovieClip in Symbol 179 MovieClip Frame 6
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 7
stop();
Instance of Symbol 162 MovieClip in Symbol 179 MovieClip Frame 7
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 8
stop();
Instance of Symbol 164 MovieClip in Symbol 179 MovieClip Frame 8
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 9
stop();
Instance of Symbol 166 MovieClip in Symbol 179 MovieClip Frame 9
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 10
stop();
Instance of Symbol 168 MovieClip in Symbol 179 MovieClip Frame 10
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 11
stop();
Instance of Symbol 170 MovieClip in Symbol 179 MovieClip Frame 11
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 12
stop();
Instance of Symbol 172 MovieClip in Symbol 179 MovieClip Frame 12
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 13
stop();
Instance of Symbol 174 MovieClip in Symbol 179 MovieClip Frame 13
onClipEvent (load) { _x = random(170); _y = random(123); } onClipEvent (enterFrame) { if (this.hitTest(_root.car)) { tellTarget (_root.parts) { nextFrame(); }; } }
Symbol 179 MovieClip Frame 14
stop();
Symbol 179 MovieClip Frame 15
_root.gotoAndStop(_root._currentframe + 1);
Symbol 194 MovieClip Frame 1
stop();
Symbol 194 MovieClip Frame 2
stop();
Symbol 194 MovieClip Frame 3
stop();
Symbol 194 MovieClip Frame 4
stop();
Symbol 194 MovieClip Frame 5
stop();
Symbol 194 MovieClip Frame 6
stop();
Symbol 194 MovieClip Frame 7
stop();
Symbol 194 MovieClip Frame 8
stop();
Symbol 194 MovieClip Frame 9
stop();
Symbol 194 MovieClip Frame 10
stop();
Symbol 194 MovieClip Frame 11
stop();
Symbol 194 MovieClip Frame 12
stop();
Symbol 194 MovieClip Frame 13
stop();
Symbol 194 MovieClip Frame 14
stop();
Symbol 216 Button
on (release, keyPress "<Space>") { stopAllSounds(); nextFrame(); }
Symbol 293 Button
on (release) { stopAllSounds(); gotoAndPlay (1); }
Symbol 303 Button
on (press) { stopAllSounds(); }
Symbol 307 Button
on (press) { stopAllSounds(); }
Symbol 313 Button
on (press) { stopAllSounds(); }
Symbol 318 Button
on (release) { tellTarget (_root.secrets) { nextFrame(); }; }
Symbol 334 Button
on (release) { play(); }
Symbol 338 Button
on (release) { _root.secrets.gotoAndStop(3); }
Symbol 342 Button
on (release) { _root.secrets.gotoAndStop(4); }
Symbol 345 Button
on (release) { getURL ("http://www.geocities.com/flashforms/Clock.fla"); }
Symbol 353 MovieClip Frame 5
stop();
Symbol 353 MovieClip Frame 9
tellTarget (_root.secrets) { gotoAndStop (1); };
Symbol 370 MovieClip Frame 298
tellTarget (_root.secrets) { gotoAndStop (2); };
Symbol 379 MovieClip Frame 1
q = 1; text = "During a research mission on the planet Zebes\nGalactic federation officers dissapeared without a trace.\nAfter picking up strange bio-signs\nThe federation assumed the worst.\nGalactic bounty hunter Samus Aran is sent to investigate....."; stop(); play();
Symbol 379 MovieClip Frame 2
if (q < text.length) { textbox = text.substring(0, q); q++; } else { textbox = text; gotoAndStop (4); }
Symbol 379 MovieClip Frame 3
gotoAndPlay (2);
Symbol 379 MovieClip Frame 4
_quality = "LOW"; play();
Symbol 379 MovieClip Frame 39
stopAllSounds();
Symbol 379 MovieClip Frame 45
_root.secrets.metroid.play();
Symbol 427 MovieClip Frame 3
this.stop();
Symbol 515 Button
on (release) { stopAllSounds(); _root.secrets.metroid.gotoAndPlay(248); }
Symbol 518 Button
on (release) { gotoAndPlay (1); }
Symbol 519 MovieClip Frame 1
_quality = "HIGH";
Symbol 519 MovieClip Frame 135
this.stop();
Symbol 522 MovieClip Frame 1
_quality = "HIGH";
Symbol 526 MovieClip Frame 1
stopAllSounds();
Symbol 526 MovieClip Frame 2
stop();
Symbol 526 MovieClip Frame 3
_quality = "HIGH";
Symbol 526 MovieClip Frame 245
stopAllSounds();
Symbol 526 MovieClip Frame 246
_quality = "HIGH";
Symbol 526 MovieClip Frame 247
stop();
Symbol 526 MovieClip Frame 248
stopAllSounds();
Symbol 526 MovieClip Frame 340
tellTarget (_root.secrets) { gotoAndStop (2); };
Symbol 527 MovieClip Frame 1
stop();
Symbol 527 MovieClip Frame 2
stop();
Symbol 536 Button
on (release) { stopAllSounds(); gotoAndStop (2); }

Library Items

Symbol 1 GraphicUsed by:8
Symbol 2 GraphicUsed by:8
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClipUses:3Used by:8
Symbol 5 GraphicUsed by:8
Symbol 6 FontUsed by:7 524
Symbol 7 EditableTextUses:6Used by:8
Symbol 8 MovieClipUses:1 2 4 5 7Used by:76
Symbol 9 GraphicUsed by:24
Symbol 10 GraphicUsed by:24
Symbol 11 GraphicUsed by:24
Symbol 12 GraphicUsed by:24
Symbol 13 GraphicUsed by:24
Symbol 14 GraphicUsed by:24
Symbol 15 GraphicUsed by:24
Symbol 16 GraphicUsed by:24
Symbol 17 GraphicUsed by:24
Symbol 18 GraphicUsed by:24
Symbol 19 GraphicUsed by:24
Symbol 20 GraphicUsed by:24
Symbol 21 GraphicUsed by:24
Symbol 22 GraphicUsed by:24
Symbol 23 GraphicUsed by:24
Symbol 24 MovieClipUses:9 10 11 12 13 14 15 16 17 18 19 20 21 22 23Used by:76
Symbol 25 GraphicUsed by:73
Symbol 26 GraphicUsed by:73
Symbol 27 GraphicUsed by:73
Symbol 28 GraphicUsed by:73
Symbol 29 GraphicUsed by:73
Symbol 30 GraphicUsed by:73
Symbol 31 GraphicUsed by:73
Symbol 32 GraphicUsed by:73
Symbol 33 GraphicUsed by:73
Symbol 34 GraphicUsed by:73
Symbol 35 GraphicUsed by:73
Symbol 36 GraphicUsed by:73
Symbol 37 GraphicUsed by:73
Symbol 38 GraphicUsed by:73
Symbol 39 GraphicUsed by:73
Symbol 40 GraphicUsed by:73
Symbol 41 GraphicUsed by:73
Symbol 42 GraphicUsed by:73
Symbol 43 GraphicUsed by:73
Symbol 44 GraphicUsed by:73
Symbol 45 GraphicUsed by:73
Symbol 46 GraphicUsed by:73
Symbol 47 GraphicUsed by:73
Symbol 48 GraphicUsed by:73
Symbol 49 GraphicUsed by:73
Symbol 50 GraphicUsed by:73
Symbol 51 GraphicUsed by:73
Symbol 52 GraphicUsed by:73
Symbol 53 GraphicUsed by:73
Symbol 54 GraphicUsed by:73
Symbol 55 GraphicUsed by:73
Symbol 56 GraphicUsed by:73
Symbol 57 GraphicUsed by:73
Symbol 58 GraphicUsed by:73
Symbol 59 GraphicUsed by:73
Symbol 60 GraphicUsed by:73
Symbol 61 GraphicUsed by:73
Symbol 62 GraphicUsed by:73
Symbol 63 GraphicUsed by:73
Symbol 64 GraphicUsed by:73
Symbol 65 GraphicUsed by:73
Symbol 66 GraphicUsed by:73
Symbol 67 GraphicUsed by:73
Symbol 68 GraphicUsed by:73
Symbol 69 GraphicUsed by:73
Symbol 70 GraphicUsed by:73
Symbol 71 GraphicUsed by:73
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72Used by:75
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:73 74Used by:76
Symbol 76 MovieClipUses:8 24 75Used by:Timeline
Symbol 77 GraphicUsed by:147
Symbol 78 GraphicUsed by:146
Symbol 79 GraphicUsed by:82 144
Symbol 80 GraphicUsed by:82 144
Symbol 81 GraphicUsed by:82 144
Symbol 82 ButtonUses:79 80 81Used by:112
Symbol 83 ShapeTweeningUsed by:112
Symbol 84 GraphicUsed by:112
Symbol 85 GraphicUsed by:112
Symbol 86 GraphicUsed by:88
Symbol 87 GraphicUsed by:88
Symbol 88 ButtonUses:86 87Used by:112
Symbol 89 GraphicUsed by:109
Symbol 90 FontUsed by:91 92 95 102 103 108 208 220 224 244 248 252 256 260 264 270
Symbol 91 TextUses:90Used by:109
Symbol 92 TextUses:90Used by:109
Symbol 93 GraphicUsed by:109
Symbol 94 FontUsed by:95
Symbol 95 TextUses:90 94Used by:109
Symbol 96 GraphicUsed by:100
Symbol 97 FontUsed by:98 105
Symbol 98 TextUses:97Used by:100
Symbol 99 GraphicUsed by:100
Symbol 100 ButtonUses:96 98 99Used by:109
Symbol 101 GraphicUsed by:109
Symbol 102 TextUses:90Used by:109
Symbol 103 TextUses:90Used by:109
Symbol 104 GraphicUsed by:107
Symbol 105 TextUses:97Used by:107
Symbol 106 GraphicUsed by:107
Symbol 107 ButtonUses:104 105 106Used by:109
Symbol 108 TextUses:90Used by:109
Symbol 109 MovieClipUses:89 91 92 93 95 100 101 102 103 107 108Used by:112
Symbol 110 ShapeTweeningUsed by:112
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClipUses:82 83 84 85 88 109 110 111Used by:146
Symbol 113 ShapeTweeningUsed by:146
Symbol 114 SoundUsed by:146
Symbol 115 GraphicUsed by:146
Symbol 116 ShapeTweeningUsed by:146
Symbol 117 ShapeTweeningUsed by:146
Symbol 118 GraphicUsed by:146
Symbol 119 GraphicUsed by:146
Symbol 120 ShapeTweeningUsed by:146
Symbol 121 GraphicUsed by:146
Symbol 122 GraphicUsed by:146
Symbol 123 GraphicUsed by:146
Symbol 124 GraphicUsed by:146
Symbol 125 GraphicUsed by:146
Symbol 126 GraphicUsed by:146
Symbol 127 GraphicUsed by:146
Symbol 128 FontUsed by:129 209 221 225 245 250 254 258 262 266 269
Symbol 129 EditableTextUses:128Used by:146
Symbol 130 GraphicUsed by:135
Symbol 131 FontUsed by:132 133 217
Symbol 132 TextUses:131Used by:135
Symbol 133 TextUses:131Used by:135
Symbol 134 GraphicUsed by:135
Symbol 135 ButtonUses:130 132 133 134Used by:146
Symbol 136 FontUsed by:137
Symbol 137 EditableTextUses:136Used by:138
Symbol 138 MovieClipUses:137Used by:146
Symbol 139 GraphicUsed by:143
Symbol 140 GraphicUsed by:143
Symbol 141 GraphicUsed by:143
Symbol 142 GraphicUsed by:143
Symbol 143 ButtonUses:139 140 141 142Used by:146
Symbol 144 ButtonUses:79 80 81Used by:146
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:78 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 129 135 138 143 144 145 SS1Used by:147
Symbol 147 MovieClipUses:77 146Used by:Timeline
Symbol 148 BitmapUsed by:149
Symbol 149 GraphicUses:148Used by:Timeline
Symbol 150 GraphicUsed by:151 152
Symbol 151 MovieClipUses:150Used by:179
Symbol 152 MovieClipUses:150Used by:179
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:179
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:155Used by:179
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:179
Symbol 159 GraphicUsed by:160
Symbol 160 MovieClipUses:159Used by:179
Symbol 161 GraphicUsed by:162
Symbol 162 MovieClipUses:161Used by:179
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:163Used by:179
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClipUses:165Used by:179
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:179
Symbol 169 GraphicUsed by:170
Symbol 170 MovieClipUses:169Used by:179
Symbol 171 GraphicUsed by:172
Symbol 172 MovieClipUses:171Used by:179
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClipUses:173Used by:179
Symbol 175 GraphicUsed by:178
Symbol 176 FontUsed by:177 327 329 336 339 344
Symbol 177 TextUses:176Used by:178
Symbol 178 MovieClipUses:175 177Used by:179
Symbol 179 MovieClipUses:151 152 154 156 158 160 162 164 166 168 170 172 174 178Used by:Timeline
Symbol 180 GraphicUsed by:194
Symbol 181 GraphicUsed by:194
Symbol 182 GraphicUsed by:194
Symbol 183 GraphicUsed by:194
Symbol 184 GraphicUsed by:194
Symbol 185 GraphicUsed by:194
Symbol 186 GraphicUsed by:194
Symbol 187 GraphicUsed by:194
Symbol 188 GraphicUsed by:194
Symbol 189 GraphicUsed by:194
Symbol 190 GraphicUsed by:194
Symbol 191 GraphicUsed by:194
Symbol 192 GraphicUsed by:194
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:180 181 182 183 184 185 186 187 188 189 190 191 192 193Used by:Timeline
Symbol 195 GraphicUsed by:204
Symbol 196 GraphicUsed by:198
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:196 197Used by:204
Symbol 199 GraphicUsed by:200
Symbol 200 MovieClipUses:199Used by:204
Symbol 201 GraphicUsed by:203
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:201 202Used by:204
Symbol 204 MovieClipUses:195 198 200 203Used by:Timeline
Symbol 205 GraphicUsed by:Timeline
Symbol 206 SoundUsed by:307  Timeline
Symbol 207 GraphicUsed by:Timeline
Symbol 208 TextUses:90Used by:Timeline
Symbol 209 EditableTextUses:128Used by:Timeline
Symbol 210 GraphicUsed by:216
Symbol 211 FontUsed by:212
Symbol 212 TextUses:211Used by:216
Symbol 213 GraphicUsed by:216
Symbol 214 GraphicUsed by:216
Symbol 215 GraphicUsed by:216
Symbol 216 ButtonUses:210 212 213 214 215Used by:Timeline
Symbol 217 TextUses:131Used by:Timeline
Symbol 218 GraphicUsed by:Timeline
Symbol 219 GraphicUsed by:Timeline
Symbol 220 TextUses:90Used by:Timeline
Symbol 221 EditableTextUses:128Used by:Timeline
Symbol 222 GraphicUsed by:Timeline
Symbol 223 GraphicUsed by:Timeline
Symbol 224 TextUses:90Used by:Timeline
Symbol 225 EditableTextUses:128Used by:Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 GraphicUsed by:242
Symbol 228 GraphicUsed by:241
Symbol 229 GraphicUsed by:241
Symbol 230 GraphicUsed by:241
Symbol 231 GraphicUsed by:241
Symbol 232 GraphicUsed by:241
Symbol 233 GraphicUsed by:241
Symbol 234 GraphicUsed by:241
Symbol 235 GraphicUsed by:241
Symbol 236 GraphicUsed by:241
Symbol 237 GraphicUsed by:241
Symbol 238 GraphicUsed by:241
Symbol 239 GraphicUsed by:241
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:228 229 230 231 232 233 234 235 236 237 238 239 240Used by:242
Symbol 242 MovieClipUses:227 241Used by:Timeline
Symbol 243 GraphicUsed by:Timeline
Symbol 244 TextUses:90Used by:Timeline
Symbol 245 EditableTextUses:128Used by:Timeline
Symbol 246 GraphicUsed by:Timeline
Symbol 247 GraphicUsed by:Timeline
Symbol 248 TextUses:90Used by:Timeline
Symbol 249 GraphicUsed by:Timeline
Symbol 250 EditableTextUses:128Used by:Timeline
Symbol 251 GraphicUsed by:Timeline
Symbol 252 TextUses:90Used by:Timeline
Symbol 253 GraphicUsed by:Timeline
Symbol 254 EditableTextUses:128Used by:Timeline
Symbol 255 GraphicUsed by:Timeline
Symbol 256 TextUses:90Used by:Timeline
Symbol 257 GraphicUsed by:Timeline
Symbol 258 EditableTextUses:128Used by:Timeline
Symbol 259 GraphicUsed by:Timeline
Symbol 260 TextUses:90Used by:Timeline
Symbol 261 GraphicUsed by:Timeline
Symbol 262 EditableTextUses:128Used by:Timeline
Symbol 263 GraphicUsed by:Timeline
Symbol 264 TextUses:90Used by:Timeline
Symbol 265 GraphicUsed by:Timeline
Symbol 266 EditableTextUses:128Used by:Timeline
Symbol 267 GraphicUsed by:Timeline
Symbol 268 GraphicUsed by:Timeline
Symbol 269 EditableTextUses:128Used by:Timeline
Symbol 270 TextUses:90Used by:Timeline
Symbol 271 GraphicUsed by:Timeline
Symbol 272 FontUsed by:273 537
Symbol 273 TextUses:272Used by:Timeline
Symbol 274 GraphicUsed by:275
Symbol 275 MovieClipUses:274Used by:Timeline
Symbol 276 GraphicUsed by:277
Symbol 277 MovieClipUses:276Used by:293 536
Symbol 278 GraphicUsed by:293
Symbol 279 GraphicUsed by:293
Symbol 280 GraphicUsed by:293
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281Used by:293 536
Symbol 283 GraphicUsed by:293
Symbol 284 GraphicUsed by:285
Symbol 285 MovieClipUses:284Used by:293 536
Symbol 286 GraphicUsed by:293
Symbol 287 GraphicUsed by:293 536
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:293 536
Symbol 290 GraphicUsed by:293
Symbol 291 GraphicUsed by:293
Symbol 292 GraphicUsed by:293 536
Symbol 293 ButtonUses:277 278 279 280 282 283 285 286 287 289 290 291 292Used by:Timeline
Symbol 294 FontUsed by:295
Symbol 295 TextUses:294Used by:Timeline
Symbol 296 GraphicUsed by:527
Symbol 297 GraphicUsed by:303 307 313
Symbol 298 FontUsed by:299 304 308 315 317 331 333
Symbol 299 TextUses:298Used by:303
Symbol 300 GraphicUsed by:303
Symbol 301 GraphicUsed by:303
Symbol 302 SoundUsed by:303 526
Symbol 303 ButtonUses:297 299 300 301 302Used by:527
Symbol 304 TextUses:298Used by:307
Symbol 305 GraphicUsed by:307
Symbol 306 GraphicUsed by:307
Symbol 307 ButtonUses:297 304 305 306 206Used by:527
Symbol 308 TextUses:298Used by:313
Symbol 309 GraphicUsed by:313
Symbol 310 GraphicUsed by:313
Symbol 311 GraphicUsed by:313
Symbol 312 SoundUsed by:313
Symbol 313 ButtonUses:297 308 309 310 311 312Used by:527
Symbol 314 GraphicUsed by:318
Symbol 315 TextUses:298Used by:318
Symbol 316 GraphicUsed by:318
Symbol 317 TextUses:298Used by:318
Symbol 318 ButtonUses:314 315 316 317Used by:527
Symbol 319 GraphicUsed by:527
Symbol 320 GraphicUsed by:353
Symbol 321 BitmapUsed by:322 323
Symbol 322 GraphicUses:321Used by:353
Symbol 323 GraphicUses:321Used by:353
Symbol 324 BitmapUsed by:325
Symbol 325 GraphicUses:324Used by:353
Symbol 326 GraphicUsed by:353
Symbol 327 TextUses:176Used by:353
Symbol 328 GraphicUsed by:353
Symbol 329 TextUses:176Used by:353
Symbol 330 GraphicUsed by:334
Symbol 331 TextUses:298Used by:334
Symbol 332 GraphicUsed by:334
Symbol 333 TextUses:298Used by:334
Symbol 334 ButtonUses:330 331 332 333Used by:353
Symbol 335 GraphicUsed by:338 342
Symbol 336 TextUses:176Used by:338
Symbol 337 GraphicUsed by:338
Symbol 338 ButtonUses:335 336 337Used by:353
Symbol 339 TextUses:176Used by:342
Symbol 340 GraphicUsed by:342
Symbol 341 GraphicUsed by:342
Symbol 342 ButtonUses:335 339 340 341Used by:353
Symbol 343 GraphicUsed by:345
Symbol 344 TextUses:176Used by:345
Symbol 345 ButtonUses:343 344Used by:353
Symbol 346 BitmapUsed by:347
Symbol 347 GraphicUses:346Used by:353
Symbol 348 GraphicUsed by:353
Symbol 349 GraphicUsed by:353
Symbol 350 BitmapUsed by:351
Symbol 351 GraphicUses:350Used by:353
Symbol 352 GraphicUsed by:353
Symbol 353 MovieClipUses:320 322 323 325 326 327 328 329 334 338 342 345 347 348 349 351 352Used by:527
Symbol 354 GraphicUsed by:370 515 518 519 526
Symbol 355 FontUsed by:356 358
Symbol 356 TextUses:355Used by:370
Symbol 357 GraphicUsed by:370
Symbol 358 TextUses:355Used by:370
Symbol 359 GraphicUsed by:364
Symbol 360 GraphicUsed by:364
Symbol 361 GraphicUsed by:364
Symbol 362 GraphicUsed by:364
Symbol 363 ShapeTweeningUsed by:364
Symbol 364 MovieClipUses:359 360 361 362 363Used by:370
Symbol 365 GraphicUsed by:370
Symbol 366 FontUsed by:367 368
Symbol 367 TextUses:366Used by:370
Symbol 368 TextUses:366Used by:369
Symbol 369 MovieClipUses:368Used by:370
Symbol 370 MovieClipUses:354 356 357 358 364 365 367 369Used by:527
Symbol 371 GraphicUsed by:373
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClipUses:371 372Used by:526
Symbol 374 FontUsed by:375 450 500 511
Symbol 375 EditableTextUses:374Used by:379
Symbol 376 SoundUsed by:379 526
Symbol 377 GraphicUsed by:379
Symbol 378 GraphicUsed by:379
Symbol 379 MovieClipUses:375 376 377 378Used by:526
Symbol 380 GraphicUsed by:526
Symbol 381 GraphicUsed by:383
Symbol 382 GraphicUsed by:383
Symbol 383 MovieClipUses:381 382Used by:385 526
Symbol 384 SoundUsed by:526
Symbol 385 MovieClipUses:383Used by:526
Symbol 386 GraphicUsed by:387
Symbol 387 MovieClipUses:386Used by:526
Symbol 388 GraphicUsed by:526
Symbol 389 SoundUsed by:526
Symbol 390 GraphicUsed by:526
Symbol 391 GraphicUsed by:526
Symbol 392 GraphicUsed by:526
Symbol 393 GraphicUsed by:526
Symbol 394 GraphicUsed by:526
Symbol 395 GraphicUsed by:526
Symbol 396 GraphicUsed by:526
Symbol 397 GraphicUsed by:526
Symbol 398 GraphicUsed by:526
Symbol 399 GraphicUsed by:526
Symbol 400 GraphicUsed by:526
Symbol 401 GraphicUsed by:526
Symbol 402 GraphicUsed by:526
Symbol 403 GraphicUsed by:420 427
Symbol 404 GraphicUsed by:420 427
Symbol 405 GraphicUsed by:420
Symbol 406 GraphicUsed by:420
Symbol 407 GraphicUsed by:420
Symbol 408 GraphicUsed by:420
Symbol 409 GraphicUsed by:420
Symbol 410 GraphicUsed by:420
Symbol 411 GraphicUsed by:420
Symbol 412 GraphicUsed by:420
Symbol 413 GraphicUsed by:420
Symbol 414 GraphicUsed by:420
Symbol 415 GraphicUsed by:420
Symbol 416 GraphicUsed by:420
Symbol 417 GraphicUsed by:420
Symbol 418 GraphicUsed by:420
Symbol 419 GraphicUsed by:420
Symbol 420 MovieClipUses:403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419Used by:421
Symbol 421 MovieClipUses:420Used by:526
Symbol 422 GraphicUsed by:526
Symbol 423 GraphicUsed by:427
Symbol 424 GraphicUsed by:427
Symbol 425 GraphicUsed by:427
Symbol 426 GraphicUsed by:427
Symbol 427 MovieClipUses:403 404 423 424 425 426Used by:526
Symbol 428 GraphicUsed by:439
Symbol 429 GraphicUsed by:439
Symbol 430 GraphicUsed by:439
Symbol 431 GraphicUsed by:439
Symbol 432 GraphicUsed by:439
Symbol 433 GraphicUsed by:439
Symbol 434 GraphicUsed by:439
Symbol 435 GraphicUsed by:439
Symbol 436 GraphicUsed by:439
Symbol 437 GraphicUsed by:439
Symbol 438 GraphicUsed by:439
Symbol 439 MovieClipUses:428 429 430 431 432 433 434 435 436 437 438Used by:526
Symbol 440 GraphicUsed by:444
Symbol 441 GraphicUsed by:444
Symbol 442 GraphicUsed by:444
Symbol 443 GraphicUsed by:444
Symbol 444 MovieClipUses:440 441 442 443Used by:526
Symbol 445 GraphicUsed by:526
Symbol 446 GraphicUsed by:526
Symbol 447 GraphicUsed by:526
Symbol 448 GraphicUsed by:526
Symbol 449 GraphicUsed by:526
Symbol 450 TextUses:374Used by:519
Symbol 451 GraphicUsed by:519
Symbol 452 GraphicUsed by:519
Symbol 453 GraphicUsed by:519
Symbol 454 GraphicUsed by:519
Symbol 455 GraphicUsed by:519
Symbol 456 GraphicUsed by:519
Symbol 457 GraphicUsed by:519
Symbol 458 GraphicUsed by:519
Symbol 459 GraphicUsed by:519
Symbol 460 GraphicUsed by:519
Symbol 461 GraphicUsed by:519
Symbol 462 GraphicUsed by:519
Symbol 463 GraphicUsed by:519
Symbol 464 GraphicUsed by:519
Symbol 465 GraphicUsed by:519
Symbol 466 GraphicUsed by:519
Symbol 467 GraphicUsed by:519
Symbol 468 GraphicUsed by:519
Symbol 469 GraphicUsed by:519
Symbol 470 GraphicUsed by:519
Symbol 471 GraphicUsed by:519
Symbol 472 GraphicUsed by:519
Symbol 473 GraphicUsed by:519
Symbol 474 GraphicUsed by:519
Symbol 475 GraphicUsed by:519
Symbol 476 GraphicUsed by:519
Symbol 477 GraphicUsed by:519
Symbol 478 GraphicUsed by:519
Symbol 479 GraphicUsed by:519
Symbol 480 GraphicUsed by:519
Symbol 481 GraphicUsed by:519
Symbol 482 GraphicUsed by:519
Symbol 483 GraphicUsed by:519
Symbol 484 GraphicUsed by:519
Symbol 485 GraphicUsed by:519
Symbol 486 GraphicUsed by:519
Symbol 487 GraphicUsed by:519
Symbol 488 GraphicUsed by:519
Symbol 489 GraphicUsed by:519
Symbol 490 GraphicUsed by:519
Symbol 491 GraphicUsed by:519
Symbol 492 GraphicUsed by:519
Symbol 493 GraphicUsed by:519
Symbol 494 GraphicUsed by:519
Symbol 495 GraphicUsed by:519
Symbol 496 GraphicUsed by:519
Symbol 497 GraphicUsed by:519
Symbol 498 GraphicUsed by:519
Symbol 499 GraphicUsed by:519
Symbol 500 TextUses:374Used by:519
Symbol 501 GraphicUsed by:519
Symbol 502 GraphicUsed by:519
Symbol 503 GraphicUsed by:519
Symbol 504 GraphicUsed by:519
Symbol 505 GraphicUsed by:519
Symbol 506 GraphicUsed by:519
Symbol 507 GraphicUsed by:519
Symbol 508 GraphicUsed by:519
Symbol 509 GraphicUsed by:519
Symbol 510 GraphicUsed by:519
Symbol 511 TextUses:374Used by:519
Symbol 512 FontUsed by:513 514 516 517
Symbol 513 TextUses:512Used by:515
Symbol 514 TextUses:512Used by:515
Symbol 515 ButtonUses:513 514 354Used by:519
Symbol 516 TextUses:512Used by:518
Symbol 517 TextUses:512Used by:518
Symbol 518 ButtonUses:516 517 354Used by:519
Symbol 519 MovieClipUses:354 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 515 518Used by:522 526
Symbol 520 GraphicUsed by:522
Symbol 521 SoundUsed by:522
Symbol 522 MovieClipUses:520 519 521Used by:526
Symbol 523 GraphicUsed by:526
Symbol 524 TextUses:6Used by:526
Symbol 525 GraphicUsed by:526
Symbol 526 MovieClipUses:354 373 379 380 383 376 384 385 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 421 422 427 439 444 445 446 447 448 449 519 522 523 524 525 302Used by:527
Symbol 527 MovieClipUses:296 303 307 313 318 319 353 370 526Used by:Timeline
Symbol 528 GraphicUsed by:Timeline
Symbol 529 GraphicUsed by:536
Symbol 530 GraphicUsed by:536
Symbol 531 GraphicUsed by:536
Symbol 532 GraphicUsed by:536
Symbol 533 GraphicUsed by:536
Symbol 534 GraphicUsed by:536
Symbol 535 GraphicUsed by:536
Symbol 536 ButtonUses:277 529 530 531 282 532 285 533 287 289 534 535 292Used by:Timeline
Symbol 537 TextUses:272Used by:Timeline
Symbol 538 GraphicUsed by:540
Symbol 539 TextUsed by:540
Symbol 540 MovieClipUses:538 539Used by:Timeline
Streaming Sound 1Used by:Symbol 146 MovieClip

Instance Names

"preloader"Frame 1Symbol 76 MovieClip
"openmenu"Frame 2Symbol 147 MovieClip
"parts"Frame 3Symbol 179 MovieClip
"wizard"Frame 3Symbol 194 MovieClip
"monster"Frame 3Symbol 204 MovieClip
"parts"Frame 5Symbol 179 MovieClip
"wizard"Frame 5Symbol 194 MovieClip
"monster"Frame 5Symbol 204 MovieClip
"parts"Frame 7Symbol 179 MovieClip
"wizard"Frame 7Symbol 194 MovieClip
"monster"Frame 7Symbol 204 MovieClip
"parts"Frame 9Symbol 179 MovieClip
"wizard"Frame 9Symbol 194 MovieClip
"monster"Frame 9Symbol 204 MovieClip
"ghost"Frame 9Symbol 242 MovieClip
"parts"Frame 11Symbol 179 MovieClip
"wizard"Frame 11Symbol 194 MovieClip
"monster"Frame 11Symbol 204 MovieClip
"ghost"Frame 11Symbol 242 MovieClip
"parts"Frame 13Symbol 179 MovieClip
"wizard"Frame 13Symbol 194 MovieClip
"monster"Frame 13Symbol 204 MovieClip
"ghost"Frame 13Symbol 242 MovieClip
"parts"Frame 15Symbol 179 MovieClip
"wizard"Frame 15Symbol 194 MovieClip
"monster"Frame 15Symbol 204 MovieClip
"ghost"Frame 15Symbol 242 MovieClip
"parts"Frame 17Symbol 179 MovieClip
"wizard"Frame 17Symbol 194 MovieClip
"monster"Frame 17Symbol 204 MovieClip
"ghost"Frame 17Symbol 242 MovieClip
"parts"Frame 19Symbol 179 MovieClip
"wizard"Frame 19Symbol 194 MovieClip
"monster"Frame 19Symbol 204 MovieClip
"ghost"Frame 19Symbol 242 MovieClip
"parts"Frame 21Symbol 179 MovieClip
"wizard"Frame 21Symbol 194 MovieClip
"monster"Frame 21Symbol 204 MovieClip
"ghost"Frame 21Symbol 242 MovieClip
"secrets"Frame 23Symbol 527 MovieClip
"barFill"Symbol 8 MovieClip Frame 1Symbol 4 MovieClip
"ins1"Symbol 112 MovieClip Frame 8Symbol 109 MovieClip
"instructions"Symbol 146 MovieClip Frame 1Symbol 112 MovieClip
"passstat"Symbol 146 MovieClip Frame 28Symbol 138 MovieClip
"tt1"Symbol 522 MovieClip Frame 1Symbol 519 MovieClip
"metroid"Symbol 527 MovieClip Frame 4Symbol 526 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$PU$HvnE.BsYmpwE/.oCrwTNn1."

Labels

"level1"Frame 3
"level2"Frame 5
"level3"Frame 7
"level4"Frame 9
"level5"Frame 11
"level6"Frame 13
"level7"Frame 15
"level8"Frame 17
"level9"Frame 19
"level10"Frame 21
"secrets"Frame 23
"gameover"Frame 24
"1"Symbol 379 MovieClip Frame 1
"2"Symbol 379 MovieClip Frame 2
"3"Symbol 379 MovieClip Frame 3
"4"Symbol 379 MovieClip Frame 4

Dynamic Text Variables

displayTextSymbol 7 EditableText""
passwordSymbol 129 EditableText""
textboxSymbol 375 EditableText""




http://swfchan.com/15/73763/info.shtml
Created: 8/4 -2019 02:03:32 Last modified: 8/4 -2019 02:03:32 Server time: 09/05 -2024 18:10:41