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

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

Mario Remix.swf

This is the info page for
Flash #14967

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


Text
%

Play

START

CONTROLS

Disclaimers

Credits

A - RUN
Z - JUMP
ARROWS - MOVE

EXIT

Everything:
Greg Vottero

Testers:
Kevin Handy
Billy Gesner
Matt Hagy

Disclaimer:
All sprites, names, and music
are properties of their respective owners.

LEVEL SELECT

BOSS

QUALITY

ActionScript [AS1/AS2]

Frame 2
stop();
Frame 6
stop(); marioIntro.stop();
Frame 32
stop(); marioMusic = new Sound(); marioMusic.attachSound("marioMusic"); marioMusic.start(0, 20);
Instance of Symbol 92 MovieClip "conCirc" in Frame 32
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 164 MovieClip "mario" in Frame 32
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = false; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("begin"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; if (this._x < 300) { this._x = this._x - walkSpeed; } else { _root.levelOne._x = _root.levelOne._x + walkSpeed; } if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; if ((jumping && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } } if (jumping) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y == 0) { falling = true; } if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; if (this._x < 300) { this._x = this._x - walkSpeed; } else { _root.levelOne._x = _root.levelOne._x + walkSpeed; } if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; if ((jumping && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } } if (jumping) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y == 0) { falling = true; } if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 58
stop(); marioMusic = new Sound(); marioMusic.attachSound("underground"); marioMusic.stop(); marioMusic.start(0, 20);
Instance of Symbol 179 MovieClip "levelOne" in Frame 58
onClipEvent (load) { levelMovement = true; } onClipEvent (enterFrame) { if (this._x < -1500) { levelMovement = false; } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 58
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 181 MovieClip "levelTwo" in Frame 58
onClipEvent (load) { levelMovement = false; } onClipEvent (enterFrame) { if (_root.levelOne._x < -1000) { levelMovement = true; } }
Instance of Symbol 164 MovieClip "mario" in Frame 58
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = false; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginTwo"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; if (this._x < 300) { this._x = this._x - walkSpeed; } else { if (_root.levelOne.levelMovement) { _root.levelOne._x = _root.levelOne._x + walkSpeed; } if (_root.levelTwo.levelMovement) { _root.levelTwo._x = _root.levelTwo._x + walkSpeed; } } if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; if (this._x < 300) { this._x = this._x - walkSpeed; } else { if (_root.levelOne.levelMovement) { _root.levelOne._x = _root.levelOne._x + walkSpeed; } if (_root.levelTwo.levelMovement) { _root.levelTwo._x = _root.levelTwo._x + walkSpeed; } } if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 84
stop(); marioMusic = new Sound(); marioMusic.attachSound("castle"); marioMusic.stop(); marioMusic.start(0, 20);
Instance of Symbol 205 MovieClip "levelTwo" in Frame 84
onClipEvent (load) { levelMovement = false; } onClipEvent (enterFrame) { if (_root.levelOne._x < -900) { levelMovement = true; } }
Instance of Symbol 210 MovieClip "levelOne" in Frame 84
onClipEvent (load) { levelMovement = true; } onClipEvent (enterFrame) { }
Instance of Symbol 92 MovieClip "conCirc" in Frame 84
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 164 MovieClip "mario" in Frame 84
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = false; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginThree"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; if (this._x < 300) { this._x = this._x - walkSpeed; } else { if (_root.levelOne.levelMovement) { _root.levelOne._x = _root.levelOne._x + walkSpeed; } if (_root.levelTwo.levelMovement) { _root.levelTwo._x = _root.levelTwo._x + walkSpeed; } } if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; if (this._x < 300) { this._x = this._x - walkSpeed; } else { if (_root.levelOne.levelMovement) { _root.levelOne._x = _root.levelOne._x + walkSpeed; } if (_root.levelTwo.levelMovement) { _root.levelTwo._x = _root.levelTwo._x + walkSpeed; } } if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 110
stop(); marioBoss = new Sound(); marioBoss.attachSound("hammer"); marioBoss.stop(); marioBoss.start(0, 50);
Instance of Symbol 134 MovieClip "enemy1" in Frame 110
onClipEvent (load) { turnRight = _parent.ground1._x - (_parent.ground1._width / 2); turnLeft = _parent.ground1._x + (_parent.ground1._width / 2); walkSpeed = 2; faceRight = false; playWalk = false; turtleCounter = 100; this._x = 515; this._y = -75; } onClipEvent (enterFrame) { if (_root.lavaBoss.bossLife == 0) { this._y = 700; this._x = 900; walkSpeed = 0; } if (!playWalk) { _root.enemy1.tWalk.stop(); } if (turtleCounter > 0) { turtleCounter--; } if (turtleCounter == 0) { if (this._y < (_root.ground1._y - 50)) { this._y = this._y + 10; } else { playWalk = true; _root.enemy1.tWalk.play(); } } if (((this._currentframe == 1) or (this._currentframe == 3)) && (playWalk)) { if (this._currentframe == 3) { walkSpeed = 8; if (this.hitTest(_root.lavaBoss.bossHurt)) { _root.lavaBoss.damageRecog = true; _root.lavaBoss.bossLife = _root.lavaBoss.bossLife - 1; bossHit = new Sound(); bossHit.attachSound("spit"); bossHit.start(); this.gotoAndStop(4); } } if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 110
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; } } }
Instance of Symbol 164 MovieClip "mario" in Frame 110
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = false; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginFour"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Instance of Symbol 139 MovieClip in Frame 110
onClipEvent (enterFrame) { if (marioFlash > 0) { marioFlash--; _root.mario._alpha = Math.random() * 50; } if ((marioFlash == 0) && (_root.mario.hurtCounter == 0)) { _root.mario._alpha = 100; } if (this.hitTest(_root.mario)) { if (!_root.mario.superMode) { _root.mario.superMode = true; marioGrow = new Sound(); marioGrow.attachSound("grow"); marioGrow.start(); marioFlash = 26; } this.gotoAndStop(2); } }
Instance of Symbol 225 MovieClip "lavaBoss" in Frame 110
onClipEvent (load) { attackOne = false; attackTwo = false; attackGenerator = 0; attackTimer = 75; attacking = false; faceRight = true; damageRecog = false; bossLife = 4; vel_x = 0; vel_y = 0; marioWin = new Sound(); marioWin.attachSound("flag"); } onClipEvent (enterFrame) { if (damageRecog) { this._alpha = Math.random() * 100; } if (bossLife <= 0) { attackOne = false; attackTwo = false; attacking = false; this._y = this._y + 0.75; if (this._y > 460) { _root.gotoAndStop("Intro", "Intro"); } this.gotoAndStop(4); } if (bossLife > 0) { if (attackTimer > 0) { attackTimer--; } if (((!attackOne) && (!attackTwo)) && (attackTimer == 0)) { attackGenerator = Math.random() * 100; if (_root.mario._y > 225) { attackGenerator = attackGenerator - 20; } if (_root.mario._y < 225) { attackGenerator = attackGenerator + 20; } if (attackGenerator <= 50) { attackOne = true; attackTwo = false; } if (attackGenerator > 50) { attackOne = false; attackTwo = true; } } if (attackOne) { this.gotoAndStop(2); } if (attackTwo) { this.gotoAndStop(3); } if (this._currentframe == 2) { if (!attacking) { vel_y = 15; if (faceRight) { this._xscale = -this._xscale; this._x = _root.mario._x - 150; vel_x = 6; faceRight = false; } else if (!faceRight) { this._xscale = -this._xscale; this._x = _root.mario._x + 150; vel_x = -6; faceRight = true; } attacking = true; } if (attacking) { vel_y = vel_y - 0.5; this._y = this._y - vel_y; this._x = this._x + vel_x; } if (vel_y <= -15) { attackOne = false; attackTwo = false; attacking = false; damageRecog = false; this._alpha = 100; attackGenerator = 0; vel_y = 0; attackTimer = 60; this.gotoAndStop(1); this._y = 423; } } if (this._currentframe == 3) { if (!attacking) { vel_y = 24; this._x = _root.mario._x; attacking = true; } if (attacking) { vel_y = vel_y - 0.75; this._y = this._y - vel_y; } if (vel_y <= -24) { attackOne = false; attackTwo = false; attacking = false; attackGenerator = 0; vel_y = 0; attackTimer = 60; this.gotoAndStop(1); this._y = 423; } } } }
Instance of Symbol 233 MovieClip "fireTwo" in Frame 110
onClipEvent (load) { fireStart = false; fireNumber = 0; fireGrav = 0; } onClipEvent (enterFrame) { if (_root.lavaBoss.bossLife <= 2) { fireStart = true; } if (_root.lavaBoss.bossLife == 0) { fireStart = false; this._y = -100; } if (fireStart) { this._rotation = this._rotation - 15; this._y = this._y + 2; fireNumber = Math.random() * 100; this._x = this._x + fireGrav; if (!falling) { if (fireNumber <= 50) { fireGrav = fireGrav - (Math.random() * 5); falling = true; } if (fireNumber > 50) { fireGrav = fireGrav + (Math.random() * 5); falling = true; } } if (this._y > 450) { this._y = 25; this._x = 286; fireGrav = 0; falling = false; } } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 233 MovieClip "fireOne" in Frame 110
onClipEvent (load) { fireStart = false; fireNumber = 0; fireGrav = 0; } onClipEvent (enterFrame) { if (_root.lavaBoss.bossLife == 1) { fireStart = true; } if (_root.lavaBoss.bossLife == 0) { fireStart = false; this._y = -100; } if (fireStart) { this._rotation = this._rotation - 15; this._y = this._y + 4; fireNumber = Math.random() * 100; this._x = this._x + fireGrav; if (!falling) { if (fireNumber <= 50) { fireGrav = fireGrav - (Math.random() * 4); falling = true; } if (fireNumber > 50) { fireGrav = fireGrav + (Math.random() * 4); falling = true; } } if (this._y > 450) { this._y = 25; this._x = 286; fireGrav = 0; falling = false; } } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Frame 111
gradius.stop();
Frame 136
stop(); gradius = new Sound(); gradius.attachSound("gradius"); gradius.start(0, 50); stop();
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 5; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 5; this._alpha = (Math.random() * 70) + 40; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 236 MovieClip in Frame 136
onClipEvent (load) { moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } onClipEvent (enterFrame) { this._x = this._x - 10; if (this._x < 0) { this._x = 650; moveSpeed = (Math.random() * 20) + 35; this._alpha = (Math.random() * 70) + 30; this._xscale = Math.random() * 150; this._yscale = Math.random() * 150; } }
Instance of Symbol 251 MovieClip "levelOne" in Frame 136
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 5; if ((this._x <= 310) && (levelMove)) { _root.play(); levelMove = false; } }
Instance of Symbol 255 MovieClip "mario" in Frame 136
onClipEvent (load) { moveSpeed = 11; fireCounter = 1; maxFire = 20; depthCounter = 1; timer = 0; } onClipEvent (enterFrame) { if (this._currentframe != 4) { if (timer > 0) { timer--; } if (Key.isDown(40) && (this._y < 430)) { this.gotoAndStop(3); this._y = this._y + moveSpeed; } if (Key.isDown(38) && (this._y > 20)) { this.gotoAndStop(2); this._y = this._y - moveSpeed; } if (Key.isDown(38) && (Key.isDown(40))) { this.gotoAndStop(1); } if ((!Key.isDown(38)) && (!Key.isDown(40))) { this.gotoAndStop(1); } if (Key.isDown(39) && (this._x < 580)) { this._x = this._x + moveSpeed; } if (Key.isDown(37) && (this._x > 20)) { this._x = this._x - moveSpeed; } if ((Key.isDown(90) and (fireCounter <= maxFire)) && (timer == 0)) { fireCounter++; depthCounter++; _root.mFire.duplicateMovieClip("fire" + depthCounter, depthCounter * 10); if (depthCounter > maxFire) { depthCounter = 1; } } } }
Instance of Symbol 256 MovieClip "mFire" in Frame 136
onClipEvent (load) { if (this._name != "mFire") { this._x = _root.mario._x + 15; this._y = _root.mario._y + 10; _root.mario.timer = 2; } } onClipEvent (enterFrame) { if (this._name != "mFire") { this._x = this._x + 20; if (this._x > 605) { _root.mario.fireCounter--; this.removeMovieClip(); } } }
Frame 137
stop();
Instance of Symbol 259 MovieClip in Frame 137
onClipEvent (enterFrame) { this._x = this._x - 5; if (this._x <= -85) { _root.play(); } }
Frame 138
stop();
Instance of Symbol 266 MovieClip "levelOne" in Frame 138
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -190) { _root.play(); } }
Frame 139
stop();
Instance of Symbol 273 MovieClip "levelTwo" in Frame 139
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -100) { _root.play(); } }
Frame 140
stop();
Instance of Symbol 274 MovieClip in Frame 140
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -121) { _root.play(); } }
Frame 141
stop();
Instance of Symbol 275 MovieClip in Frame 141
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -140) { _root.play(); } }
Frame 142
stop();
Instance of Symbol 276 MovieClip in Frame 142
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 5; if ((this._x <= 350) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 143
stop();
Instance of Symbol 278 MovieClip in Frame 143
onClipEvent (enterFrame) { this._x = this._x - 5; if (this._x <= -175) { _root.play(); } }
Frame 144
stop();
Instance of Symbol 280 MovieClip "levelOne" in Frame 144
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 6; if ((this._x <= 200) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 145
stop();
Instance of Symbol 282 MovieClip in Frame 145
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -90) { _root.play(); } }
Frame 146
stop();
Instance of Symbol 284 MovieClip "levelOne" in Frame 146
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -290) { _root.play(); } }
Frame 147
stop();
Instance of Symbol 278 MovieClip in Frame 147
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -325) { _root.play(); } }
Frame 148
stop();
Instance of Symbol 294 MovieClip in Frame 148
onClipEvent (enterFrame) { this._x = this._x - 5; if (this._x <= -300) { _root.play(); } }
Frame 149
stop();
Instance of Symbol 304 MovieClip in Frame 149
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 5; if ((this._x <= 280) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 150
stop();
Instance of Symbol 305 MovieClip in Frame 150
onClipEvent (enterFrame) { this._x = this._x - 5; if (this._x <= -275) { _root.play(); } }
Frame 151
stop();
Instance of Symbol 310 MovieClip in Frame 151
onClipEvent (load) { levelMove = true; bIntro = new Sound(); bIntro.attachSound("bIntro"); bIntro.stop(); bIntro.start(); } onClipEvent (enterFrame) { this._x = this._x - 10; if ((this._x <= -150) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 152
stop();
Instance of Symbol 312 MovieClip in Frame 152
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 10; if ((this._x <= 25) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 153
stop();
Instance of Symbol 314 MovieClip in Frame 153
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 10; if ((this._x <= -200) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 154
stop();
Instance of Symbol 317 MovieClip in Frame 154
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 6; if ((this._x <= -1200) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 155
stop();
Instance of Symbol 334 MovieClip "bossShip" in Frame 155
onClipEvent (load) { ySpeed = 2.5; attackOne = false; attackTwo = false; attackGenerator = 0; attackTimer = 25; attacking = false; bossLife = 225; gradiusBoss = new Sound(); gradiusBoss.attachSound("gradiusBoss"); gradiusBoss.stop(); gradiusBoss.start(0, 50); } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(4); } if (this._x > 425) { this._x = this._x - 2.5; } if (this._x <= 425) { this._y = this._y + ySpeed; if ((this._y <= 90) && (ySpeed < 0)) { ySpeed = 2.5; if (bossLife < 120) { ySpeed = 3.5; } } if ((this._y >= 365) && (ySpeed > 0)) { ySpeed = -2.5; if (bossLife < 100) { ySpeed = -3.5; } } if (bossLife > 0) { if (attackTimer > 0) { attackTimer--; } if (((!attackOne) && (!attackTwo)) && (attackTimer == 0)) { attackGenerator = Math.random() * 100; if (attackGenerator <= 25) { attackOne = true; attackTwo = false; } if ((attackGenerator > 25) && (attackGenerator <= 50)) { attackOne = false; attackTwo = true; } if ((attackGenerator > 50) && (attackGenerator <= 75)) { attackOne = true; attackTwo = false; } if (attackGenerator > 75) { attackOne = false; attackTwo = true; } } if (attackOne) { this.gotoAndStop(2); } if (attackTwo) { this.gotoAndStop(3); } } } }
Frame 181
selectMusic = new Sound(); selectMusic.attachSound("selectMusic"); selectMusic.stop(); selectMusic.start(0, 100); charSelect = 5; select = false; keyListener = new Object(); if ((((((((_global.flash != undefined) && (_global.heat != undefined)) && (_global.pharaoh != undefined)) && (_global.metal != undefined)) && (_global.drill != undefined)) && (_global.spark != undefined)) && (_global.crash != undefined)) && (_global.dust != undefined)) { if ((((((((!_global.flash) && (!_global.heat)) && (!_global.pharaoh)) && (!_global.metal)) && (!_global.drill)) && (!_global.spark)) && (!_global.crash)) && (!_global.dust)) { gotoAndStop (6); } } keyListener.onKeyDown = function () { if (select == false) { if (Key.isDown(39) && (charSelect < 9)) { charSelect = charSelect + 1; } if (Key.isDown(37) && (charSelect > 1)) { charSelect = charSelect - 1; } if (Key.isDown(40) && (charSelect < 7)) { charSelect = charSelect + 3; } if (Key.isDown(38) && (charSelect > 3)) { charSelect = charSelect - 3; } if (Key.isDown(90)) { if ((charSelect == 2) && (_global.metal or (_global.metal == undefined))) { gotoAndStop (182); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 1) && (_global.flash or (_global.flash == undefined))) { gotoAndStop (189); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 4) && (_global.heat or (_global.heat == undefined))) { gotoAndStop (183); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 3) && (_global.spark or (_global.spark == undefined))) { gotoAndStop (186); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 6) && (_global.crash or (_global.crash == undefined))) { gotoAndStop (184); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 7) && (_global.pharaoh or (_global.pharaoh == undefined))) { gotoAndStop (187); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 8) && (_global.drill or (_global.drill == undefined))) { gotoAndStop (185); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 9) && (_global.dust or (_global.dust == undefined))) { gotoAndStop (188); selectMusic.stop(); Key.removeListener(keyListener); } } } }; Key.addListener(keyListener); stop();
Instance of Symbol 344 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 2; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 346 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 1; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 348 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 7; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 350 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 3; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 352 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 8; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 354 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 4; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 356 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 6; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 358 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 9; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 360 MovieClip in Frame 181
onClipEvent (load) { selectionNumber = 5; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Frame 182
stop(); _global.metal = true;
Instance of Symbol 380 MovieClip in Frame 182
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 183
stop(); _global.heat = true;
Instance of Symbol 367 MovieClip in Frame 183
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 184
stop(); _global.crash = true;
Instance of Symbol 407 MovieClip in Frame 184
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 185
stop(); _global.drill = true;
Instance of Symbol 419 MovieClip in Frame 185
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 186
stop(); _global.spark = true;
Instance of Symbol 432 MovieClip in Frame 186
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 187
stop(); _global.pharaoh = true;
Instance of Symbol 446 MovieClip in Frame 187
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 188
stop(); _global.dust = true;
Instance of Symbol 456 MovieClip in Frame 188
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 189
stop(); _global.flash = true;
Instance of Symbol 468 MovieClip in Frame 189
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 190
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 491 MovieClip "metalMan" in Frame 190
onClipEvent (load) { attackOne = false; attackTwo = false; attackGenerator = 0; attackTimer = 90; attacking = false; xSpeed = -5; bossLife = 14; vel_y = 0; this._x = 525; startingY = this._y; bossHit = false; bladeCounter = 0; } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(6); } if ((bossLife > 0) && (!bossHit)) { if (attackTimer > 0) { attackTimer--; } if (((!attackOne) && (!attackTwo)) && (attackTimer == 0)) { attackGenerator = Math.random() * 100; if (attackGenerator <= 33) { attackOne = true; attackTwo = false; this.gotoAndStop(3); } if (attackGenerator > 33) { attackOne = false; attackTwo = true; vel_y = 40; this.gotoAndStop(4); } } if (attackOne) { this._x = this._x + xSpeed; if ((this._x <= 350) && (xSpeed < 0)) { xSpeed = 5; this._xscale = -this._xscale; } if ((this._x >= 525) && (xSpeed > 0)) { xSpeed = -5; this._xscale = -this._xscale; attackOne = false; attackTimer = 10; this.gotoAndStop(2); } } if (attackTwo) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -12.5) { vel_y = -12.5; } if (vel_y == 0) { this.jMetal.play(); } if (this._y >= startingY) { this._y = startingY; vel_y = 0; attackTwo = false; attackTimer = 0; this.gotoAndStop(2); } } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 190
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 510 MovieClip "parentShot" in Frame 190
onClipEvent (load) { if (this._name != "parentShot") { leftMove = false; upMove = false; this._x = _root.metalMan._x; this._y = _root.metalMan._y; marioPosX = _root.mario._x; marioPosY = _root.mario._y; marioX = Math.abs(this._x - _root.mario._x); marioY = Math.abs((this._y - _root.mario._y) + 60); marioZ = Math.sqrt(Math.pow(marioX, 2) + Math.pow(marioY, 2)); xSpeed = marioX / 16; ySpeed = marioY / 12; if (marioPosX > this._x) { leftMove = false; } if (marioPosX < this._x) { leftMove = true; } if (marioPosY < this._y) { upMove = true; } if (marioPosY > this._y) { upMove = false; } } } onClipEvent (enterFrame) { if (this._name != "parentShot") { if (leftMove) { this._x = this._x - xSpeed; } if (!leftMove) { this._x = this._x + xSpeed; } if (upMove) { this._y = this._y - ySpeed; } if (!upMove) { this._y = this._y + ySpeed; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } } }
Instance of Symbol 164 MovieClip "mario" in Frame 190
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = true; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginSix"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 192
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 527 MovieClip "drillMan" in Frame 192
onClipEvent (load) { turnRight = _root.ground1._x - (_root.ground1._width / 2); turnLeft = _root.ground1._x + (_root.ground1._width / 2); xSpeed = -5; attackOne = false; attackTwo = false; attackTimer = 90; attacking = false; xSpeed = -5; bossLife = 14; moveLeft = true; directionGenerator = 0; startingY = this._y; marioPos = 0; bossHit = false; } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(6); } if ((bossLife > 0) && (!bossHit)) { if (this._x <= turnRight) { this._xscale = -this._xscale; moveLeft = false; xSpeed = 5; } if (this._x >= turnLeft) { this._xscale = -this._xscale; moveLeft = true; xSpeed = -5; } if (attackTimer > 0) { attackTimer--; } if ((this._currentframe != 1) && (attackTimer != 0)) { this.gotoAndStop(2); this._x = this._x + xSpeed; } if (((!attackOne) && (!attackTwo)) && (attackTimer == 0)) { attackGenerator = Math.random() * 100; if ((attackGenerator <= 25) && (attackGenerator > 0)) { attackOne = true; attackTwo = false; } if ((attackGenerator > 25) && (attackGenerator <= 50)) { attackOne = false; attackTwo = true; } if ((attackGenerator > 50) && (attackGenerator <= 75)) { attackOne = true; attackTwo = false; } if (attackGenerator > 75) { attackOne = false; attackTwo = true; } } if (attackOne) { this.gotoAndStop(3); if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = -this._xscale; xSpeed = 5; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = -this._xscale; xSpeed = -5; } } if (attackTwo) { this.gotoAndStop(4); if (marioPos != 0) { this._x = marioPos; marioPos = o; } } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 192
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 547 MovieClip "parentShot" in Frame 192
onClipEvent (load) { if (this._name != "parentShot") { leftMove = false; xSpeed = 15; this._x = _root.drillMan._x; this._y = _root.drillMan._y; marioPosX = _root.mario._x; if (marioPosX > this._x) { leftMove = false; this._xscale = -this._xscale; } if (marioPosX < this._x) { leftMove = true; } } } onClipEvent (enterFrame) { if (this._name != "parentShot") { if (leftMove) { this._x = this._x - xSpeed; } if (!leftMove) { this._x = this._x + xSpeed; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } } }
Instance of Symbol 164 MovieClip "mario" in Frame 192
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = true; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginSix"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 194
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 560 MovieClip "crashMan" in Frame 194
onClipEvent (load) { turnRight = _root.ground1._x - (_root.ground1._width / 2); turnLeft = _root.ground1._x + (_root.ground1._width / 2); xSpeed = -5; attackOne = false; attackTimer = 90; attacking = false; xSpeed = -5; bossLife = 9; vel_y = 0; moveLeft = true; directionGenerator = 0; startingY = this._y; faceLeft = this._xscale; faceRight = -this._xscale; bossHit = false; crashCounter = 0; } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(6); _root["crashShot" + crashCounter].removeMovieClip(); } if ((bossLife > 0) && (!bossHit)) { if (this._x <= turnRight) { this._xscale = faceRight; moveLeft = false; xSpeed = 5; } if (this._x >= turnLeft) { this._xscale = faceLeft; moveLeft = true; xSpeed = -5; } if (attackTimer > 0) { attackTimer--; } if ((!attackOne) && (attackTimer == 0)) { vel_y = 40; attackOne = true; this.gotoAndStop(4); } if (((this._currentframe != 1) && (moveLeft)) && (attackTimer != 0)) { this.gotoAndStop(3); this._x = this._x + xSpeed; } if (((this._currentframe != 1) && (!moveLeft)) && (attackTimer != 0)) { this.gotoAndStop(3); this._x = this._x + xSpeed; } if (attackOne) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } if (vel_y == 0) { this.cJump.play(); crashCounter++; _root.parentShot.duplicateMovieClip("crashShot" + crashCounter, crashCounter + 30); } if (this._y >= startingY) { this._y = startingY; vel_y = 0; attackOne = false; attackTimer = Math.ceil(Math.random() * 40); directionGenerator = Math.random() * 10; if (directionGenerator <= 5) { if (!moveLeft) { this._xscale = faceLeft; xSpeed = -5; } moveLeft = true; } if (directionGenerator > 5) { if (moveLeft) { this._xscale = faceRight; xSpeed = 5; } moveLeft = false; } this.gotoAndStop(2); } } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 194
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 576 MovieClip "parentShot" in Frame 194
onClipEvent (load) { if (this._name != "parentShot") { marioHit = false; groundHit = false; leftMove = false; upMove = false; this._x = _root.crashMan._x; this._y = _root.crashMan._y; marioPosX = _root.mario._x; marioPosY = _root.mario._y; marioX = Math.abs(this._x - _root.mario._x); marioY = Math.abs((this._y - _root.mario._y) - 30); marioZ = Math.sqrt(Math.pow(marioX, 2) + Math.pow(marioY, 2)); xSpeed = marioX / 15; ySpeed = marioY / 16; if (marioPosX > this._x) { leftMove = false; } if (marioPosX < this._x) { leftMove = true; } if (marioPosY < this._y) { upMove = true; } if (marioPosY > this._y) { upMove = false; } } } onClipEvent (enterFrame) { if (this._name != "parentShot") { if ((leftMove && (!marioHit)) && (!groundHit)) { this._x = this._x - xSpeed; } if (((!leftMove) && (!marioHit)) && (!groundHit)) { this._x = this._x + xSpeed; } if ((upMove && (!marioHit)) && (!groundHit)) { this._y = this._y - ySpeed; } if (((!upMove) && (!marioHit)) && (!groundHit)) { this._y = this._y + ySpeed; } if (this.hitTest(_root.mario) && (!groundHit)) { marioHit = true; this.gotoAndStop(2); } if (marioHit) { this._x = _root.mario._x; this._y = _root.mario._y - 25; } if (this.hitTest(_root.ground1) && (!marioHit)) { groundHit = true; this.gotoAndStop(2); } } }
Instance of Symbol 164 MovieClip "mario" in Frame 194
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = true; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginSix"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 196
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 591 MovieClip "heatMan" in Frame 196
onClipEvent (load) { attackOne = false; attackTimer = 90; bossLife = 9; marioPos = 0; faceLeft = false; fireCounter = 0; } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(6); } if (bossLife > 0) { if (attackTimer > 0) { attackTimer--; } if (((_root.mario._x < this._x) && (faceLeft)) && (this._currentframe != 5)) { this._xscale = -this._xscale; faceLeft = false; } if (((_root.mario._x > this._x) && (!faceLeft)) && (this._currentframe != 5)) { this._xscale = -this._xscale; faceLeft = true; } if ((!attackOne) && (attackTimer == 0)) { this.gotoAndStop(3); fireCounter++; attackOne = true; } if (marioPos != 0) { if (this._x > marioPos) { this._x = this._x - 16; } if (this._x < marioPos) { this._x = this._x + 16; if (!faceLeft) { marioPos = 0; this.gotoAndStop(2); attackCounter = 2; attackOne = false; } } if (faceLeft && (this._x > marioPos)) { marioPos = 0; this.gotoAndStop(2); attackCounter = 2; attackOne = false; } } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 196
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 607 MovieClip "parentShot" in Frame 196
onClipEvent (load) { if (this._name != "parentShot") { jumping = true; vel_y = Math.random() * 40; marioPosX = _root.mario._x; this._x = _root.heatMan._x; this._y = _root.heatMan._y; if (marioPosX > this._x) { xSpeed = (Math.random() * 6) + 5; this._xscale = -this._xscale; } if (marioPosX < this._x) { xSpeed = ((-Math.random()) * 6) - 5; } startingY = this._y + 10; } } onClipEvent (enterFrame) { if (this._name != "parentShot") { if (jumping) { vel_y = vel_y - 2.5; this._x = this._x + xSpeed; this._y = this._y - vel_y; if (vel_y <= -15) { vel_y = -15; } if (this._y >= startingY) { this.gotoAndStop(2); this._y = startingY; vel_y = 0; } } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } } }
Instance of Symbol 164 MovieClip "mario" in Frame 196
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = true; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginSix"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 198
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 624 MovieClip "pharaohMan" in Frame 198
onClipEvent (load) { turnRight = _root.ground1._x - (_root.ground1._width / 2); turnLeft = _root.ground1._x + (_root.ground1._width / 2); xSpeed = -10; attackOne = false; attackTwo = false; attackTimer = 90; bossLife = 9; moveLeft = true; startingY = this._y; bossHit = false; vel_y = 0; startingY = this._y; faceLeft = this._xscale; faceRight = -this._xscale; jumping = false; jumpTimer = 30; } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(7); } if ((bossLife > 0) && (!bossHit)) { if ((this._x <= turnRight) or (this._x == turnRight)) { this._xscale = faceRight; this._x = this._x + 25; moveLeft = false; xSpeed = 10; } if ((this._x >= turnLeft) or (this._x == turnLeft)) { this._xscale = faceLeft; moveLeft = true; this._x = this._x - 25; xSpeed = -10; } if (attackTimer > 0) { attackTimer--; } if (jumpTimer > 0) { jumpTimer--; } if ((((!jumping) && (!attackOne)) && (!attackTwo)) && (this._currentframe != 1)) { this.gotoAndStop(2); } if ((((this._currentframe != 1) && (attackTimer != 0)) && (!jumping)) && (jumpTimer == 0)) { this.gotoAndStop(3); vel_y = 30; jumping = true; } if (jumping) { vel_y = vel_y - 2.5; this._x = this._x + xSpeed; this._y = this._y - vel_y; if (vel_y <= -15) { vel_y = -15; } if (this._y >= startingY) { jumping = false; jumpTimer = 30; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } this._y = startingY; vel_y = 0; } } if ((((!attackOne) && (!attackTwo)) && (attackTimer == 0)) && (this._y == startingY)) { attackGenerator = Math.random() * 100; if ((attackGenerator <= 25) && (attackGenerator > 0)) { attackOne = true; attackTwo = false; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } vel_y = 40; } if ((attackGenerator > 25) && (attackGenerator <= 50)) { attackOne = false; attackTwo = true; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } } if ((attackGenerator > 50) && (attackGenerator <= 75)) { attackOne = true; attackTwo = false; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } vel_y = 40; } if (attackGenerator > 75) { attackOne = false; attackTwo = true; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } } } if (attackOne) { this.gotoAndStop(4); vel_y = vel_y - 2.5; this._y = this._y - vel_y; this._x = this._x + xSpeed; if (vel_y <= -15) { vel_y = -15; } if (vel_y == 0) { this.jPharaoh.play(); } if (this._y >= startingY) { this._y = startingY; vel_y = 0; attackOne = false; attackTimer = 90; jumpTimer = 30; } } if (attackTwo) { this.gotoAndStop(5); } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 198
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 637 MovieClip "parentShotOne" in Frame 198
onClipEvent (load) { if (this._name != "parentShotOne") { leftMove = false; upMove = false; this._x = _root.pharaohMan._x; this._y = _root.pharaohMan._y; marioPosX = _root.mario._x; marioPosY = _root.mario._y; marioX = Math.abs(this._x - _root.mario._x); marioY = Math.abs(this._y - _root.mario._y); marioZ = Math.sqrt(Math.pow(marioX, 2) + Math.pow(marioY, 2)); xSpeed = marioX / 10; ySpeed = marioY / 10; if (marioPosX > this._x) { leftMove = false; } if (marioPosX < this._x) { leftMove = true; } if (marioPosY < this._y) { upMove = true; } if (marioPosY > this._y) { upMove = false; } } } onClipEvent (enterFrame) { if (this._name != "parentShotOne") { if (leftMove) { this._x = this._x - xSpeed; } if (!leftMove) { this._x = this._x + xSpeed; } if (upMove) { this._y = this._y - ySpeed; } if (!upMove) { this._y = this._y + ySpeed; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } } }
Instance of Symbol 639 MovieClip "parentShotTwo" in Frame 198
onClipEvent (load) { if (this._name != "parentShotTwo") { leftMove = false; xSpeed = 15; this._x = _root.pharaohMan._x; this._y = _root.pharaohMan._y; marioPosX = _root.mario._x; if (marioPosX > this._x) { leftMove = false; this._xscale = -this._xscale; } if (marioPosX < this._x) { leftMove = true; } } } onClipEvent (enterFrame) { if (this._name != "parentShotTwo") { if (leftMove) { this._x = this._x - xSpeed; } if (!leftMove) { this._x = this._x + xSpeed; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } } }
Instance of Symbol 164 MovieClip "mario" in Frame 198
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = true; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginSix"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 200
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 652 MovieClip "sparkMan" in Frame 200
onClipEvent (load) { turnRight = _root.ground1._x - (_root.ground1._width / 2); turnLeft = _root.ground1._x + (_root.ground1._width / 2); xSpeed = -10; attackOne = false; attackTimer = 45; bossLife = 14; moveLeft = true; startingY = this._y; bossHit = false; vel_y = 0; startingY = this._y; faceLeft = this._xscale; faceRight = -this._xscale; jumping = false; jumpTimer = 30; } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(6); } if ((bossLife > 0) && (!bossHit)) { if (this._x <= turnRight) { this._xscale = faceRight; moveLeft = false; this._x = this._x + 25; xSpeed = 10; } if (this._x >= turnLeft) { this._xscale = faceLeft; moveLeft = true; this._x = this._x - 25; xSpeed = -10; } if (attackTimer > 0) { attackTimer--; } if (jumpTimer > 0) { jumpTimer--; } if (((!jumping) && (!attackOne)) && (this._currentframe != 1)) { this.gotoAndStop(2); } if ((((this._currentframe != 1) && (attackTimer != 0)) && (!jumping)) && (jumpTimer == 0)) { this.gotoAndStop(3); vel_y = 30; jumping = true; } if (jumping) { vel_y = vel_y - 2.5; this._x = this._x + xSpeed; this._y = this._y - vel_y; if (vel_y <= -15) { vel_y = -15; } if (this._y >= startingY) { jumping = false; jumpTimer = 30; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } this._y = startingY; vel_y = 0; } } if (((!attackOne) && (attackTimer == 0)) && (this._y == startingY)) { attackOne = true; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } } if (attackOne) { this.gotoAndStop(4); } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 200
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 673 MovieClip "parentShot" in Frame 200
onClipEvent (load) { if (this._name != "parentShot") { leftMove = false; upMove = false; this._x = _root.sparkMan._x; this._y = _root.sparkMan._y; marioPosX = _root.mario._x; marioPosY = _root.mario._y - 35; marioX = Math.abs(this._x - _root.mario._x); marioY = Math.abs(this._y - _root.mario._y); marioZ = Math.sqrt(Math.pow(marioX, 2) + Math.pow(marioY, 2)); xSpeed = marioX / 18; ySpeed = marioY / 18; if (marioPosX > this._x) { leftMove = false; } if (marioPosX < this._x) { leftMove = true; } if (marioPosY < this._y) { upMove = true; } if (marioPosY > this._y) { upMove = false; } } } onClipEvent (enterFrame) { if (this._name != "parentShot") { if (leftMove) { this._x = this._x - xSpeed; } if (!leftMove) { this._x = this._x + xSpeed; } if (upMove) { this._y = this._y - ySpeed; } if (!upMove) { this._y = this._y + ySpeed; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } } }
Instance of Symbol 164 MovieClip "mario" in Frame 200
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = true; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginSix"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 202
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 688 MovieClip "dustMan" in Frame 202
onClipEvent (load) { turnRight = _root.ground1._x - (_root.ground1._width / 2); turnLeft = _root.ground1._x + (_root.ground1._width / 2); xSpeed = -10; attackOne = false; attackTwo = false; attackTimer = 90; bossLife = 14; moveLeft = true; startingY = this._y; bossHit = false; vel_y = 0; startingY = this._y; faceLeft = this._xscale; faceRight = -this._xscale; jumping = false; jumpTimer = 30; } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(7); } if ((bossLife > 0) && (!bossHit)) { if (this._x <= turnRight) { this._xscale = faceRight; this._x = this._x + 25; moveLeft = false; xSpeed = 10; } if (this._x >= turnLeft) { this._xscale = faceLeft; moveLeft = true; this._x = this._x - 25; xSpeed = -10; } if (attackTimer > 0) { attackTimer--; } if (jumpTimer > 0) { jumpTimer--; } if ((((!jumping) && (!attackOne)) && (!attackTwo)) && (this._currentframe != 1)) { this.gotoAndStop(2); } if ((((this._currentframe != 1) && (attackTimer != 0)) && (!jumping)) && (jumpTimer == 0)) { this.gotoAndStop(3); vel_y = 30; jumping = true; } if (jumping) { vel_y = vel_y - 2.5; this._x = this._x + xSpeed; this._y = this._y - vel_y; if (vel_y <= -15) { vel_y = -15; } if (this._y >= startingY) { jumping = false; jumpTimer = 30; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = (Math.random() * 17) + 5; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = (-(Math.random() * 17)) + 5; } this._y = startingY; vel_y = 0; } } if ((((!attackOne) && (!attackTwo)) && (attackTimer == 0)) && (this._y == startingY)) { attackGenerator = Math.random() * 100; if ((attackGenerator <= 25) && (attackGenerator > 0)) { attackOne = true; attackTwo = false; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } } if ((attackGenerator > 25) && (attackGenerator <= 50)) { attackOne = false; attackTwo = true; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } } if ((attackGenerator > 50) && (attackGenerator <= 75)) { attackOne = true; attackTwo = false; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } } if (attackGenerator > 75) { attackOne = false; attackTwo = true; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 10; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -10; } } } if (attackOne) { this.gotoAndStop(4); } if (attackTwo) { this.gotoAndStop(5); if (_root.mario._x > this._x) { _root.mario._x = _root.mario._x - 10; } if (_root.mario._x < this._x) { _root.mario._x = _root.mario._x + 10; } } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 202
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 715 MovieClip "parentShot" in Frame 202
onClipEvent (load) { if (this._name != "parentShot") { leftMove = false; xSpeed = 15; this._x = _root.dustMan._x; this._y = _root.dustMan._y - 20; marioPosX = _root.mario._x; if (_root.dustMan.moveLeft) { leftMove = true; } if (!_root.dustMan.moveLeft) { leftMove = false; this._xscale = -this._xscale; } } } onClipEvent (enterFrame) { if (this._name != "parentShot") { if (leftMove && (this._currentframe == 1)) { this._x = this._x - xSpeed; if (this._x < _root.mario._x) { this.gotoAndStop(2); } } if ((!leftMove) && (this._currentframe == 1)) { this._x = this._x + xSpeed; if (this._x > _root.mario._x) { this.gotoAndStop(2); } } } }
Instance of Symbol 164 MovieClip "mario" in Frame 202
onClipEvent (load) { walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = true; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginSix"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } }
Frame 204
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 730 MovieClip "flashMan" in Frame 204
onClipEvent (load) { turnRight = _root.ground1._x - (_root.ground1._width / 2); turnLeft = _root.ground1._x + (_root.ground1._width / 2); xSpeed = -5; attackOne = false; attackTwo = false; attackTimer = 45; bossLife = 14; moveLeft = true; faceLeft = this._xscale; faceRight = -this._xscale; startingY = this._y; bossHit = false; vel_y = 0; startingY = this._y; } onClipEvent (enterFrame) { if (bossLife <= 0) { this.gotoAndStop(7); } if ((bossLife > 0) && (!bossHit)) { if (this._x <= turnRight) { this._xscale = faceRight; this._x = this._x + 20; moveLeft = false; xSpeed = 5; } if (this._x >= turnLeft) { this._xscale = faceLeft; moveLeft = true; this._x = this._x - 20; xSpeed = -5; } if (attackTimer > 0) { attackTimer--; } if ((this._currentframe != 1) && (attackTimer != 0)) { this.gotoAndStop(3); this._x = this._x + xSpeed; } if (((!attackOne) && (!attackTwo)) && (attackTimer == 0)) { attackGenerator = Math.random() * 100; if (attackGenerator > 50) { attackOne = true; attackTwo = false; vel_y = 30; } if (attackGenerator <= 50) { attackOne = false; attackTwo = true; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 5; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -5; } } } if (attackOne) { this.gotoAndStop(4); vel_y = vel_y - 2.5; this._x = this._x + (xSpeed * 2); this._y = this._y - vel_y; if (vel_y <= -15) { vel_y = -15; } if (this._y >= startingY) { this._y = startingY; vel_y = 0; attackOne = false; attackTimer = 50; if ((_root.mario._x > this._x) && (moveLeft)) { moveLeft = false; this._xscale = faceRight; xSpeed = 5; } if ((_root.mario._x < this._x) && (!moveLeft)) { moveLeft = true; this._xscale = faceLeft; xSpeed = -5; } } } if (attackTwo) { this.gotoAndStop(5); } } }
Instance of Symbol 92 MovieClip "conCirc" in Frame 204
onClipEvent (enterFrame) { function hitFunction(hit) { if (hit == "right") { _root.mario.rightStop = true; } if (hit == "left") { _root.mario.leftStop = true; } if (hit == "ceiling") { _root.mario.vel_y = 0; } if (hit == "floor") { _root.mario.jumping = false; _root.mario.falling = false; _root.mario.vel_y = 0; _root.mario.fallHit = false; } } }
Instance of Symbol 749 MovieClip "parentShot" in Frame 204
onClipEvent (load) { if (this._name != "parentShot") { leftMove = false; this._x = _root.flashMan._x; this._y = _root.flashMan._y; marioPosX = _root.mario._x; if (marioPosX > this._x) { leftMove = false; this._xscale = -this._xscale; } if (marioPosX < this._x) { leftMove = true; } } } onClipEvent (enterFrame) { if (this._name != "parentShot") { } }
Instance of Symbol 164 MovieClip "mario" in Frame 204
onClipEvent (load) { flashFreeze = false; walkSpeed = 0; fallHit = true; vel_y = 0; rightStop = false; leftStop = false; walking = false; ducking = false; jumping = false; falling = false; jumpControl = false; faceRight = true; superMode = true; hurtCounter = 0; grav_y = 0; marioDeath = false; deathCounter = 0; groundThing = false; marioJump = new Sound(); marioJump.attachSound("jump"); marioDown = new Sound(); marioDown.attachSound("down"); } onClipEvent (enterFrame) { if (this._y >= 550) { marioDeath = true; } if (hurtCounter > 0) { if (hurtCounter == 26) { marioDown.start(); } hurtCounter--; this._alpha = Math.random() * 75; } if (hurtCounter == 0) { this._alpha = 100; } if (marioDeath) { this.gotoAndStop(13); deathCounter++; vel_y = vel_y - 1.5; this._y = this._y - vel_y; if (vel_y <= -20) { vel_y = -20; } } if (deathCounter >= 110) { _root.gotoAndPlay("beginSix"); } if (!marioDeath) { if ((!jumping) && (!falling)) { grav_y = 23; this._y = this._y + grav_y; fallHit = true; } if (!flashFreeze) { if (superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(1); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(2); } if (walkSpeed <= -10) { this.gotoAndStop(3); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(2); } if (walkSpeed >= 10) { this.gotoAndStop(3); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(1); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(4); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(5); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(6); } if ((vel_y != 0) && (this._currentframe == 3)) { this.gotoAndStop(7); } rightStop = false; leftStop = false; } if (!superMode) { if ((!walking) && (!ducking)) { this.gotoAndStop(8); } if ((walkSpeed > -10) && (walkSpeed < 0)) { this.gotoAndStop(9); } if (walkSpeed <= -10) { this.gotoAndStop(9); } if ((walkSpeed < 10) && (walkSpeed > 0)) { this.gotoAndStop(9); } if (walkSpeed >= 10) { this.gotoAndStop(9); } if (((Key.isDown(37) && (!Key.isDown(39))) && (!ducking)) && (!rightStop)) { if (Key.isDown(65)) { if ((walkSpeed < 11) && (walkSpeed >= 7)) { walkSpeed = walkSpeed + 0.15; } if (walkSpeed < 7) { walkSpeed = walkSpeed + 1.5; } } if (!Key.isDown(65)) { if (walkSpeed < 7) { walkSpeed++; } if (walkSpeed >= 7) { walkSpeed = 7; } } walking = true; if (this._x > 0) { this._x = this._x - walkSpeed; } if (faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = false; } } if (((Key.isDown(39) && (!Key.isDown(37))) && (!ducking)) && (!leftStop)) { if (Key.isDown(65)) { if ((walkSpeed > -11) && (walkSpeed <= -7)) { walkSpeed = walkSpeed - 0.15; } if (walkSpeed > -7) { walkSpeed = walkSpeed - 1.5; } } if (!Key.isDown(65)) { if (walkSpeed > -7) { walkSpeed--; } if (walkSpeed <= -7) { walkSpeed = -7; } } walking = true; this._x = this._x - walkSpeed; if (!faceRight) { walkSpeed = 0; this._xscale = -this._xscale; faceRight = true; } } if ((!Key.isDown(39)) && (!Key.isDown(37))) { walking = false; walkSpeed = 0; } if (Key.isDown(39) && (Key.isDown(37))) { this.gotoAndStop(8); walkSpeed = 0; } if ((Key.isDown(40) && (!jumping)) && (!falling)) { walking = false; ducking = true; walkSpeed = 0; this.gotoAndStop(10); } if (!Key.isDown(40)) { ducking = false; } if ((((Key.isDown(90) && (!Key.isDown(40))) && (!jumping)) && (!falling)) && (!jumpControl)) { vel_y = 30; marioJump.start(); jumping = true; jumpControl = true; } if (!Key.isDown(90)) { jumpControl = false; } if ((((!Key.isDown(90)) && (jumping)) && (!falling)) && (vel_y > 0)) { vel_y = 0; falling = true; } if (jumping && (vel_y == 0)) { falling = true; } if (jumping == true) { vel_y = vel_y - 2.5; this._y = this._y - vel_y; if (vel_y <= -25) { vel_y = -25; } } t = 1; while (t < 5) { if (!this.hitTest["wall" + t]) { rightStop = false; leftStop = false; } t++; } if (((vel_y > 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(11); } if (((vel_y < 0) && (walkSpeed > -11)) && (walkSpeed < 11)) { this.gotoAndStop(12); } if ((vel_y != 0) && (this._currentframe == 9)) { this.gotoAndStop(11); } rightStop = false; leftStop = false; } } } }
Instance of Symbol 33 MovieClip in Symbol 40 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation - 5; }
Instance of Symbol 35 MovieClip in Symbol 40 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation - 15; }
Instance of Symbol 37 MovieClip in Symbol 40 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 10; }
Instance of Symbol 39 MovieClip in Symbol 40 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 20; }
Symbol 56 Button
on (release) { _root.play(); }
Symbol 57 MovieClip Frame 1
_root.stop(); percentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; percentFuddle = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); loaded.text = percentFuddle; if (percentLoaded != 100) { setProperty(bar, _xscale , percentLoaded); } else { gotoAndStop (3); }
Symbol 57 MovieClip Frame 2
gotoAndPlay (1);
Symbol 60 Button
on (press) { gotoAndStop (4); }
Symbol 61 Button
on (press) { gotoAndStop (5); }
Symbol 65 Button
on (press) { gotoAndPlay (6); }
Symbol 67 Button
on (press) { gotoAndStop (3); }
Symbol 75 Button
on (press) { gotoAndStop (2); }
Symbol 83 Button
on (rollOver) { marioIntro = new Sound(); marioIntro.attachSound("cutman"); marioIntro.stop(); marioIntro.start(); } on (rollOut) { marioIntro.stop(); } on (press) { marioIntro.stop(); gotoAndPlay (156); }
Symbol 85 Button
on (rollOver) { marioIntro = new Sound(); marioIntro.attachSound("forest"); marioIntro.stop(); marioIntro.start(); } on (rollOut) { marioIntro.stop(); } on (press) { marioIntro.stop(); gotoAndPlay (7); }
Symbol 87 Button
on (rollOver) { marioIntro = new Sound(); marioIntro.attachSound("gradius2"); marioIntro.stop(); marioIntro.start(); } on (rollOut) { marioIntro.stop(); } on (press) { marioIntro.stop(); gotoAndPlay (111); }
Instance of Symbol 97 MovieClip in Symbol 98 MovieClip Frame 1
onClipEvent (enterFrame) { this._visible = false; } onClipEvent (enterFrame) { if (_root.mario.marioBase.hitTest(this) && (_root.mario.vel_y <= 0)) { hit = "floor"; _root.conCirc.hitFunction(hit); _root.mario._y = _parent._y - _root.mario.height; } }
Symbol 104 MovieClip Frame 1
stop();
Symbol 104 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip in Symbol 107 MovieClip Frame 1
onClipEvent (enterFrame) { this._visible = false; } onClipEvent (enterFrame) { if (_root.mario.hitTest(this)) { hit = "right"; _root.conCirc.hitFunction(hit); } }
Instance of Symbol 106 MovieClip in Symbol 108 MovieClip Frame 1
onClipEvent (load) { this._visible = false; } onClipEvent (enterFrame) { if (_root.mario.hitTest(this)) { hit = "left"; _root.conCirc.hitFunction(hit); } }
Symbol 114 MovieClip Frame 7
stop();
Symbol 115 MovieClip Frame 1
stop();
Instance of Symbol 113 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (enterFrame) { if ((this.hitTest(_root.mario.hitBlock) && (_root.mario.falling)) && (_root.mario.fallHit)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.gotoAndStop(2); } if (((this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) && (!_root.mario.falling)) && (!_root.mario.fallHit)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } if (this.hitTest(_root.mario.fallingHit) && (_root.mario.fallHit)) { _root.mario.jumping = true; _root.mario.vel_y = 30; _root.mario._y = _root.mario._y - 20; _parent.gotoAndStop(2); } }
Symbol 115 MovieClip Frame 2
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Symbol 119 MovieClip Frame 7
stop();
Symbol 120 MovieClip Frame 1
stop();
Instance of Symbol 113 MovieClip in Symbol 120 MovieClip Frame 1
onClipEvent (enterFrame) { if ((this.hitTest(_root.mario.hitBlock) && (_root.mario.falling)) && (_root.mario.fallHit)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.gotoAndStop(2); } if (((this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) && (!_root.mario.falling)) && (!_root.mario.fallHit)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } if (this.hitTest(_root.mario.fallingHit) && (_root.mario.fallHit)) { _root.mario.jumping = true; _root.mario.vel_y = 30; _root.mario._y = _root.mario._y - 20; _parent.gotoAndStop(2); } }
Symbol 120 MovieClip Frame 2
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Symbol 133 MovieClip Frame 5
stop();
Instance of Symbol 113 MovieClip in Symbol 133 MovieClip Frame 5
onClipEvent (load) { _root.enemy1.walkSpeed = 2; if (_root.enemy1.faceRight) { _root.enemy1.faceRight = false; _root.enemy1._xscale = -_root.enemy1._xscale; } _root.enemy1.playWalk = false; _root.enemy1.turtleCounter = 100; _root.enemy1._x = 515; _root.enemy1._y = -75; _root.enemy1.gotoAndStop(1); }
Symbol 134 MovieClip Frame 1
stop();
Instance of Symbol 113 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) { if ((this.hitTest(_root.mario.hitBlock) && (_root.mario.falling)) && (_root.mario.fallHit)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.gotoAndStop(2); } if (((this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) && (!_root.mario.falling)) && (!_root.mario.fallHit)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } if (this.hitTest(_root.mario.fallingHit) && (_root.mario.fallHit)) { _root.mario.jumping = true; _root.mario.vel_y = 30; _root.mario._y = _root.mario._y - 20; _parent.gotoAndStop(2); } }
Symbol 134 MovieClip Frame 2
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Instance of Symbol 113 MovieClip in Symbol 134 MovieClip Frame 2
onClipEvent (load) { controlTimer = 5; } onClipEvent (enterFrame) { if (controlTimer > 0) { controlTimer--; } if (controlTimer == 0) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 20; _root.mario._y = _root.mario._y - 6; _parent.gotoAndStop(3); } if (this.hitTest(_root.mario.fallingHit) && (_root.mario.fallHit)) { _root.mario.jumping = true; _root.mario.vel_y = 30; _root.mario._y = _root.mario._y - 20; _parent.gotoAndStop(3); } } }
Symbol 134 MovieClip Frame 3
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Instance of Symbol 113 MovieClip in Symbol 134 MovieClip Frame 3
onClipEvent (load) { controlTimer = 5; } onClipEvent (enterFrame) { if (controlTimer > 0) { controlTimer--; } if (controlTimer == 0) { if (((this.hitTest(_root.mario.hitBlock) && (_root.mario.falling)) && (_root.mario.jumping)) && (_root.mario.fallHit)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.gotoAndStop(2); } if ((((this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) && (!_root.mario.falling)) && (!_root.mario.jumping)) && (!_root.mario.fallHit)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } if (this.hitTest(_root.mario.fallingHit) && (_root.mario.fallHit)) { _root.mario.jumping = true; _root.mario.vel_y = 30; _root.mario._y = _root.mario._y - 20; _parent.gotoAndStop(2); } } }
Symbol 134 MovieClip Frame 4
stop();
Symbol 139 MovieClip Frame 1
stop();
Symbol 139 MovieClip Frame 2
stop();
Instance of Symbol 95 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (Key.isDown(38))) { marioDoor = new Sound(); marioDoor.attachSound("door"); marioDoor.start(); _root.play(); } }
Instance of Symbol 98 MovieClip "ground17" in Symbol 141 MovieClip Frame 1
onClipEvent (load) { xSpeed = 3; moveRight = true; moveCounter = 40; } onClipEvent (enterFrame) { moveCounter--; if (moveRight) { if (moveCounter <= 0) { moveCounter = 60; moveRight = false; } if (this.hitTest(_root.mario.marioBase)) { _root.mario._x = _root.mario._x + xSpeed; if (_root.mario._x > 305) { _root.levelOne._x = _root.levelOne._x - xSpeed; _root.mario._x = _root.mario._x - xSpeed; } } this._x = this._x + xSpeed; } if (!moveRight) { if (moveCounter <= 0) { moveCounter = 60; moveRight = true; } if (this.hitTest(_root.mario.marioBase)) { _root.mario._x = _root.mario._x - xSpeed; } this._x = this._x - xSpeed; } }
Instance of Symbol 98 MovieClip "ground16" in Symbol 141 MovieClip Frame 1
onClipEvent (load) { ySpeed = 3; moveRight = true; moveCounter = 40; } onClipEvent (enterFrame) { moveCounter--; if (moveRight) { if (moveCounter <= 0) { moveCounter = 60; moveRight = false; } this._y = this._y + ySpeed; } if (!moveRight) { if (moveCounter <= 0) { moveCounter = 60; moveRight = true; } this._y = this._y - ySpeed; } }
Instance of Symbol 98 MovieClip "ground15" in Symbol 141 MovieClip Frame 1
onClipEvent (load) { xSpeed = 3; moveRight = true; moveCounter = 30; } onClipEvent (enterFrame) { moveCounter--; if (moveRight) { if (moveCounter <= 0) { moveCounter = 60; moveRight = false; } if (this.hitTest(_root.mario.marioBase)) { if (_root.mario._x > 305) { _root.levelOne._x = _root.levelOne._x - xSpeed; _root.mario._x = _root.mario._x - xSpeed; } _root.mario._x = _root.mario._x + xSpeed; } this._x = this._x + xSpeed; } if (!moveRight) { if (moveCounter <= 0) { moveCounter = 60; moveRight = true; } if (this.hitTest(_root.mario.marioBase)) { _root.mario._x = _root.mario._x - xSpeed; } this._x = this._x - xSpeed; } }
Instance of Symbol 104 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { startTimer = Math.ceil(Math.random() * 50); } onClipEvent (enterFrame) { if (startTimer > 0) { startTimer--; } if (startTimer == 0) { this.play(); startTimer = -1; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 104 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { startTimer = Math.ceil(Math.random() * 50); } onClipEvent (enterFrame) { if (startTimer > 0) { startTimer--; } if (startTimer == 0) { this.play(); startTimer = -1; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 104 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { startTimer = Math.ceil(Math.random() * 50); } onClipEvent (enterFrame) { if (startTimer > 0) { startTimer--; } if (startTimer == 0) { this.play(); startTimer = -1; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 104 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { startTimer = Math.ceil(Math.random() * 50); } onClipEvent (enterFrame) { if (startTimer > 0) { startTimer--; } if (startTimer == 0) { this.play(); startTimer = -1; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 104 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { startTimer = Math.ceil(Math.random() * 50); } onClipEvent (enterFrame) { if (startTimer > 0) { startTimer--; } if (startTimer == 0) { this.play(); startTimer = -1; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 104 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { startTimer = Math.ceil(Math.random() * 50); } onClipEvent (enterFrame) { if (startTimer > 0) { startTimer--; } if (startTimer == 0) { this.play(); startTimer = -1; } if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 115 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { walkSpeed = 2; faceRight = false; directionControl = 75; } onClipEvent (enterFrame) { if (this._currentframe == 1) { directionControl--; if (directionControl <= 0) { if (!faceRight) { faceRight = true; this._xscale = -this._xscale; directionControl = 75; } else if (faceRight) { faceRight = false; this._xscale = -this._xscale; directionControl = 75; } } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 120 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground5._x - (_parent.ground5._width / 2); turnLeft = _parent.ground5._x + (_parent.ground5._width / 2); walkSpeed = 3; faceRight = true; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (faceRight) { this._x = this._x + walkSpeed; } if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 120 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground18._x - (_parent.ground18._width / 2); turnLeft = _parent.ground18._x + (_parent.ground18._width / 2); walkSpeed = 3; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 134 MovieClip "enemy4" in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground2._x - (_parent.ground2._width / 2); turnLeft = _parent.ground2._x + (_parent.ground2._width / 2); walkSpeed = 2; faceRight = false; } onClipEvent (enterFrame) { if ((this._currentframe == 1) or (this._currentframe == 3)) { if (this._currentframe == 3) { walkSpeed = 8; } if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 134 MovieClip "enemy3" in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground8._x - (_parent.ground8._width / 2); turnLeft = _parent.ground8._x + (_parent.ground8._width / 2); walkSpeed = 2; faceRight = false; } onClipEvent (enterFrame) { if ((this._currentframe == 1) or (this._currentframe == 3)) { if (this._currentframe == 3) { walkSpeed = 8; } if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 134 MovieClip "enemy2" in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground10._x - (_parent.ground10._width / 2); turnLeft = _parent.ground10._x + (_parent.ground10._width / 2); walkSpeed = 2; faceRight = false; } onClipEvent (enterFrame) { if ((this._currentframe == 1) or (this._currentframe == 3)) { if (this._currentframe == 3) { walkSpeed = 8; } if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 134 MovieClip "enemy1" in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground10._x - (_parent.ground10._width / 2); turnLeft = _parent.ground10._x + (_parent.ground10._width / 2); walkSpeed = 2; faceRight = false; } onClipEvent (enterFrame) { if ((this._currentframe == 1) or (this._currentframe == 3)) { if (this._currentframe == 3) { walkSpeed = 8; } if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 120 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground12._x - (_parent.ground12._width / 2); turnLeft = _parent.ground12._x + (_parent.ground12._width / 2); walkSpeed = 3; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 120 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground13._x - (_parent.ground13._width / 2); turnLeft = _parent.ground13._x + (_parent.ground13._width / 2); walkSpeed = 3; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 120 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground13._x - (_parent.ground13._width / 2); turnLeft = _parent.ground13._x + (_parent.ground13._width / 2); walkSpeed = 3; faceRight = true; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 120 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground14._x - (_parent.ground14._width / 2); turnLeft = _parent.ground14._x + (_parent.ground14._width / 2); walkSpeed = 3; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 137 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = _root.levelOne.ground15._x; }
Instance of Symbol 137 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = _root.levelOne.ground16._y; }
Instance of Symbol 137 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = _root.levelOne.ground17._x; }
Instance of Symbol 139 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) { if (marioFlash > 0) { marioFlash--; _root.mario._alpha = Math.random() * 50; } if ((marioFlash == 0) && (_root.mario.hurtCounter == 0)) { _root.mario._alpha = 100; } if (this.hitTest(_root.mario)) { if (!_root.mario.superMode) { _root.mario.superMode = true; marioGrow = new Sound(); marioGrow.attachSound("grow"); marioGrow.start(); marioFlash = 26; } this.gotoAndStop(2); } }
Instance of Symbol 115 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (load) { walkSpeed = 2; faceRight = true; directionControl = 75; } onClipEvent (enterFrame) { if (this._currentframe == 1) { directionControl--; if (directionControl <= 0) { if (!faceRight) { faceRight = true; this._xscale = -this._xscale; directionControl = 75; } else if (faceRight) { faceRight = false; this._xscale = -this._xscale; directionControl = 75; } } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Symbol 164 MovieClip Frame 1
stop();
Symbol 164 MovieClip Frame 2
stop();
Symbol 164 MovieClip Frame 3
stop();
Symbol 164 MovieClip Frame 4
stop();
Symbol 164 MovieClip Frame 5
stop();
Symbol 164 MovieClip Frame 6
stop();
Symbol 164 MovieClip Frame 7
stop();
Symbol 164 MovieClip Frame 8
stop();
Symbol 164 MovieClip Frame 9
stop();
Symbol 164 MovieClip Frame 10
stop();
Symbol 164 MovieClip Frame 11
stop();
Symbol 164 MovieClip Frame 12
stop();
Symbol 164 MovieClip Frame 13
stop(); marioDeath = new Sound(); marioDeath.attachSound("death"); marioDeath.stop(); marioDeath.start();
Symbol 165 Button
on (press) { gotoAndStop (6); }
Symbol 167 Button
on (press) { gotoAndPlay (85); }
Symbol 170 Button
on (press) { qualityControl = 1; if ((_quality == "HIGH") && (qualityControl == 1)) { _quality = "LOW"; qualityControl = 2; } if ((_quality == "MEDIUM") && (qualityControl == 1)) { _quality = "HIGH"; qualityControl = 2; } if ((_quality == "LOW") && (qualityControl == 1)) { _quality = "MEDIUM"; qualityControl = 2; } } on (release) { qualityControl = 1; }
Instance of Symbol 176 MovieClip in Symbol 177 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 177 MovieClip in Symbol 179 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground2._x - (_parent.ground2._width / 2); turnLeft = _parent.ground2._x + (_parent.ground2._width / 2); walkSpeed = 1; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 177 MovieClip in Symbol 179 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground9._x - (_parent.ground9._width / 2); turnLeft = _parent.ground9._x + (_parent.ground9._width / 2); walkSpeed = 1; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 177 MovieClip in Symbol 179 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground4._x - (_parent.ground4._width / 2); turnLeft = _parent.ground4._x + (_parent.ground4._width / 2); walkSpeed = 1; faceRight = true; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 139 MovieClip in Symbol 179 MovieClip Frame 1
onClipEvent (enterFrame) { if (marioFlash > 0) { marioFlash--; _root.mario._alpha = Math.random() * 50; } if ((marioFlash == 0) && (_root.mario.hurtCounter == 0)) { _root.mario._alpha = 100; } if (this.hitTest(_root.mario)) { if (!_root.mario.superMode) { _root.mario.superMode = true; marioGrow = new Sound(); marioGrow.attachSound("grow"); marioGrow.start(); marioFlash = 26; } this.gotoAndStop(2); } }
Instance of Symbol 95 MovieClip in Symbol 181 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (Key.isDown(38))) { marioDoor = new Sound(); marioDoor.attachSound("door"); marioDoor.start(); _root.play(); } }
Instance of Symbol 177 MovieClip in Symbol 181 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground10._x - (_parent.ground10._width / 2); turnLeft = _parent.ground10._x + (_parent.ground10._width / 2); walkSpeed = 1; faceRight = true; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 177 MovieClip in Symbol 181 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground11._x - (_parent.ground11._width / 2); turnLeft = _parent.ground11._x + (_parent.ground11._width / 2); walkSpeed = 1; faceRight = true; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 177 MovieClip in Symbol 181 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground12._x - (_parent.ground12._width / 2); turnLeft = _parent.ground12._x + (_parent.ground12._width / 2); walkSpeed = 1; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 177 MovieClip in Symbol 181 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground14._x - (_parent.ground14._width / 2); turnLeft = _parent.ground14._x + (_parent.ground14._width / 2); walkSpeed = 1; faceRight = true; } onClipEvent (enterFrame) { if (this._currentframe == 1) { if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } }
Instance of Symbol 183 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.mario.hitTest(this)) { hit = "ceiling"; _root.conCirc.hitFunction(hit); _root.mario._y = _parent._y + _root.mario._height; } }
Instance of Symbol 113 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent._parent.gotoAndStop(3); } }
Instance of Symbol 192 MovieClip in Symbol 194 MovieClip Frame 21
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 113 MovieClip in Symbol 194 MovieClip Frame 41
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent._parent.gotoAndStop(3); } }
Symbol 194 MovieClip Frame 44
_parent.gotoAndStop(1);
Symbol 196 MovieClip Frame 7
stop();
Symbol 197 MovieClip Frame 1
stop();
Instance of Symbol 113 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.gotoAndStop(3); } }
Symbol 197 MovieClip Frame 2
stop();
Symbol 197 MovieClip Frame 3
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Instance of Symbol 202 MovieClip in Symbol 203 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 203 MovieClip in Symbol 204 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 95 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (Key.isDown(38))) { marioDoor = new Sound(); marioDoor.attachSound("door"); marioDoor.start(); _root.play(); } }
Instance of Symbol 197 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) { walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= (_parent.ground15._x - (_parent.ground15._width / 2))) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= (_parent.ground15._x + (_parent.ground15._width / 2))) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground16._x - (_parent.ground16._width / 2); turnLeft = _parent.ground16._x + (_parent.ground16._width / 2); walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground17._x - (_parent.ground17._width / 2); turnLeft = _parent.ground17._x + (_parent.ground17._width / 2); walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground18._x - (_parent.ground18._width / 2); turnLeft = _parent.ground18._x + (_parent.ground18._width / 2); walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground19._x - (_parent.ground19._width / 2); turnLeft = _parent.ground19._x + (_parent.ground19._width / 2); walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 210 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground7._x - (_parent.ground7._width / 2); turnLeft = _parent.ground7._x + (_parent.ground7._width / 2); walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 210 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground8._x - (_parent.ground8._width / 2); turnLeft = _parent.ground8._x + (_parent.ground8._width / 2); walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 210 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground1._x - (_parent.ground1._width / 2); turnLeft = _parent.ground1._x + (_parent.ground1._width / 2); walkSpeed = 2; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 210 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground9._x - (_parent.ground9._width / 2); turnLeft = _parent.ground9._x + (_parent.ground9._width / 2); walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 197 MovieClip in Symbol 210 MovieClip Frame 1
onClipEvent (load) { turnRight = _parent.ground9._x - (_parent.ground9._width / 2); turnLeft = _parent.ground9._x + (_parent.ground9._width / 2); walkSpeed = 2.75; attackCounter = 75; faceRight = false; } onClipEvent (enterFrame) { if (this._currentframe == 1) { attackCounter--; if (this._x <= turnRight) { faceRight = true; this._xscale = -this._xscale; } if (this._x >= turnLeft) { faceRight = false; this._xscale = -this._xscale; } if (faceRight) { this._x = this._x + walkSpeed; } if (!faceRight) { this._x = this._x - walkSpeed; } } if (attackCounter <= 0) { this.gotoAndStop(2); attackCounter = 75; } }
Instance of Symbol 139 MovieClip in Symbol 210 MovieClip Frame 1
onClipEvent (enterFrame) { if (marioFlash > 0) { marioFlash--; _root.mario._alpha = Math.random() * 50; } if ((marioFlash == 0) && (_root.mario.hurtCounter == 0)) { _root.mario._alpha = 100; } if (this.hitTest(_root.mario)) { if (!_root.mario.superMode) { _root.mario.superMode = true; marioGrow = new Sound(); marioGrow.attachSound("grow"); marioGrow.start(); marioFlash = 26; } this.gotoAndStop(2); } }
Symbol 224 MovieClip Frame 30
stop(); _root.lavaBoss.marioWin.stop(); _root.lavaBoss.marioWin.start();
Symbol 225 MovieClip Frame 1
stop();
Symbol 225 MovieClip Frame 2
stop();
Instance of Symbol 113 MovieClip "bossHurt" in Symbol 225 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 225 MovieClip Frame 3
stop();
Instance of Symbol 223 MovieClip in Symbol 225 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 225 MovieClip Frame 4
stop(); _root.marioBoss.stop();
Symbol 249 MovieClip Frame 1
explosion = new Sound(); explosion.attachSound("explosion"); explosion.start();
Symbol 249 MovieClip Frame 13
stop();
Symbol 250 MovieClip Frame 1
stop();
Instance of Symbol 242 MovieClip in Symbol 250 MovieClip Frame 1
onClipEvent (load) { damage = 0; } onClipEvent (enterFrame) { i = 1; while (i < 21) { if (this.hitTest(_root["fire" + i])) { _root["fire" + i].removeMovieClip(); _root.mario.fireCounter--; damage++; } i++; } if (damage >= 2) { _parent.gotoAndStop(2); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); _parent.gotoAndStop(2); } }
Symbol 250 MovieClip Frame 2
stop();
Instance of Symbol 249 MovieClip in Symbol 250 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x + 5; }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Symbol 255 MovieClip Frame 1
stop();
Symbol 255 MovieClip Frame 2
stop();
Symbol 255 MovieClip Frame 3
stop();
Symbol 255 MovieClip Frame 4
stop();
Instance of Symbol 249 MovieClip in Symbol 255 MovieClip Frame 4
onClipEvent (load) { deathCounter = 0; } onClipEvent (enterFrame) { deathCounter++; if (deathCounter >= 30) { _root.gotoAndPlay("beginFive"); } }
Symbol 257 Button
on (press) { gotoAndPlay (155); }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Symbol 265 MovieClip Frame 1
stop();
Instance of Symbol 264 MovieClip in Symbol 265 MovieClip Frame 1
onClipEvent (load) { damage = 0; } onClipEvent (enterFrame) { i = 1; while (i < 21) { if (this.hitTest(_root["fire" + i])) { _root["fire" + i].removeMovieClip(); _root.mario.fireCounter--; damage++; } i++; } if (damage >= 3) { _parent.gotoAndStop(2); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); _parent.gotoAndStop(2); } }
Symbol 265 MovieClip Frame 2
stop();
Instance of Symbol 249 MovieClip in Symbol 265 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x + 6; }
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 600) && (_root.levelOne._x >= 200)) { this._y = this._y - 3; } }
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 500) && (_root.levelOne._x >= 200)) { this._y = this._y - 3; } }
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 400) && (_root.levelOne._x >= 200)) { this._y = this._y - 3; } }
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 600) && (_root.levelOne._x >= 200)) { this._y = this._y + 3; } }
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 500) && (_root.levelOne._x >= 200)) { this._y = this._y + 3; } }
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 400) && (_root.levelOne._x >= 200)) { this._y = this._y + 3; } }
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 400) { this._y = this._y + 3; } }
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 400) { this._y = this._y - 3; } }
Instance of Symbol 250 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Symbol 272 MovieClip Frame 1
stop();
Instance of Symbol 271 MovieClip in Symbol 272 MovieClip Frame 1
onClipEvent (load) { damage = 0; } onClipEvent (enterFrame) { i = 1; while (i < 21) { if (this.hitTest(_root["fire" + i])) { _root["fire" + i].removeMovieClip(); _root.mario.fireCounter--; damage++; } i++; } if (damage >= 8) { _parent.gotoAndStop(2); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); _parent.gotoAndStop(2); } }
Symbol 272 MovieClip Frame 2
stop();
Instance of Symbol 249 MovieClip in Symbol 272 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 250 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 278 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 265 MovieClip in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 500) { this._y = this._y - 3; } }
Instance of Symbol 265 MovieClip in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 400) { this._y = this._y - 3; } }
Instance of Symbol 265 MovieClip in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 500) { this._y = this._y + 3; } }
Instance of Symbol 265 MovieClip in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 400) { this._y = this._y + 3; } }
Instance of Symbol 250 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 12) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 12) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -12) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -12) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = true; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 250 MovieClip in Symbol 282 MovieClip Frame 1
onClipEvent (load) { ySpeed = 0; moveDown = false; } onClipEvent (enterFrame) { this._y = this._y + ySpeed; if ((ySpeed < 18) && (!moveDown)) { ySpeed = ySpeed + 1.5; if (ySpeed == 18) { moveDown = true; ySpeed = ySpeed + 1.5; } } if ((ySpeed > -18) && (moveDown)) { ySpeed = ySpeed - 1.5; if (ySpeed == -18) { moveDown = false; } } }
Instance of Symbol 265 MovieClip in Symbol 284 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 600) && (_root.levelOne._x >= 350)) { this._y = this._y + 3; this._x = this._x + 9; } }
Instance of Symbol 265 MovieClip in Symbol 284 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 500) && (_root.levelOne._x >= 350)) { this._y = this._y + 3; this._x = this._x + 9; } }
Instance of Symbol 265 MovieClip in Symbol 284 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 400) && (_root.levelOne._x >= 350)) { this._y = this._y + 3; this._x = this._x + 9; } }
Instance of Symbol 265 MovieClip in Symbol 284 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 600) && (_root.levelOne._x >= 350)) { this._y = this._y - 3; this._x = this._x + 9; } }
Instance of Symbol 265 MovieClip in Symbol 284 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 500) && (_root.levelOne._x >= 350)) { this._y = this._y - 3; this._x = this._x + 9; } }
Instance of Symbol 265 MovieClip in Symbol 284 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 400) && (_root.levelOne._x >= 350)) { this._y = this._y - 3; this._x = this._x + 9; } }
Symbol 293 MovieClip Frame 1
stop();
Instance of Symbol 292 MovieClip in Symbol 293 MovieClip Frame 1
onClipEvent (load) { damage = 0; } onClipEvent (enterFrame) { i = 1; while (i < 21) { if (this.hitTest(_root["fire" + i])) { _root["fire" + i].removeMovieClip(); _root.mario.fireCounter--; damage++; } i++; } if (damage >= 6) { _parent.gotoAndStop(2); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); _parent.gotoAndStop(2); } }
Symbol 293 MovieClip Frame 2
stop();
Instance of Symbol 249 MovieClip in Symbol 293 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x + 5; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 3; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 2; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 0.75; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 2; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 2; this._x = this._x - 1; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 293 MovieClip in Symbol 294 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Symbol 297 MovieClip Frame 1
stop();
Instance of Symbol 296 MovieClip in Symbol 297 MovieClip Frame 1
onClipEvent (load) { damage = 0; } onClipEvent (enterFrame) { i = 1; while (i < 21) { if (this.hitTest(_root["fire" + i])) { _root["fire" + i].removeMovieClip(); _root.mario.fireCounter--; damage++; } i++; } if (damage == 2) { _parent.gotoAndStop(2); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); _parent.gotoAndStop(2); } }
Symbol 297 MovieClip Frame 2
stop();
Symbol 300 MovieClip Frame 1
stop();
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (load) { damage = 0; } onClipEvent (enterFrame) { i = 1; while (i < 21) { if (this.hitTest(_root["fire" + i])) { _root["fire" + i].removeMovieClip(); _root.mario.fireCounter--; damage++; } i++; } if (damage == 2) { _parent.gotoAndStop(2); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); _parent.gotoAndStop(2); } }
Symbol 300 MovieClip Frame 2
stop();
Symbol 303 MovieClip Frame 1
stop();
Instance of Symbol 302 MovieClip in Symbol 303 MovieClip Frame 1
onClipEvent (load) { damage = 0; } onClipEvent (enterFrame) { i = 1; while (i < 21) { if (this.hitTest(_root["fire" + i])) { _root["fire" + i].removeMovieClip(); _root.mario.fireCounter--; damage++; } i++; } if (damage == 2) { _parent.gotoAndStop(2); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); _parent.gotoAndStop(2); } }
Symbol 303 MovieClip Frame 2
stop();
Instance of Symbol 297 MovieClip in Symbol 304 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; }
Instance of Symbol 300 MovieClip in Symbol 304 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 1; }
Instance of Symbol 303 MovieClip in Symbol 304 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 1; }
Instance of Symbol 297 MovieClip in Symbol 304 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 2; }
Instance of Symbol 297 MovieClip in Symbol 304 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 3; }
Instance of Symbol 297 MovieClip in Symbol 305 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 1; }
Instance of Symbol 300 MovieClip in Symbol 305 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 1; }
Instance of Symbol 303 MovieClip in Symbol 305 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 308 MovieClip in Symbol 309 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Instance of Symbol 319 MovieClip in Symbol 320 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Instance of Symbol 322 MovieClip in Symbol 323 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Symbol 326 MovieClip Frame 1
stop();
Symbol 326 MovieClip Frame 9
stop();
Symbol 327 MovieClip Frame 32
stop(); laser = new Sound(); laser.attachSound("laser2"); laser.start();
Instance of Symbol 326 MovieClip in Symbol 327 MovieClip Frame 32
onClipEvent (load) { moveBoss = true; } onClipEvent (enterFrame) { if (this._x > -113) { this._x = this._x - 3; } if (this._width < 1000) { this._xscale = this._xscale + 7; } if (this._width > 550) { if (moveBoss) { _parent.play(); moveBoss = false; } this._y = this._y - 1.4; } if (this._width >= 1000) { this.play(); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Instance of Symbol 326 MovieClip in Symbol 327 MovieClip Frame 32
onClipEvent (load) { moveBoss = true; } onClipEvent (enterFrame) { if (this._x > -113) { this._x = this._x - 3; } if (this._width < 1000) { this._xscale = this._xscale + 7; } if (this._width > 550) { if (moveBoss) { _parent.play(); moveBoss = false; } this._y = this._y + 1.4; } if (this._width >= 1000) { this.play(); } if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Symbol 327 MovieClip Frame 69
_root.bossShip.attackOne = false; _root.bossShip.attackTwo = false; _root.bossShip.attackGenerator = 0; _root.bossShip.attackTimer = 30; _root.bossShip.attacking = false; _root.bossShip.gotoAndStop(1);
Instance of Symbol 329 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Symbol 332 MovieClip Frame 1
stop();
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 13; if (this._x < -500) { _parent.play(); } this._y = this._y - _root.bossShip.ySpeed; }
Symbol 332 MovieClip Frame 2
_root.bossShip.attackOne = false; _root.bossShip.attackTwo = false; _root.bossShip.attackGenerator = 0; _root.bossShip.attackTimer = 30; _root.bossShip.attacking = false; _root.bossShip.gotoAndStop(1);
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x - 10; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 4
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 7
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 7
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 9
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 15
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 18
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 18
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 249 MovieClip in Symbol 333 MovieClip Frame 20
onClipEvent (enterFrame) { this._x = this._x + 4; }
Symbol 333 MovieClip Frame 72
_root.gotoAndStop("Intro", "Intro"); stop();
Symbol 334 MovieClip Frame 1
stop();
Instance of Symbol 324 MovieClip in Symbol 334 MovieClip Frame 1
onClipEvent (enterFrame) { i = 1; while (i <= 21) { if (this.hitTest(_root["fire" + i])) { _root["fire" + i].removeMovieClip(); _root.mario.fireCounter--; _parent.bossLife--; } i++; } }
Symbol 334 MovieClip Frame 2
stop();
Symbol 334 MovieClip Frame 3
stop(); laser = new Sound(); laser.attachSound("laserOne"); laser.start();
Symbol 334 MovieClip Frame 4
stop();
Symbol 344 MovieClip Frame 1
stop();
Symbol 344 MovieClip Frame 2
stop();
Symbol 346 MovieClip Frame 1
stop();
Symbol 346 MovieClip Frame 2
stop();
Symbol 348 MovieClip Frame 1
stop();
Symbol 348 MovieClip Frame 2
stop();
Symbol 350 MovieClip Frame 1
stop();
Symbol 350 MovieClip Frame 2
stop();
Symbol 352 MovieClip Frame 1
stop();
Symbol 352 MovieClip Frame 2
stop();
Symbol 354 MovieClip Frame 1
stop();
Symbol 354 MovieClip Frame 2
stop();
Symbol 356 MovieClip Frame 1
stop();
Symbol 356 MovieClip Frame 2
stop();
Symbol 358 MovieClip Frame 1
stop();
Symbol 358 MovieClip Frame 2
stop();
Symbol 360 MovieClip Frame 1
stop();
Symbol 362 Button
on (press) { _root.charSelect = 5; Key.removeListener(keyListener); gotoAndStop (6); }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.75; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.75; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 365 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 364 MovieClip in Symbol 367 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Symbol 379 MovieClip Frame 235
_root.gotoAndStop("metalman");
Symbol 395 MovieClip Frame 235
_root.gotoAndStop("heatman");
Symbol 407 MovieClip Frame 235
_root.gotoAndStop("crashman");
Symbol 419 MovieClip Frame 236
_root.gotoAndStop("drillman");
Symbol 432 MovieClip Frame 235
_root.gotoAndStop("sparkman");
Symbol 446 MovieClip Frame 235
_root.gotoAndStop("pharaohman");
Symbol 456 MovieClip Frame 235
_root.gotoAndStop("dustman");
Symbol 468 MovieClip Frame 236
_root.gotoAndStop("flashman");
Symbol 474 MovieClip Frame 15
stop();
Symbol 482 MovieClip Frame 1
stop();
Symbol 482 MovieClip Frame 2
_root.metalMan.bladeCounter++;
Symbol 482 MovieClip Frame 5
_root.parentShot.duplicateMovieClip("blade" + _root.metalMan.bladeCounter, _root.metalMan.bladeCounter + 30);
Symbol 482 MovieClip Frame 11
gotoAndPlay (2);
Instance of Symbol 485 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) { _root.metalMan._alpha = Math.random() * 100; }
Instance of Symbol 485 MovieClip in Symbol 486 MovieClip Frame 9
onClipEvent (enterFrame) { _root.metalMan._alpha = 100; }
Symbol 486 MovieClip Frame 13
_root.metalMan.bossHit = false; _root.metalMan.gotoAndStop(3);
Instance of Symbol 489 MovieClip in Symbol 490 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 4; this._x = this._x + 4; }
Instance of Symbol 489 MovieClip in Symbol 490 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 4; this._x = this._x + 4; }
Instance of Symbol 489 MovieClip in Symbol 490 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 4; this._x = this._x - 4; }
Instance of Symbol 489 MovieClip in Symbol 490 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 4; this._x = this._x - 4; }
Instance of Symbol 489 MovieClip in Symbol 490 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 3; }
Instance of Symbol 489 MovieClip in Symbol 490 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 3; }
Instance of Symbol 489 MovieClip in Symbol 490 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 3; }
Instance of Symbol 489 MovieClip in Symbol 490 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 3; }
Symbol 490 MovieClip Frame 156
stop(); _root.gotoAndStop("selection");
Symbol 491 MovieClip Frame 1
stop();
Symbol 491 MovieClip Frame 2
stop();
Symbol 491 MovieClip Frame 3
stop();
Instance of Symbol 113 MovieClip in Symbol 491 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.bossHit = true; _parent.bossLife--; _root.metalLife.play(); _parent.gotoAndStop(5); } }
Symbol 491 MovieClip Frame 4
stop();
Symbol 491 MovieClip Frame 5
stop();
Symbol 491 MovieClip Frame 6
stop();
Instance of Symbol 490 MovieClip in Symbol 491 MovieClip Frame 6
onClipEvent (load) { _root.bossMusic.stop(); explosion = new Sound(); explosion.attachSound("explosion"); explosion.start(); victory = new Sound(); victory.attachSound("victory"); victory.start(); _global.metal = false; }
Symbol 507 MovieClip Frame 1
stop();
Symbol 507 MovieClip Frame 2
stop();
Symbol 507 MovieClip Frame 3
stop();
Symbol 507 MovieClip Frame 4
stop();
Symbol 507 MovieClip Frame 5
stop();
Symbol 507 MovieClip Frame 6
stop();
Symbol 507 MovieClip Frame 7
stop();
Symbol 507 MovieClip Frame 8
stop();
Symbol 507 MovieClip Frame 9
stop();
Symbol 507 MovieClip Frame 10
stop();
Symbol 507 MovieClip Frame 11
stop();
Symbol 507 MovieClip Frame 12
stop();
Symbol 507 MovieClip Frame 13
stop();
Symbol 507 MovieClip Frame 14
stop();
Symbol 507 MovieClip Frame 15
stop();
Symbol 512 MovieClip Frame 31
stop();
Symbol 516 MovieClip Frame 7
_root.parentShot.duplicateMovieClip("drillShot", 30);
Symbol 516 MovieClip Frame 11
_root.drillMan.attackOne = false; _root.drillMan.attackTimer = 50; _root.drillMan.gotoAndStop(2);
Instance of Symbol 113 MovieClip in Symbol 524 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 524 MovieClip Frame 60
_root.drillMan.marioPos = _root.mario._x;
Instance of Symbol 113 MovieClip in Symbol 524 MovieClip Frame 61
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 524 MovieClip Frame 73
_root.drillMan.attackTwo = false; _root.drillMan.attackTimer = 50; _root.drillMan.gotoAndStop(2);
Instance of Symbol 485 MovieClip in Symbol 526 MovieClip Frame 1
onClipEvent (enterFrame) { _root.drillMan._alpha = Math.random() * 100; }
Instance of Symbol 485 MovieClip in Symbol 526 MovieClip Frame 9
onClipEvent (enterFrame) { _root.drillMan._alpha = 100; }
Symbol 526 MovieClip Frame 13
_root.drillMan.attackOne = false; _root.drillMan.bossHit = false; _root.drillMan.attackTimer = 5; _root.drillMan.gotoAndStop(2);
Symbol 527 MovieClip Frame 1
stop();
Symbol 527 MovieClip Frame 2
stop();
Instance of Symbol 113 MovieClip in Symbol 527 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.bossHit = true; _parent.bossLife--; _root.drillLife.play(); _parent.gotoAndStop(5); } }
Symbol 527 MovieClip Frame 3
stop();
Symbol 527 MovieClip Frame 4
stop();
Symbol 527 MovieClip Frame 5
stop();
Symbol 527 MovieClip Frame 6
stop();
Instance of Symbol 490 MovieClip in Symbol 527 MovieClip Frame 6
onClipEvent (load) { _root.bossMusic.stop(); explosion = new Sound(); explosion.attachSound("explosion"); explosion.start(); victory = new Sound(); victory.attachSound("victory"); victory.start(); _global.drill = false; }
Symbol 544 MovieClip Frame 1
stop();
Symbol 544 MovieClip Frame 2
stop();
Symbol 544 MovieClip Frame 3
stop();
Symbol 544 MovieClip Frame 4
stop();
Symbol 544 MovieClip Frame 5
stop();
Symbol 544 MovieClip Frame 6
stop();
Symbol 544 MovieClip Frame 7
stop();
Symbol 544 MovieClip Frame 8
stop();
Symbol 544 MovieClip Frame 9
stop();
Symbol 544 MovieClip Frame 10
stop();
Symbol 544 MovieClip Frame 11
stop();
Symbol 544 MovieClip Frame 12
stop();
Symbol 544 MovieClip Frame 13
stop();
Symbol 544 MovieClip Frame 14
stop();
Symbol 544 MovieClip Frame 15
stop();
Symbol 549 MovieClip Frame 28
stop();
Symbol 557 MovieClip Frame 1
stop();
Symbol 557 MovieClip Frame 8
stop();
Instance of Symbol 485 MovieClip in Symbol 559 MovieClip Frame 1
onClipEvent (enterFrame) { _root.crashMan._alpha = Math.random() * 100; }
Instance of Symbol 485 MovieClip in Symbol 559 MovieClip Frame 9
onClipEvent (enterFrame) { _root.crashMan._alpha = 100; }
Symbol 559 MovieClip Frame 13
_root.crashMan.attackOne = false; _root.crashMan.bossHit = false; _root.crashMan.attackTimer = 5; _root.crashMan.gotoAndStop(3);
Symbol 560 MovieClip Frame 1
stop();
Symbol 560 MovieClip Frame 2
stop();
Instance of Symbol 113 MovieClip in Symbol 560 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.bossHit = true; _parent.bossLife--; _root.crashLife.play(); _parent.gotoAndStop(5); } }
Symbol 560 MovieClip Frame 3
stop();
Symbol 560 MovieClip Frame 4
stop();
Symbol 560 MovieClip Frame 5
stop();
Symbol 560 MovieClip Frame 6
stop();
Instance of Symbol 490 MovieClip in Symbol 560 MovieClip Frame 6
onClipEvent (load) { _root.bossMusic.stop(); explosion = new Sound(); explosion.attachSound("explosion"); explosion.start(); victory = new Sound(); victory.attachSound("victory"); victory.start(); _global.crash = false; }
Symbol 571 MovieClip Frame 1
stop();
Symbol 571 MovieClip Frame 2
stop();
Symbol 571 MovieClip Frame 3
stop();
Symbol 571 MovieClip Frame 4
stop();
Symbol 571 MovieClip Frame 5
stop();
Symbol 571 MovieClip Frame 6
stop();
Symbol 571 MovieClip Frame 7
stop();
Symbol 571 MovieClip Frame 8
stop();
Symbol 571 MovieClip Frame 9
stop();
Symbol 571 MovieClip Frame 10
stop();
Instance of Symbol 113 MovieClip in Symbol 575 MovieClip Frame 40
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 575 MovieClip Frame 53
stop();
Symbol 576 MovieClip Frame 1
stop();
Symbol 576 MovieClip Frame 2
stop();
Symbol 582 MovieClip Frame 25
_root.heatMan.play();
Symbol 585 MovieClip Frame 8
_root.parentShot.duplicateMovieClip("fireBlast" + _root.heatMan.fireCounter, 30 + _root.heatMan.fireCounter);
Symbol 585 MovieClip Frame 14
_root.heatMan.attackOne = false; _root.heatMan.attackTimer = 50; _root.heatMan.gotoAndStop(2);
Instance of Symbol 485 MovieClip in Symbol 586 MovieClip Frame 1
onClipEvent (enterFrame) { _root.heatMan._alpha = Math.random() * 100; }
Instance of Symbol 485 MovieClip in Symbol 586 MovieClip Frame 9
onClipEvent (enterFrame) { _root.heatMan._alpha = 100; }
Instance of Symbol 485 MovieClip in Symbol 586 MovieClip Frame 13
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 586 MovieClip Frame 55
_root.heatMan.play(); _root.heatMan.marioPos = _root.mario._x;
Symbol 590 MovieClip Frame 7
gotoAndPlay (1);
Symbol 591 MovieClip Frame 1
stop();
Symbol 591 MovieClip Frame 2
stop();
Instance of Symbol 113 MovieClip in Symbol 591 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.attackOne = true; _parent.bossLife--; _root.heatLife.play(); _parent.gotoAndStop(4); } }
Symbol 591 MovieClip Frame 3
stop();
Symbol 591 MovieClip Frame 4
stop();
Symbol 591 MovieClip Frame 5
stop();
Instance of Symbol 590 MovieClip in Symbol 591 MovieClip Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 591 MovieClip Frame 6
stop();
Instance of Symbol 490 MovieClip in Symbol 591 MovieClip Frame 6
onClipEvent (load) { _root.bossMusic.stop(); explosion = new Sound(); explosion.attachSound("explosion"); explosion.start(); victory = new Sound(); victory.attachSound("victory"); victory.start(); _global.heat = false; }
Symbol 602 MovieClip Frame 1
stop();
Symbol 602 MovieClip Frame 2
stop();
Symbol 602 MovieClip Frame 3
stop();
Symbol 602 MovieClip Frame 4
stop();
Symbol 602 MovieClip Frame 5
stop();
Symbol 602 MovieClip Frame 6
stop();
Symbol 602 MovieClip Frame 7
stop();
Symbol 602 MovieClip Frame 8
stop();
Symbol 602 MovieClip Frame 9
stop();
Symbol 602 MovieClip Frame 10
stop();
Symbol 607 MovieClip Frame 1
stop();
Symbol 607 MovieClip Frame 2
stop();
Symbol 609 MovieClip Frame 28
stop();
Symbol 615 MovieClip Frame 1
stop();
Symbol 615 MovieClip Frame 6
_root.parentShotOne.duplicateMovieClip("pharaohShot", 30);
Symbol 615 MovieClip Frame 12
stop();
Symbol 622 MovieClip Frame 22
_root.parentShotTwo.duplicateMovieClip("pharaohBlast", 30);
Symbol 622 MovieClip Frame 25
_root.pharaohMan.attackTwo = false; _root.pharaohMan.attackTimer = 90; _root.pharaohMan.jumpTimer = 30;
Instance of Symbol 485 MovieClip in Symbol 623 MovieClip Frame 1
onClipEvent (enterFrame) { _root.pharaohMan._alpha = Math.random() * 100; }
Instance of Symbol 485 MovieClip in Symbol 623 MovieClip Frame 9
onClipEvent (enterFrame) { _root.pharaohMan._alpha = 100; }
Symbol 623 MovieClip Frame 13
_root.pharaohMan.attackOne = false; _root.pharaohMan.attackTwo = false; _root.pharaohMan.bossHit = false; _root.pharaohMan.attackTimer = 5; _root.pharaohMan.gotoAndStop(2);
Symbol 624 MovieClip Frame 1
stop();
Symbol 624 MovieClip Frame 2
stop();
Instance of Symbol 113 MovieClip in Symbol 624 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.bossLife--; _root.pharaohLife.play(); _parent.bossHit = true; _parent.gotoAndStop(6); } }
Symbol 624 MovieClip Frame 3
stop();
Instance of Symbol 113 MovieClip in Symbol 624 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 624 MovieClip Frame 4
stop();
Symbol 624 MovieClip Frame 5
stop();
Symbol 624 MovieClip Frame 6
stop();
Symbol 624 MovieClip Frame 7
stop();
Instance of Symbol 490 MovieClip in Symbol 624 MovieClip Frame 7
onClipEvent (load) { _root.bossMusic.stop(); explosion = new Sound(); explosion.attachSound("explosion"); explosion.start(); victory = new Sound(); victory.attachSound("victory"); victory.start(); _global.pharaoh = false; }
Symbol 635 MovieClip Frame 1
stop();
Symbol 635 MovieClip Frame 2
stop();
Symbol 635 MovieClip Frame 3
stop();
Symbol 635 MovieClip Frame 4
stop();
Symbol 635 MovieClip Frame 5
stop();
Symbol 635 MovieClip Frame 6
stop();
Symbol 635 MovieClip Frame 7
stop();
Symbol 635 MovieClip Frame 8
stop();
Symbol 635 MovieClip Frame 9
stop();
Symbol 635 MovieClip Frame 10
stop();
Symbol 641 MovieClip Frame 28
stop();
Symbol 650 MovieClip Frame 17
_root.parentShot.duplicateMovieClip("sparkBomb", 30);
Symbol 650 MovieClip Frame 21
_root.sparkMan.attackOne = false; _root.sparkMan.attackTimer = 45; _root.sparkMan.jumpTimer = 30;
Instance of Symbol 485 MovieClip in Symbol 651 MovieClip Frame 1
onClipEvent (enterFrame) { _root.sparkMan._alpha = Math.random() * 100; }
Instance of Symbol 485 MovieClip in Symbol 651 MovieClip Frame 9
onClipEvent (enterFrame) { _root.sparkMan._alpha = 100; }
Symbol 651 MovieClip Frame 13
_root.sparkMan.attackOne = false; _root.sparkMan.bossHit = false; _root.sparkMan.attackTimer = 5; _root.sparkMan.gotoAndStop(2);
Symbol 652 MovieClip Frame 1
stop();
Symbol 652 MovieClip Frame 2
stop();
Instance of Symbol 113 MovieClip in Symbol 652 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.bossHit = true; _parent.bossLife--; _root.sparkLife.play(); _parent.gotoAndStop(5); } }
Symbol 652 MovieClip Frame 3
stop();
Symbol 652 MovieClip Frame 4
stop();
Instance of Symbol 113 MovieClip in Symbol 652 MovieClip Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 652 MovieClip Frame 5
stop();
Symbol 652 MovieClip Frame 6
stop();
Instance of Symbol 490 MovieClip in Symbol 652 MovieClip Frame 6
onClipEvent (load) { _root.bossMusic.stop(); explosion = new Sound(); explosion.attachSound("explosion"); explosion.start(); victory = new Sound(); victory.attachSound("victory"); victory.start(); _global.spark = false; }
Symbol 668 MovieClip Frame 1
stop();
Symbol 668 MovieClip Frame 2
stop();
Symbol 668 MovieClip Frame 3
stop();
Symbol 668 MovieClip Frame 4
stop();
Symbol 668 MovieClip Frame 5
stop();
Symbol 668 MovieClip Frame 6
stop();
Symbol 668 MovieClip Frame 7
stop();
Symbol 668 MovieClip Frame 8
stop();
Symbol 668 MovieClip Frame 9
stop();
Symbol 668 MovieClip Frame 10
stop();
Symbol 668 MovieClip Frame 11
stop();
Symbol 668 MovieClip Frame 12
stop();
Symbol 668 MovieClip Frame 13
stop();
Symbol 668 MovieClip Frame 14
stop();
Symbol 668 MovieClip Frame 15
stop();
Symbol 675 MovieClip Frame 28
stop();
Symbol 681 MovieClip Frame 13
_root.parentShot.duplicateMovieClip("dustBomb", 30);
Symbol 681 MovieClip Frame 17
_root.dustMan.attackOne = false; _root.dustMan.attackTimer = 90; _root.dustMan.jumpTimer = 30;
Symbol 686 MovieClip Frame 63
_root.dustMan.attackTwo = false; _root.dustMan.attackTimer = 90; _root.dustMan.jumpTimer = 30;
Instance of Symbol 485 MovieClip in Symbol 687 MovieClip Frame 1
onClipEvent (enterFrame) { _root.dustMan._alpha = Math.random() * 100; }
Instance of Symbol 485 MovieClip in Symbol 687 MovieClip Frame 9
onClipEvent (enterFrame) { _root.dustMan._alpha = 100; }
Symbol 687 MovieClip Frame 13
_root.dustMan.attackOne = false; _root.dustMan.attackTwo = false; _root.dustMan.bossHit = false; _root.dustMan.attackTimer = 5; _root.dustMan.gotoAndStop(2);
Symbol 688 MovieClip Frame 1
stop();
Symbol 688 MovieClip Frame 2
stop();
Instance of Symbol 113 MovieClip in Symbol 688 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.bossHit = true; _parent.bossLife--; _root.dustLife.play(); _parent.gotoAndStop(6); } }
Symbol 688 MovieClip Frame 3
stop();
Instance of Symbol 113 MovieClip in Symbol 688 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 688 MovieClip Frame 4
stop();
Instance of Symbol 113 MovieClip in Symbol 688 MovieClip Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.bossHit = true; _parent.bossLife--; _root.dustLife.play(); _parent.gotoAndStop(6); } }
Symbol 688 MovieClip Frame 5
stop();
Instance of Symbol 113 MovieClip in Symbol 688 MovieClip Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 688 MovieClip Frame 6
stop();
Symbol 688 MovieClip Frame 7
stop();
Instance of Symbol 490 MovieClip in Symbol 688 MovieClip Frame 7
onClipEvent (load) { _root.bossMusic.stop(); explosion = new Sound(); explosion.attachSound("explosion"); explosion.start(); victory = new Sound(); victory.attachSound("victory"); victory.start(); _global.dust = false; }
Symbol 704 MovieClip Frame 1
stop();
Symbol 704 MovieClip Frame 2
stop();
Symbol 704 MovieClip Frame 3
stop();
Symbol 704 MovieClip Frame 4
stop();
Symbol 704 MovieClip Frame 5
stop();
Symbol 704 MovieClip Frame 6
stop();
Symbol 704 MovieClip Frame 7
stop();
Symbol 704 MovieClip Frame 8
stop();
Symbol 704 MovieClip Frame 9
stop();
Symbol 704 MovieClip Frame 10
stop();
Symbol 704 MovieClip Frame 11
stop();
Symbol 704 MovieClip Frame 12
stop();
Symbol 704 MovieClip Frame 13
stop();
Symbol 704 MovieClip Frame 14
stop();
Symbol 704 MovieClip Frame 15
stop();
Symbol 715 MovieClip Frame 1
stop();
Instance of Symbol 706 MovieClip in Symbol 715 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 715 MovieClip Frame 2
stop();
Instance of Symbol 708 MovieClip in Symbol 715 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } this._x = this._x - 7; this._y = this._y - 7; }
Instance of Symbol 710 MovieClip in Symbol 715 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } this._x = this._x + 7; this._y = this._y - 7; }
Instance of Symbol 712 MovieClip in Symbol 715 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } this._x = this._x + 7; this._y = this._y + 7; }
Instance of Symbol 714 MovieClip in Symbol 715 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } this._x = this._x - 7; this._y = this._y + 7; }
Symbol 718 MovieClip Frame 28
stop();
Symbol 728 MovieClip Frame 11
_root.mario.flashFreeze = true;
Symbol 728 MovieClip Frame 15
_root.parentShot.duplicateMovieClip("flashShot", 30);
Symbol 728 MovieClip Frame 70
_root.flashMan.attackTwo = false; _root.flashMan.attackTimer = 50; _root.mario.flashFreeze = false;
Instance of Symbol 485 MovieClip in Symbol 729 MovieClip Frame 1
onClipEvent (enterFrame) { _root.flashMan._alpha = Math.random() * 100; }
Instance of Symbol 485 MovieClip in Symbol 729 MovieClip Frame 9
onClipEvent (enterFrame) { _root.flashMan._alpha = 100; }
Symbol 729 MovieClip Frame 13
_root.flashMan.attackOne = false; _root.flashMan.attackTwo = false; _root.flashMan.bossHit = false; _root.flashMan.attackTimer = 5; _root.flashMan.gotoAndStop(2);
Symbol 730 MovieClip Frame 1
stop();
Symbol 730 MovieClip Frame 2
stop();
Instance of Symbol 113 MovieClip in Symbol 730 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.mario.hitBlock)) { _root.mario.vel_y = 15; _root.mario._y = _root.mario._y - 5; _parent.bossHit = true; _parent.bossLife--; _root.flashLife.play(); _parent.gotoAndStop(6); } }
Symbol 730 MovieClip Frame 3
stop();
Symbol 730 MovieClip Frame 4
stop();
Instance of Symbol 113 MovieClip in Symbol 730 MovieClip Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 730 MovieClip Frame 5
stop();
Symbol 730 MovieClip Frame 6
stop();
Symbol 730 MovieClip Frame 7
stop();
Instance of Symbol 490 MovieClip in Symbol 730 MovieClip Frame 7
onClipEvent (load) { _root.bossMusic.stop(); explosion = new Sound(); explosion.attachSound("explosion"); explosion.start(); victory = new Sound(); victory.attachSound("victory"); victory.start(); _global.flash = false; }
Symbol 746 MovieClip Frame 1
stop();
Symbol 746 MovieClip Frame 2
stop();
Symbol 746 MovieClip Frame 3
stop();
Symbol 746 MovieClip Frame 4
stop();
Symbol 746 MovieClip Frame 5
stop();
Symbol 746 MovieClip Frame 6
stop();
Symbol 746 MovieClip Frame 7
stop();
Symbol 746 MovieClip Frame 8
stop();
Symbol 746 MovieClip Frame 9
stop();
Symbol 746 MovieClip Frame 10
stop();
Symbol 746 MovieClip Frame 11
stop();
Symbol 746 MovieClip Frame 12
stop();
Symbol 746 MovieClip Frame 13
stop();
Symbol 746 MovieClip Frame 14
stop();
Symbol 746 MovieClip Frame 15
stop();
Instance of Symbol 748 MovieClip in Symbol 749 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 15; this._y = this._y - 4; if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 748 MovieClip in Symbol 749 MovieClip Frame 5
onClipEvent (enterFrame) { this._x = this._x - 15; this._y = this._y - 2; if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 748 MovieClip in Symbol 749 MovieClip Frame 9
onClipEvent (enterFrame) { this._x = this._x - 15; if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 748 MovieClip in Symbol 749 MovieClip Frame 13
onClipEvent (enterFrame) { this._x = this._x - 15; this._y = this._y + 1.5; if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Instance of Symbol 748 MovieClip in Symbol 749 MovieClip Frame 17
onClipEvent (enterFrame) { this._x = this._x - 15; this._y = this._y + 3; if (this.hitTest(_root.mario) && (_root.mario.hurtCounter == 0)) { if (_root.mario.superMode) { _root.mario.hurtCounter = 26; _root.mario.superMode = false; } if (((!_root.mario.superMode) && (_root.mario.hurtCounter == 0)) && (!_root.mario.marioDeath)) { _root.mario.marioDeath = true; _root.mario.vel_y = 15; } } }
Symbol 749 MovieClip Frame 51
stop();

Library Items

Symbol 1 Sound [victory]
Symbol 2 Sound [underground]
Symbol 3 Sound [spit]
Symbol 4 Sound [stomp2]
Symbol 5 Sound [stomp]
Symbol 6 Sound [sprout]
Symbol 7 Sound [grow]
Symbol 8 Sound [down]
Symbol 9 Sound [jump]
Symbol 10 Sound [door]
Symbol 11 Sound [fire]
Symbol 12 Sound [rbMusic]
Symbol 13 Sound [mMan]
Symbol 14 Sound [metroid]
Symbol 15 Sound [marioMusic]
Symbol 16 Sound [hammer]
Symbol 17 Sound [gradius]
Symbol 18 Sound [gradiusBoss]
Symbol 19 Sound [gradius2]
Symbol 20 Sound [forest]
Symbol 21 Sound [flag]
Symbol 22 Sound [explosion]
Symbol 23 Sound [death]
Symbol 24 Sound [cutman]
Symbol 25 Sound [castle]
Symbol 26 Sound [bIntro]
Symbol 27 Sound [laser2]
Symbol 28 Sound [laserOne]
Symbol 29 Sound [stageIntro]
Symbol 30 Sound [selectMusic]
Symbol 31 GraphicUsed by:65 67 192 223 367 706  Timeline
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:32Used by:40
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:40
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClipUses:36Used by:40
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:40
Symbol 40 MovieClipUses:33 35 37 39Used by:Timeline
Symbol 41 GraphicUsed by:57
Symbol 42 GraphicUsed by:45
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:43Used by:45
Symbol 45 MovieClipUses:42 44Used by:57
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:57
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:57
Symbol 50 FontUsed by:51 52
Symbol 51 EditableTextUses:50Used by:57
Symbol 52 EditableTextUses:50Used by:57
Symbol 53 GraphicUsed by:56
Symbol 54 FontUsed by:55
Symbol 55 EditableTextUses:54Used by:56
Symbol 56 ButtonUses:53 55Used by:57
Symbol 57 MovieClipUses:41 45 47 49 51 52 56Used by:Timeline
Symbol 58 GraphicUsed by:Timeline
Symbol 59 GraphicUsed by:60 61
Symbol 60 ButtonUses:59Used by:Timeline
Symbol 61 ButtonUses:59Used by:Timeline
Symbol 62 GraphicUsed by:Timeline
Symbol 63 FontUsed by:64 66 69 70 72 74 78 79 80 88 166 169
Symbol 64 TextUses:63Used by:65
Symbol 65 ButtonUses:31 64Used by:Timeline
Symbol 66 TextUses:63Used by:67
Symbol 67 ButtonUses:31 66Used by:Timeline
Symbol 68 GraphicUsed by:Timeline
Symbol 69 TextUses:63Used by:Timeline
Symbol 70 TextUses:63Used by:Timeline
Symbol 71 GraphicUsed by:Timeline
Symbol 72 TextUses:63Used by:Timeline
Symbol 73 GraphicUsed by:75 165 167 257 362
Symbol 74 TextUses:63Used by:75 165 362
Symbol 75 ButtonUses:73 74Used by:Timeline
Symbol 76 GraphicUsed by:Timeline
Symbol 77 GraphicUsed by:Timeline
Symbol 78 TextUses:63Used by:Timeline
Symbol 79 TextUses:63Used by:Timeline
Symbol 80 TextUses:63Used by:Timeline
Symbol 81 GraphicUsed by:Timeline
Symbol 82 GraphicUsed by:83
Symbol 83 ButtonUses:82Used by:Timeline
Symbol 84 GraphicUsed by:85
Symbol 85 ButtonUses:84Used by:Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 ButtonUses:86Used by:Timeline
Symbol 88 TextUses:63Used by:Timeline
Symbol 89 GraphicUsed by:Timeline
Symbol 90 GraphicUsed by:Timeline
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:91Used by:Timeline
Symbol 93 GraphicUsed by:141 179 181
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:141 179 181 205 210
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:98
Symbol 98 MovieClipUses:97Used by:141 179 181 205 210  Timeline
Symbol 99 GraphicUsed by:103
Symbol 100 GraphicUsed by:103
Symbol 101 GraphicUsed by:103
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:99 100 101 102Used by:104
Symbol 104 MovieClipUses:103Used by:141
Symbol 105 GraphicUsed by:106
Symbol 106 MovieClipUses:105Used by:107 108
Symbol 107 MovieClipUses:106Used by:141 204 205 210  Timeline
Symbol 108 MovieClipUses:106Used by:141 204 205 210  Timeline
Symbol 109 GraphicUsed by:111 114
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:109 110Used by:115
Symbol 112 GraphicUsed by:113 143
Symbol 113 MovieClipUses:112Used by:115 120 133 134 164 194 197 225 491 524 527 560 575 591 624 652 688 730
Symbol 114 MovieClipUses:109Used by:115
Symbol 115 MovieClipUses:111 113 114Used by:141
Symbol 116 GraphicUsed by:118 119
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:116 117Used by:120
Symbol 119 MovieClipUses:116Used by:120
Symbol 120 MovieClipUses:118 113 119Used by:141
Symbol 121 GraphicUsed by:123
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:121 122Used by:134
Symbol 124 GraphicUsed by:125 128
Symbol 125 MovieClipUses:124Used by:134
Symbol 126 GraphicUsed by:128
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:124 126 127Used by:134
Symbol 129 GraphicUsed by:133
Symbol 130 GraphicUsed by:133
Symbol 131 GraphicUsed by:133
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:129 130 131 132 113Used by:134
Symbol 134 MovieClipUses:123 113 125 128 133Used by:141  Timeline
Symbol 135 GraphicUsed by:141
Symbol 136 GraphicUsed by:137
Symbol 137 MovieClipUses:136Used by:141
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:141 179 210  Timeline
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:93 95 98 104 107 108 115 120 134 135 137 139 140Used by:Timeline
Symbol 142 GraphicUsed by:146 164
Symbol 143 MovieClipUses:112Used by:164
Symbol 144 GraphicUsed by:146
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:144 145 142Used by:164
Symbol 147 GraphicUsed by:150
Symbol 148 GraphicUsed by:150
Symbol 149 GraphicUsed by:150
Symbol 150 MovieClipUses:147 148 149Used by:164
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151Used by:164
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:164
Symbol 155 GraphicUsed by:164
Symbol 156 GraphicUsed by:164
Symbol 157 GraphicUsed by:159 164
Symbol 158 GraphicUsed by:159
Symbol 159 MovieClipUses:158 157Used by:164
Symbol 160 GraphicUsed by:164
Symbol 161 GraphicUsed by:164
Symbol 162 GraphicUsed by:164
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClipUses:142 143 113 146 150 152 154 155 156 157 159 160 161 162 163Used by:Timeline
Symbol 165 ButtonUses:73 74Used by:Timeline
Symbol 166 TextUses:63Used by:167 257
Symbol 167 ButtonUses:73 166Used by:Timeline
Symbol 168 GraphicUsed by:170
Symbol 169 TextUses:63Used by:170
Symbol 170 ButtonUses:168 169Used by:Timeline
Symbol 171 GraphicUsed by:Timeline
Symbol 172 GraphicUsed by:Timeline
Symbol 173 GraphicUsed by:179
Symbol 174 GraphicUsed by:176
Symbol 175 GraphicUsed by:176
Symbol 176 MovieClipUses:174 175Used by:177
Symbol 177 MovieClipUses:176Used by:179 181
Symbol 178 GraphicUsed by:179
Symbol 179 MovieClipUses:93 95 173 177 178 98 139Used by:Timeline
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:93 95 180 177 98Used by:Timeline
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:182Used by:184
Symbol 184 MovieClipUses:183Used by:Timeline
Symbol 185 GraphicUsed by:Timeline
Symbol 186 GraphicUsed by:205
Symbol 187 GraphicUsed by:189
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClipUses:187 188Used by:197
Symbol 190 GraphicUsed by:194
Symbol 191 GraphicUsed by:194
Symbol 192 MovieClipUses:31Used by:194
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:190 113 191 192 193Used by:197
Symbol 195 GraphicUsed by:196
Symbol 196 MovieClipUses:195Used by:197
Symbol 197 MovieClipUses:189 113 194 196Used by:205 210
Symbol 198 GraphicUsed by:205
Symbol 199 GraphicUsed by:205
Symbol 200 GraphicUsed by:204
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:201Used by:203
Symbol 203 MovieClipUses:202Used by:204
Symbol 204 MovieClipUses:200 203 108 107Used by:205 210
Symbol 205 MovieClipUses:95 186 197 198 199 204 98 108 107Used by:Timeline
Symbol 206 GraphicUsed by:210
Symbol 207 GraphicUsed by:210
Symbol 208 GraphicUsed by:210
Symbol 209 GraphicUsed by:210
Symbol 210 MovieClipUses:95 206 98 207 204 197 108 107 208 209 139Used by:Timeline
Symbol 211 BitmapUsed by:212
Symbol 212 GraphicUses:211Used by:Timeline
Symbol 213 GraphicUsed by:Timeline
Symbol 214 GraphicUsed by:Timeline
Symbol 215 GraphicUsed by:Timeline
Symbol 216 GraphicUsed by:225
Symbol 217 GraphicUsed by:219 224
Symbol 218 GraphicUsed by:219 224
Symbol 219 MovieClipUses:217 218Used by:225
Symbol 220 GraphicUsed by:222
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:220 221Used by:225
Symbol 223 MovieClipUses:31Used by:225
Symbol 224 MovieClipUses:217 218Used by:225
Symbol 225 MovieClipUses:216 219 113 222 223 224Used by:Timeline
Symbol 226 GraphicUsed by:229
Symbol 227 GraphicUsed by:229
Symbol 228 GraphicUsed by:229
Symbol 229 MovieClipUses:226 227 228Used by:230
Symbol 230 MovieClipUses:229Used by:Timeline
Symbol 231 GraphicUsed by:Timeline
Symbol 232 GraphicUsed by:233 256
Symbol 233 MovieClipUses:232Used by:Timeline
Symbol 234 GraphicUsed by:Timeline
Symbol 235 GraphicUsed by:236
Symbol 236 MovieClipUses:235Used by:Timeline
Symbol 237 GraphicUsed by:251
Symbol 238 GraphicUsed by:242
Symbol 239 GraphicUsed by:242
Symbol 240 GraphicUsed by:242
Symbol 241 GraphicUsed by:242
Symbol 242 MovieClipUses:238 239 240 241Used by:250
Symbol 243 GraphicUsed by:249
Symbol 244 GraphicUsed by:249
Symbol 245 GraphicUsed by:249
Symbol 246 GraphicUsed by:249
Symbol 247 GraphicUsed by:249
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:243 244 245 246 247 248Used by:250 255 265 272 293 297 300 303 333 575
Symbol 250 MovieClipUses:242 249Used by:251 259 266 276 278 282
Symbol 251 MovieClipUses:237 250Used by:Timeline
Symbol 252 GraphicUsed by:255
Symbol 253 GraphicUsed by:255
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:252 253 254 249Used by:Timeline
Symbol 256 MovieClipUses:232Used by:Timeline
Symbol 257 ButtonUses:73 166Used by:Timeline
Symbol 258 GraphicUsed by:259 266 273 274 275 276 304 305 308 324
Symbol 259 MovieClipUses:258 250Used by:Timeline
Symbol 260 GraphicUsed by:264
Symbol 261 GraphicUsed by:264
Symbol 262 GraphicUsed by:264
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClipUses:260 261 262 263Used by:265
Symbol 265 MovieClipUses:264 249Used by:266 280 284
Symbol 266 MovieClipUses:258 265 250Used by:Timeline
Symbol 267 GraphicUsed by:271
Symbol 268 GraphicUsed by:271
Symbol 269 GraphicUsed by:271
Symbol 270 GraphicUsed by:271
Symbol 271 MovieClipUses:267 268 269 270Used by:272
Symbol 272 MovieClipUses:271 249Used by:273 274 275 280 284
Symbol 273 MovieClipUses:258 272Used by:Timeline
Symbol 274 MovieClipUses:258 272Used by:Timeline
Symbol 275 MovieClipUses:258 272Used by:Timeline
Symbol 276 MovieClipUses:258 250Used by:Timeline
Symbol 277 GraphicUsed by:278
Symbol 278 MovieClipUses:277 250Used by:Timeline
Symbol 279 GraphicUsed by:280
Symbol 280 MovieClipUses:279 265 272Used by:Timeline
Symbol 281 GraphicUsed by:282
Symbol 282 MovieClipUses:281 250Used by:Timeline
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283 265 272Used by:Timeline
Symbol 285 GraphicUsed by:294
Symbol 286 GraphicUsed by:292
Symbol 287 GraphicUsed by:292
Symbol 288 GraphicUsed by:292
Symbol 289 GraphicUsed by:292
Symbol 290 GraphicUsed by:292
Symbol 291 GraphicUsed by:292
Symbol 292 MovieClipUses:286 287 288 289 290 291Used by:293
Symbol 293 MovieClipUses:292 249Used by:294
Symbol 294 MovieClipUses:285 293Used by:Timeline
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:295Used by:297
Symbol 297 MovieClipUses:296 249Used by:304 305
Symbol 298 GraphicUsed by:299
Symbol 299 MovieClipUses:298Used by:300
Symbol 300 MovieClipUses:299 249Used by:304 305
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:303
Symbol 303 MovieClipUses:302 249Used by:304 305
Symbol 304 MovieClipUses:258 297 300 303Used by:Timeline
Symbol 305 MovieClipUses:258 297 300 303Used by:Timeline
Symbol 306 GraphicUsed by:Timeline
Symbol 307 GraphicUsed by:310
Symbol 308 MovieClipUses:258Used by:309
Symbol 309 MovieClipUses:308Used by:310 312 314 316
Symbol 310 MovieClipUses:307 309Used by:Timeline
Symbol 311 GraphicUsed by:312
Symbol 312 MovieClipUses:311 309Used by:Timeline
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClipUses:313 309Used by:Timeline
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315 309Used by:317
Symbol 317 MovieClipUses:316Used by:Timeline
Symbol 318 GraphicUsed by:319
Symbol 319 MovieClipUses:318Used by:320
Symbol 320 MovieClipUses:319Used by:327 332 333 334
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:323
Symbol 323 MovieClipUses:322Used by:327 332 333 334
Symbol 324 MovieClipUses:258Used by:334
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:325Used by:327
Symbol 327 MovieClipUses:320 323 326Used by:334
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:330
Symbol 330 MovieClipUses:329Used by:331
Symbol 331 MovieClipUses:330Used by:332
Symbol 332 MovieClipUses:331 320 323Used by:334
Symbol 333 MovieClipUses:320 323 249Used by:334
Symbol 334 MovieClipUses:320 323 324 327 332 333Used by:Timeline
Symbol 335 GraphicUsed by:Timeline
Symbol 336 GraphicUsed by:Timeline
Symbol 337 GraphicUsed by:Timeline
Symbol 338 GraphicUsed by:344
Symbol 339 GraphicUsed by:344 346 348 350 352 354 356 358 360
Symbol 340 GraphicUsed by:344 346 348 350 352 354 356 358 360
Symbol 341 GraphicUsed by:343
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:341 342Used by:344 346 348 350 352 354 356 358 360
Symbol 344 MovieClipUses:338 339 340 343Used by:Timeline
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:345 339 340 343Used by:Timeline
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:347 339 340 343Used by:Timeline
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349 339 340 343Used by:Timeline
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351 339 340 343Used by:Timeline
Symbol 353 GraphicUsed by:354
Symbol 354 MovieClipUses:353 339 340 343Used by:Timeline
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClipUses:355 339 340 343Used by:Timeline
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClipUses:357 339 340 343Used by:Timeline
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClipUses:359 339 340 343Used by:Timeline
Symbol 361 GraphicUsed by:Timeline
Symbol 362 ButtonUses:73 74Used by:Timeline
Symbol 363 GraphicUsed by:364 365
Symbol 364 MovieClipUses:363Used by:367
Symbol 365 MovieClipUses:363Used by:367
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:31 364 365 366Used by:380  Timeline
Symbol 368 GraphicUsed by:379 474 486 491
Symbol 369 GraphicUsed by:379 474
Symbol 370 GraphicUsed by:379
Symbol 371 GraphicUsed by:379
Symbol 372 GraphicUsed by:379
Symbol 373 GraphicUsed by:379
Symbol 374 GraphicUsed by:379
Symbol 375 GraphicUsed by:379
Symbol 376 GraphicUsed by:379
Symbol 377 GraphicUsed by:379
Symbol 378 GraphicUsed by:379
Symbol 379 MovieClipUses:368 369 370 371 372 373 374 375 376 377 378Used by:380
Symbol 380 MovieClipUses:367 379Used by:Timeline
Symbol 381 GraphicUsed by:395 582 586
Symbol 382 GraphicUsed by:395 582 586
Symbol 383 GraphicUsed by:395 586
Symbol 384 GraphicUsed by:395 586
Symbol 385 GraphicUsed by:395
Symbol 386 GraphicUsed by:395
Symbol 387 GraphicUsed by:395
Symbol 388 GraphicUsed by:395
Symbol 389 GraphicUsed by:395
Symbol 390 GraphicUsed by:395
Symbol 391 GraphicUsed by:395
Symbol 392 GraphicUsed by:395
Symbol 393 GraphicUsed by:395
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClipUses:381 382 383 384 385 386 387 388 389 390 391 392 393 394Used by:Timeline
Symbol 396 GraphicUsed by:407 549 559 560
Symbol 397 GraphicUsed by:407 549
Symbol 398 GraphicUsed by:407 549
Symbol 399 GraphicUsed by:407
Symbol 400 GraphicUsed by:407
Symbol 401 GraphicUsed by:407
Symbol 402 GraphicUsed by:407
Symbol 403 GraphicUsed by:407
Symbol 404 GraphicUsed by:407
Symbol 405 GraphicUsed by:407
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClipUses:396 397 398 399 400 401 402 403 404 405 406Used by:Timeline
Symbol 408 GraphicUsed by:419 512 516 526
Symbol 409 GraphicUsed by:419 512 516
Symbol 410 GraphicUsed by:419 512
Symbol 411 GraphicUsed by:419 456
Symbol 412 GraphicUsed by:419
Symbol 413 GraphicUsed by:419
Symbol 414 GraphicUsed by:419
Symbol 415 GraphicUsed by:419
Symbol 416 GraphicUsed by:419
Symbol 417 GraphicUsed by:419
Symbol 418 GraphicUsed by:419
Symbol 419 MovieClipUses:408 409 410 411 412 413 414 415 416 417 418Used by:Timeline
Symbol 420 GraphicUsed by:432 641
Symbol 421 GraphicUsed by:432 641
Symbol 422 GraphicUsed by:432 641 650
Symbol 423 GraphicUsed by:432 641 643
Symbol 424 GraphicUsed by:432
Symbol 425 GraphicUsed by:432
Symbol 426 GraphicUsed by:432
Symbol 427 GraphicUsed by:432
Symbol 428 GraphicUsed by:432
Symbol 429 GraphicUsed by:432
Symbol 430 GraphicUsed by:432
Symbol 431 GraphicUsed by:432
Symbol 432 MovieClipUses:420 421 422 423 424 425 426 427 428 429 430 431Used by:Timeline
Symbol 433 GraphicUsed by:446 609 624
Symbol 434 GraphicUsed by:446 609 622 623
Symbol 435 GraphicUsed by:446 609
Symbol 436 GraphicUsed by:446
Symbol 437 GraphicUsed by:446
Symbol 438 GraphicUsed by:446
Symbol 439 GraphicUsed by:446
Symbol 440 GraphicUsed by:446
Symbol 441 GraphicUsed by:446
Symbol 442 GraphicUsed by:446
Symbol 443 GraphicUsed by:446
Symbol 444 GraphicUsed by:446
Symbol 445 GraphicUsed by:446
Symbol 446 MovieClipUses:433 434 435 436 437 438 439 440 441 442 443 444 445Used by:Timeline
Symbol 447 GraphicUsed by:456 675 686 688
Symbol 448 GraphicUsed by:456 675 687
Symbol 449 GraphicUsed by:456 675 686
Symbol 450 GraphicUsed by:456
Symbol 451 GraphicUsed by:456
Symbol 452 GraphicUsed by:456
Symbol 453 GraphicUsed by:456
Symbol 454 GraphicUsed by:456
Symbol 455 GraphicUsed by:456
Symbol 456 MovieClipUses:447 448 449 411 450 451 452 453 454 455Used by:Timeline
Symbol 457 GraphicUsed by:468 718 730
Symbol 458 GraphicUsed by:468 718
Symbol 459 GraphicUsed by:468
Symbol 460 GraphicUsed by:468
Symbol 461 GraphicUsed by:468
Symbol 462 GraphicUsed by:468
Symbol 463 GraphicUsed by:468
Symbol 464 GraphicUsed by:468
Symbol 465 GraphicUsed by:468
Symbol 466 GraphicUsed by:468
Symbol 467 GraphicUsed by:468
Symbol 468 MovieClipUses:457 458 459 460 461 462 463 464 465 466 467Used by:Timeline
Symbol 469 GraphicUsed by:471
Symbol 470 GraphicUsed by:471
Symbol 471 MovieClipUses:469 470Used by:Timeline
Symbol 472 GraphicUsed by:Timeline
Symbol 473 GraphicUsed by:474
Symbol 474 MovieClipUses:368 369 473Used by:491
Symbol 475 GraphicUsed by:478
Symbol 476 GraphicUsed by:478
Symbol 477 GraphicUsed by:478
Symbol 478 MovieClipUses:475 476 477Used by:491
Symbol 479 GraphicUsed by:482
Symbol 480 GraphicUsed by:482
Symbol 481 GraphicUsed by:482
Symbol 482 MovieClipUses:479 480 481Used by:491
Symbol 483 GraphicUsed by:486
Symbol 484 GraphicUsed by:485
Symbol 485 MovieClipUses:484Used by:486 526 559 586 623 651 687 729
Symbol 486 MovieClipUses:483 485 368Used by:491
Symbol 487 GraphicUsed by:489
Symbol 488 GraphicUsed by:489
Symbol 489 MovieClipUses:487 488Used by:490
Symbol 490 MovieClipUses:489Used by:491 527 560 591 624 652 688 730
Symbol 491 MovieClipUses:474 368 478 113 482 486 490Used by:Timeline
Symbol 492 GraphicUsed by:507
Symbol 493 GraphicUsed by:507
Symbol 494 GraphicUsed by:507
Symbol 495 GraphicUsed by:507
Symbol 496 GraphicUsed by:507
Symbol 497 GraphicUsed by:507
Symbol 498 GraphicUsed by:507
Symbol 499 GraphicUsed by:507
Symbol 500 GraphicUsed by:507
Symbol 501 GraphicUsed by:507
Symbol 502 GraphicUsed by:507
Symbol 503 GraphicUsed by:507
Symbol 504 GraphicUsed by:507
Symbol 505 GraphicUsed by:507
Symbol 506 GraphicUsed by:507
Symbol 507 MovieClipUses:492 493 494 495 496 497 498 499 500 501 502 503 504 505 506Used by:Timeline
Symbol 508 GraphicUsed by:510
Symbol 509 GraphicUsed by:510
Symbol 510 MovieClipUses:508 509Used by:Timeline
Symbol 511 GraphicUsed by:Timeline
Symbol 512 MovieClipUses:408 409 410Used by:527
Symbol 513 GraphicUsed by:515
Symbol 514 GraphicUsed by:515
Symbol 515 MovieClipUses:513 514Used by:527
Symbol 516 MovieClipUses:408 409Used by:527
Symbol 517 GraphicUsed by:524
Symbol 518 GraphicUsed by:524
Symbol 519 GraphicUsed by:524
Symbol 520 GraphicUsed by:524
Symbol 521 GraphicUsed by:524
Symbol 522 GraphicUsed by:524
Symbol 523 GraphicUsed by:524
Symbol 524 MovieClipUses:517 113 518 519 520 521 522 523Used by:527
Symbol 525 GraphicUsed by:526
Symbol 526 MovieClipUses:525 485 408Used by:527
Symbol 527 MovieClipUses:512 515 113 516 524 526 490Used by:Timeline
Symbol 528 GraphicUsed by:Timeline
Symbol 529 GraphicUsed by:544
Symbol 530 GraphicUsed by:544
Symbol 531 GraphicUsed by:544
Symbol 532 GraphicUsed by:544
Symbol 533 GraphicUsed by:544
Symbol 534 GraphicUsed by:544
Symbol 535 GraphicUsed by:544
Symbol 536 GraphicUsed by:544
Symbol 537 GraphicUsed by:544
Symbol 538 GraphicUsed by:544
Symbol 539 GraphicUsed by:544
Symbol 540 GraphicUsed by:544
Symbol 541 GraphicUsed by:544
Symbol 542 GraphicUsed by:544
Symbol 543 GraphicUsed by:544
Symbol 544 MovieClipUses:529 530 531 532 533 534 535 536 537 538 539 540 541 542 543Used by:Timeline
Symbol 545 GraphicUsed by:547
Symbol 546 GraphicUsed by:547
Symbol 547 MovieClipUses:545 546Used by:Timeline
Symbol 548 GraphicUsed by:Timeline
Symbol 549 MovieClipUses:396 397 398Used by:560
Symbol 550 GraphicUsed by:553
Symbol 551 GraphicUsed by:553
Symbol 552 GraphicUsed by:553
Symbol 553 MovieClipUses:550 551 552Used by:560
Symbol 554 GraphicUsed by:557
Symbol 555 GraphicUsed by:557
Symbol 556 GraphicUsed by:557
Symbol 557 MovieClipUses:554 555 556Used by:560
Symbol 558 GraphicUsed by:559
Symbol 559 MovieClipUses:558 485 396Used by:560
Symbol 560 MovieClipUses:549 396 113 553 557 559 490Used by:Timeline
Symbol 561 GraphicUsed by:571
Symbol 562 GraphicUsed by:571
Symbol 563 GraphicUsed by:571
Symbol 564 GraphicUsed by:571
Symbol 565 GraphicUsed by:571
Symbol 566 GraphicUsed by:571
Symbol 567 GraphicUsed by:571
Symbol 568 GraphicUsed by:571
Symbol 569 GraphicUsed by:571
Symbol 570 GraphicUsed by:571
Symbol 571 MovieClipUses:561 562 563 564 565 566 567 568 569 570Used by:Timeline
Symbol 572 GraphicUsed by:576
Symbol 573 GraphicUsed by:575
Symbol 574 GraphicUsed by:575
Symbol 575 MovieClipUses:573 574 249 113Used by:576
Symbol 576 MovieClipUses:572 575Used by:Timeline
Symbol 577 GraphicUsed by:579
Symbol 578 GraphicUsed by:579
Symbol 579 MovieClipUses:577 578Used by:Timeline
Symbol 580 GraphicUsed by:Timeline
Symbol 581 GraphicUsed by:582 585 591
Symbol 582 MovieClipUses:381 382 581Used by:591
Symbol 583 GraphicUsed by:585
Symbol 584 GraphicUsed by:585
Symbol 585 MovieClipUses:581 583 584Used by:591
Symbol 586 MovieClipUses:381 485 382 383 384Used by:591
Symbol 587 GraphicUsed by:590
Symbol 588 GraphicUsed by:590
Symbol 589 GraphicUsed by:590
Symbol 590 MovieClipUses:587 588 589Used by:591
Symbol 591 MovieClipUses:582 581 113 585 586 590 490Used by:Timeline
Symbol 592 GraphicUsed by:602
Symbol 593 GraphicUsed by:602
Symbol 594 GraphicUsed by:602
Symbol 595 GraphicUsed by:602
Symbol 596 GraphicUsed by:602
Symbol 597 GraphicUsed by:602
Symbol 598 GraphicUsed by:602
Symbol 599 GraphicUsed by:602
Symbol 600 GraphicUsed by:602
Symbol 601 GraphicUsed by:602
Symbol 602 MovieClipUses:592 593 594 595 596 597 598 599 600 601Used by:Timeline
Symbol 603 GraphicUsed by:606 607
Symbol 604 GraphicUsed by:606
Symbol 605 GraphicUsed by:606
Symbol 606 MovieClipUses:603 604 605Used by:607
Symbol 607 MovieClipUses:603 606Used by:Timeline
Symbol 608 GraphicUsed by:Timeline
Symbol 609 MovieClipUses:433 434 435Used by:624
Symbol 610 GraphicUsed by:611 615
Symbol 611 MovieClipUses:610Used by:624
Symbol 612 GraphicUsed by:615
Symbol 613 GraphicUsed by:615
Symbol 614 GraphicUsed by:615
Symbol 615 MovieClipUses:610 612 613 614Used by:624
Symbol 616 GraphicUsed by:622
Symbol 617 GraphicUsed by:622
Symbol 618 GraphicUsed by:622
Symbol 619 GraphicUsed by:622
Symbol 620 GraphicUsed by:622
Symbol 621 GraphicUsed by:622
Symbol 622 MovieClipUses:616 617 618 619 620 621 434Used by:624
Symbol 623 MovieClipUses:434 485Used by:624
Symbol 624 MovieClipUses:609 433 113 611 615 622 623 490Used by:Timeline
Symbol 625 GraphicUsed by:635
Symbol 626 GraphicUsed by:635
Symbol 627 GraphicUsed by:635
Symbol 628 GraphicUsed by:635
Symbol 629 GraphicUsed by:635
Symbol 630 GraphicUsed by:635
Symbol 631 GraphicUsed by:635
Symbol 632 GraphicUsed by:635
Symbol 633 GraphicUsed by:635
Symbol 634 GraphicUsed by:635
Symbol 635 MovieClipUses:625 626 627 628 629 630 631 632 633 634Used by:Timeline
Symbol 636 GraphicUsed by:637
Symbol 637 MovieClipUses:636Used by:Timeline
Symbol 638 GraphicUsed by:639
Symbol 639 MovieClipUses:638Used by:Timeline
Symbol 640 GraphicUsed by:Timeline
Symbol 641 MovieClipUses:420 421 422 423Used by:652
Symbol 642 GraphicUsed by:643
Symbol 643 MovieClipUses:423 642Used by:652
Symbol 644 GraphicUsed by:645
Symbol 645 MovieClipUses:644Used by:652
Symbol 646 GraphicUsed by:650
Symbol 647 GraphicUsed by:650
Symbol 648 GraphicUsed by:650
Symbol 649 GraphicUsed by:650 651
Symbol 650 MovieClipUses:422 646 647 648 649Used by:652
Symbol 651 MovieClipUses:649 485Used by:652
Symbol 652 MovieClipUses:641 643 113 645 650 651 490Used by:Timeline
Symbol 653 GraphicUsed by:668
Symbol 654 GraphicUsed by:668
Symbol 655 GraphicUsed by:668
Symbol 656 GraphicUsed by:668
Symbol 657 GraphicUsed by:668
Symbol 658 GraphicUsed by:668
Symbol 659 GraphicUsed by:668
Symbol 660 GraphicUsed by:668
Symbol 661 GraphicUsed by:668
Symbol 662 GraphicUsed by:668
Symbol 663 GraphicUsed by:668
Symbol 664 GraphicUsed by:668
Symbol 665 GraphicUsed by:668
Symbol 666 GraphicUsed by:668
Symbol 667 GraphicUsed by:668
Symbol 668 MovieClipUses:653 654 655 656 657 658 659 660 661 662 663 664 665 666 667Used by:Timeline
Symbol 669 GraphicUsed by:673
Symbol 670 GraphicUsed by:673
Symbol 671 GraphicUsed by:673
Symbol 672 GraphicUsed by:673
Symbol 673 MovieClipUses:669 670 671 672Used by:Timeline
Symbol 674 GraphicUsed by:Timeline
Symbol 675 MovieClipUses:447 448 449Used by:688
Symbol 676 GraphicUsed by:677
Symbol 677 MovieClipUses:676Used by:688
Symbol 678 GraphicUsed by:681
Symbol 679 GraphicUsed by:681
Symbol 680 GraphicUsed by:681
Symbol 681 MovieClipUses:678 679 680Used by:688
Symbol 682 GraphicUsed by:686
Symbol 683 GraphicUsed by:686
Symbol 684 GraphicUsed by:686
Symbol 685 GraphicUsed by:686
Symbol 686 MovieClipUses:447 449 682 683 684 685Used by:688
Symbol 687 MovieClipUses:448 485Used by:688
Symbol 688 MovieClipUses:675 447 113 677 681 686 687 490Used by:Timeline
Symbol 689 GraphicUsed by:704
Symbol 690 GraphicUsed by:704
Symbol 691 GraphicUsed by:704
Symbol 692 GraphicUsed by:704
Symbol 693 GraphicUsed by:704
Symbol 694 GraphicUsed by:704
Symbol 695 GraphicUsed by:704
Symbol 696 GraphicUsed by:704
Symbol 697 GraphicUsed by:704
Symbol 698 GraphicUsed by:704
Symbol 699 GraphicUsed by:704
Symbol 700 GraphicUsed by:704
Symbol 701 GraphicUsed by:704
Symbol 702 GraphicUsed by:704
Symbol 703 GraphicUsed by:704
Symbol 704 MovieClipUses:689 690 691 692 693 694 695 696 697 698 699 700 701 702 703Used by:Timeline
Symbol 705 GraphicUsed by:715
Symbol 706 MovieClipUses:31Used by:715
Symbol 707 GraphicUsed by:708
Symbol 708 MovieClipUses:707Used by:715
Symbol 709 GraphicUsed by:710
Symbol 710 MovieClipUses:709Used by:715
Symbol 711 GraphicUsed by:712
Symbol 712 MovieClipUses:711Used by:715
Symbol 713 GraphicUsed by:714
Symbol 714 MovieClipUses:713Used by:715
Symbol 715 MovieClipUses:705 706 708 710 712 714Used by:Timeline
Symbol 716 GraphicUsed by:Timeline
Symbol 717 GraphicUsed by:718 729
Symbol 718 MovieClipUses:457 458 717Used by:730
Symbol 719 GraphicUsed by:721
Symbol 720 GraphicUsed by:721
Symbol 721 MovieClipUses:719 720Used by:730
Symbol 722 GraphicUsed by:723
Symbol 723 MovieClipUses:722Used by:730
Symbol 724 GraphicUsed by:728
Symbol 725 GraphicUsed by:728
Symbol 726 GraphicUsed by:728
Symbol 727 GraphicUsed by:728
Symbol 728 MovieClipUses:724 725 726 727Used by:730
Symbol 729 MovieClipUses:717 485Used by:730
Symbol 730 MovieClipUses:718 457 113 721 723 728 729 490Used by:Timeline
Symbol 731 GraphicUsed by:746
Symbol 732 GraphicUsed by:746
Symbol 733 GraphicUsed by:746
Symbol 734 GraphicUsed by:746
Symbol 735 GraphicUsed by:746
Symbol 736 GraphicUsed by:746
Symbol 737 GraphicUsed by:746
Symbol 738 GraphicUsed by:746
Symbol 739 GraphicUsed by:746
Symbol 740 GraphicUsed by:746
Symbol 741 GraphicUsed by:746
Symbol 742 GraphicUsed by:746
Symbol 743 GraphicUsed by:746
Symbol 744 GraphicUsed by:746
Symbol 745 GraphicUsed by:746
Symbol 746 MovieClipUses:731 732 733 734 735 736 737 738 739 740 741 742 743 744 745Used by:Timeline
Symbol 747 GraphicUsed by:748
Symbol 748 MovieClipUses:747Used by:749
Symbol 749 MovieClipUses:748Used by:Timeline

Instance Names

"conCirc"Frame 32Symbol 92 MovieClip
"levelOne"Frame 32Symbol 141 MovieClip
"mario"Frame 32Symbol 164 MovieClip
"levelOne"Frame 58Symbol 179 MovieClip
"conCirc"Frame 58Symbol 92 MovieClip
"levelTwo"Frame 58Symbol 181 MovieClip
"mario"Frame 58Symbol 164 MovieClip
"levelTwo"Frame 84Symbol 205 MovieClip
"levelOne"Frame 84Symbol 210 MovieClip
"conCirc"Frame 84Symbol 92 MovieClip
"mario"Frame 84Symbol 164 MovieClip
"ground2"Frame 110Symbol 98 MovieClip
"ground3"Frame 110Symbol 98 MovieClip
"ground1"Frame 110Symbol 98 MovieClip
"enemy1"Frame 110Symbol 134 MovieClip
"conCirc"Frame 110Symbol 92 MovieClip
"mario"Frame 110Symbol 164 MovieClip
"lavaBoss"Frame 110Symbol 225 MovieClip
"fireTwo"Frame 110Symbol 233 MovieClip
"fireOne"Frame 110Symbol 233 MovieClip
"levelOne"Frame 136Symbol 251 MovieClip
"mario"Frame 136Symbol 255 MovieClip
"mFire"Frame 136Symbol 256 MovieClip
"levelOne"Frame 138Symbol 266 MovieClip
"levelTwo"Frame 139Symbol 273 MovieClip
"levelOne"Frame 144Symbol 280 MovieClip
"levelOne"Frame 146Symbol 284 MovieClip
"bossShip"Frame 155Symbol 334 MovieClip
"metalMan"Frame 190Symbol 491 MovieClip
"ground1"Frame 190Symbol 98 MovieClip
"conCirc"Frame 190Symbol 92 MovieClip
"metalLife"Frame 190Symbol 507 MovieClip
"parentShot"Frame 190Symbol 510 MovieClip
"mario"Frame 190Symbol 164 MovieClip
"drillMan"Frame 192Symbol 527 MovieClip
"ground1"Frame 192Symbol 98 MovieClip
"conCirc"Frame 192Symbol 92 MovieClip
"drillLife"Frame 192Symbol 544 MovieClip
"parentShot"Frame 192Symbol 547 MovieClip
"mario"Frame 192Symbol 164 MovieClip
"crashMan"Frame 194Symbol 560 MovieClip
"ground1"Frame 194Symbol 98 MovieClip
"conCirc"Frame 194Symbol 92 MovieClip
"crashLife"Frame 194Symbol 571 MovieClip
"parentShot"Frame 194Symbol 576 MovieClip
"mario"Frame 194Symbol 164 MovieClip
"heatMan"Frame 196Symbol 591 MovieClip
"ground1"Frame 196Symbol 98 MovieClip
"conCirc"Frame 196Symbol 92 MovieClip
"heatLife"Frame 196Symbol 602 MovieClip
"parentShot"Frame 196Symbol 607 MovieClip
"mario"Frame 196Symbol 164 MovieClip
"pharaohMan"Frame 198Symbol 624 MovieClip
"ground1"Frame 198Symbol 98 MovieClip
"conCirc"Frame 198Symbol 92 MovieClip
"pharaohLife"Frame 198Symbol 635 MovieClip
"parentShotOne"Frame 198Symbol 637 MovieClip
"parentShotTwo"Frame 198Symbol 639 MovieClip
"mario"Frame 198Symbol 164 MovieClip
"sparkMan"Frame 200Symbol 652 MovieClip
"ground1"Frame 200Symbol 98 MovieClip
"conCirc"Frame 200Symbol 92 MovieClip
"sparkLife"Frame 200Symbol 668 MovieClip
"parentShot"Frame 200Symbol 673 MovieClip
"mario"Frame 200Symbol 164 MovieClip
"dustMan"Frame 202Symbol 688 MovieClip
"ground1"Frame 202Symbol 98 MovieClip
"conCirc"Frame 202Symbol 92 MovieClip
"dustLife"Frame 202Symbol 704 MovieClip
"parentShot"Frame 202Symbol 715 MovieClip
"mario"Frame 202Symbol 164 MovieClip
"flashMan"Frame 204Symbol 730 MovieClip
"ground1"Frame 204Symbol 98 MovieClip
"conCirc"Frame 204Symbol 92 MovieClip
"flashLife"Frame 204Symbol 746 MovieClip
"parentShot"Frame 204Symbol 749 MovieClip
"mario"Frame 204Symbol 164 MovieClip
"bar"Symbol 57 MovieClip Frame 1Symbol 47 MovieClip
"loaded"Symbol 57 MovieClip Frame 1Symbol 52 EditableText
"tWalk"Symbol 134 MovieClip Frame 1Symbol 123 MovieClip
"ground17"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground16"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground15"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"enemy4"Symbol 141 MovieClip Frame 1Symbol 134 MovieClip
"enemy3"Symbol 141 MovieClip Frame 1Symbol 134 MovieClip
"enemy2"Symbol 141 MovieClip Frame 1Symbol 134 MovieClip
"enemy1"Symbol 141 MovieClip Frame 1Symbol 134 MovieClip
"ground1"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground3"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground4"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground2"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground5"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground6"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground7"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground8"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground9"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground10"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground11"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground12"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground13"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground14"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"ground18"Symbol 141 MovieClip Frame 1Symbol 98 MovieClip
"fallingHit"Symbol 164 MovieClip Frame 1Symbol 143 MovieClip
"marioBase"Symbol 164 MovieClip Frame 1Symbol 113 MovieClip
"mRun"Symbol 164 MovieClip Frame 2Symbol 146 MovieClip
"hitBlock"Symbol 164 MovieClip Frame 6Symbol 113 MovieClip
"fallingHit"Symbol 164 MovieClip Frame 8Symbol 143 MovieClip
"hitBlock"Symbol 164 MovieClip Frame 12Symbol 113 MovieClip
"ground1"Symbol 179 MovieClip Frame 1Symbol 98 MovieClip
"ground2"Symbol 179 MovieClip Frame 1Symbol 98 MovieClip
"ground4"Symbol 179 MovieClip Frame 1Symbol 98 MovieClip
"ground6"Symbol 179 MovieClip Frame 1Symbol 98 MovieClip
"ground7"Symbol 179 MovieClip Frame 1Symbol 98 MovieClip
"ground8"Symbol 179 MovieClip Frame 1Symbol 98 MovieClip
"ground9"Symbol 179 MovieClip Frame 1Symbol 98 MovieClip
"ground10"Symbol 181 MovieClip Frame 1Symbol 98 MovieClip
"ground11"Symbol 181 MovieClip Frame 1Symbol 98 MovieClip
"ground12"Symbol 181 MovieClip Frame 1Symbol 98 MovieClip
"ground13"Symbol 181 MovieClip Frame 1Symbol 98 MovieClip
"ground14"Symbol 181 MovieClip Frame 1Symbol 98 MovieClip
"ground15"Symbol 181 MovieClip Frame 1Symbol 98 MovieClip
"ground11"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground12"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground13"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground14"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground15"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground16"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground17"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground18"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground19"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground20"Symbol 205 MovieClip Frame 1Symbol 98 MovieClip
"ground1"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground2"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground3"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground4"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground5"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground6"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground7"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground8"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground9"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"ground10"Symbol 210 MovieClip Frame 1Symbol 98 MovieClip
"bossHurt"Symbol 225 MovieClip Frame 2Symbol 113 MovieClip
"jMetal"Symbol 491 MovieClip Frame 4Symbol 482 MovieClip
"cJump"Symbol 560 MovieClip Frame 4Symbol 557 MovieClip
"jPharaoh"Symbol 624 MovieClip Frame 4Symbol 615 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 1 as "victory"
ExportAssets (56)Timeline Frame 1Symbol 2 as "underground"
ExportAssets (56)Timeline Frame 1Symbol 3 as "spit"
ExportAssets (56)Timeline Frame 1Symbol 4 as "stomp2"
ExportAssets (56)Timeline Frame 1Symbol 5 as "stomp"
ExportAssets (56)Timeline Frame 1Symbol 6 as "sprout"
ExportAssets (56)Timeline Frame 1Symbol 7 as "grow"
ExportAssets (56)Timeline Frame 1Symbol 8 as "down"
ExportAssets (56)Timeline Frame 1Symbol 9 as "jump"
ExportAssets (56)Timeline Frame 1Symbol 10 as "door"
ExportAssets (56)Timeline Frame 1Symbol 11 as "fire"
ExportAssets (56)Timeline Frame 1Symbol 12 as "rbMusic"
ExportAssets (56)Timeline Frame 1Symbol 13 as "mMan"
ExportAssets (56)Timeline Frame 1Symbol 14 as "metroid"
ExportAssets (56)Timeline Frame 1Symbol 15 as "marioMusic"
ExportAssets (56)Timeline Frame 1Symbol 16 as "hammer"
ExportAssets (56)Timeline Frame 1Symbol 17 as "gradius"
ExportAssets (56)Timeline Frame 1Symbol 18 as "gradiusBoss"
ExportAssets (56)Timeline Frame 1Symbol 19 as "gradius2"
ExportAssets (56)Timeline Frame 1Symbol 20 as "forest"
ExportAssets (56)Timeline Frame 1Symbol 21 as "flag"
ExportAssets (56)Timeline Frame 1Symbol 22 as "explosion"
ExportAssets (56)Timeline Frame 1Symbol 23 as "death"
ExportAssets (56)Timeline Frame 1Symbol 24 as "cutman"
ExportAssets (56)Timeline Frame 1Symbol 25 as "castle"
ExportAssets (56)Timeline Frame 1Symbol 26 as "bIntro"
ExportAssets (56)Timeline Frame 1Symbol 27 as "laser2"
ExportAssets (56)Timeline Frame 1Symbol 28 as "laserOne"
ExportAssets (56)Timeline Frame 1Symbol 29 as "stageIntro"
ExportAssets (56)Timeline Frame 1Symbol 30 as "selectMusic"

Labels

"Intro"Frame 6
"begin"Frame 7
"beginTwo"Frame 33
"beginThree"Frame 59
"beginFour"Frame 85
"beginFive"Frame 111
"gradBoss"Frame 155
"beginSix"Frame 156
"selection"Frame 181
"metalman"Frame 190
"drillman"Frame 192
"crashman"Frame 194
"heatman"Frame 196
"pharaohman"Frame 198
"sparkman"Frame 200
"dustman"Frame 202
"flashman"Frame 204




http://swfchan.com/3/14967/info.shtml
Created: 3/6 -2019 03:18:39 Last modified: 3/6 -2019 03:18:39 Server time: 05/05 -2024 17:06:39