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

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

Mario Remix.swf

This is the info page for
Flash #31066

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


Text
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 1
_root.createTextField("texta", 1000, 100, 100, 100, 100); _root.texta.text = "Loading preloader."; var my_fmt:TextFormat = new TextFormat(); my_fmt.color = 0; my_fmt.underline = true; _root.texta.setTextFormat(my_fmt); _root.onEnterFrame = function () { if (pl.getBytesLoaded() == pl.getBytesTotal()) { removeMovieClip(_root.texta); delete this.onEnterFrame; } };
Instance of Symbol 45 MovieClip "pl" in Frame 1
onClipEvent (load) { _root.stop(); }
Frame 402
stop();
Frame 406
stop(); marioIntro.stop();
Frame 432
stop(); marioMusic = new Sound(); marioMusic.attachSound("marioMusic"); marioMusic.start(0, 20);
Instance of Symbol 85 MovieClip "conCirc" in Frame 432
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 157 MovieClip "mario" in Frame 432
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 458
stop(); marioMusic = new Sound(); marioMusic.attachSound("underground"); marioMusic.stop(); marioMusic.start(0, 20);
Instance of Symbol 171 MovieClip "levelOne" in Frame 458
onClipEvent (load) { levelMovement = true; } onClipEvent (enterFrame) { if (this._x < -1500) { levelMovement = false; } }
Instance of Symbol 85 MovieClip "conCirc" in Frame 458
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 173 MovieClip "levelTwo" in Frame 458
onClipEvent (load) { levelMovement = false; } onClipEvent (enterFrame) { if (_root.levelOne._x < -1000) { levelMovement = true; } }
Instance of Symbol 157 MovieClip "mario" in Frame 458
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 484
stop(); marioMusic = new Sound(); marioMusic.attachSound("castle"); marioMusic.stop(); marioMusic.start(0, 20);
Instance of Symbol 197 MovieClip "levelTwo" in Frame 484
onClipEvent (load) { levelMovement = false; } onClipEvent (enterFrame) { if (_root.levelOne._x < -900) { levelMovement = true; } }
Instance of Symbol 202 MovieClip "levelOne" in Frame 484
onClipEvent (load) { levelMovement = true; } onClipEvent (enterFrame) { }
Instance of Symbol 85 MovieClip "conCirc" in Frame 484
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 157 MovieClip "mario" in Frame 484
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 510
stop(); marioBoss = new Sound(); marioBoss.attachSound("hammer"); marioBoss.stop(); marioBoss.start(0, 50);
Instance of Symbol 127 MovieClip "enemy1" in Frame 510
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 85 MovieClip "conCirc" in Frame 510
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 157 MovieClip "mario" in Frame 510
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 132 MovieClip in Frame 510
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 217 MovieClip "lavaBoss" in Frame 510
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 225 MovieClip "fireTwo" in Frame 510
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 225 MovieClip "fireOne" in Frame 510
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 511
gradius.stop();
Frame 536
stop(); gradius = new Sound(); gradius.attachSound("gradius"); gradius.start(0, 50); stop();
Instance of Symbol 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 228 MovieClip in Frame 536
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 243 MovieClip "levelOne" in Frame 536
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 5; if ((this._x <= 310) && (levelMove)) { _root.play(); levelMove = false; } }
Instance of Symbol 247 MovieClip "mario" in Frame 536
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 248 MovieClip "mFire" in Frame 536
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 537
stop();
Instance of Symbol 251 MovieClip in Frame 537
onClipEvent (enterFrame) { this._x = this._x - 5; if (this._x <= -85) { _root.play(); } }
Frame 538
stop();
Instance of Symbol 258 MovieClip "levelOne" in Frame 538
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -190) { _root.play(); } }
Frame 539
stop();
Instance of Symbol 265 MovieClip "levelTwo" in Frame 539
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -100) { _root.play(); } }
Frame 540
stop();
Instance of Symbol 266 MovieClip in Frame 540
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -121) { _root.play(); } }
Frame 541
stop();
Instance of Symbol 267 MovieClip in Frame 541
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -140) { _root.play(); } }
Frame 542
stop();
Instance of Symbol 268 MovieClip in Frame 542
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 5; if ((this._x <= 350) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 543
stop();
Instance of Symbol 270 MovieClip in Frame 543
onClipEvent (enterFrame) { this._x = this._x - 5; if (this._x <= -175) { _root.play(); } }
Frame 544
stop();
Instance of Symbol 272 MovieClip "levelOne" in Frame 544
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 6; if ((this._x <= 200) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 545
stop();
Instance of Symbol 274 MovieClip in Frame 545
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -90) { _root.play(); } }
Frame 546
stop();
Instance of Symbol 275 MovieClip "levelOne" in Frame 546
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -290) { _root.play(); } }
Frame 547
stop();
Instance of Symbol 270 MovieClip in Frame 547
onClipEvent (enterFrame) { this._x = this._x - 6; if (this._x <= -325) { _root.play(); } }
Frame 548
stop();
Instance of Symbol 285 MovieClip in Frame 548
onClipEvent (enterFrame) { this._x = this._x - 5; if (this._x <= -300) { _root.play(); } }
Frame 549
stop();
Instance of Symbol 295 MovieClip in Frame 549
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 5; if ((this._x <= 280) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 550
stop();
Instance of Symbol 296 MovieClip in Frame 550
onClipEvent (enterFrame) { this._x = this._x - 5; if (this._x <= -275) { _root.play(); } }
Frame 551
stop();
Instance of Symbol 301 MovieClip in Frame 551
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 552
stop();
Instance of Symbol 303 MovieClip in Frame 552
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 10; if ((this._x <= 25) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 553
stop();
Instance of Symbol 305 MovieClip in Frame 553
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 10; if ((this._x <= -200) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 554
stop();
Instance of Symbol 308 MovieClip in Frame 554
onClipEvent (load) { levelMove = true; } onClipEvent (enterFrame) { this._x = this._x - 6; if ((this._x <= -1200) && (levelMove)) { _root.play(); levelMove = false; } }
Frame 555
stop();
Instance of Symbol 325 MovieClip "bossShip" in Frame 555
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 581
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 (406); } } 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 (582); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 1) && (_global.flash or (_global.flash == undefined))) { gotoAndStop (589); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 4) && (_global.heat or (_global.heat == undefined))) { gotoAndStop (583); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 3) && (_global.spark or (_global.spark == undefined))) { gotoAndStop (586); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 6) && (_global.crash or (_global.crash == undefined))) { gotoAndStop (584); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 7) && (_global.pharaoh or (_global.pharaoh == undefined))) { gotoAndStop (587); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 8) && (_global.drill or (_global.drill == undefined))) { gotoAndStop (585); selectMusic.stop(); Key.removeListener(keyListener); } if ((charSelect == 9) && (_global.dust or (_global.dust == undefined))) { gotoAndStop (588); selectMusic.stop(); Key.removeListener(keyListener); } } } }; Key.addListener(keyListener); stop();
Instance of Symbol 334 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 2; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 336 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 1; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 338 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 7; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 340 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 3; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 342 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 8; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 344 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 4; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 346 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 6; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 348 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 9; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Instance of Symbol 350 MovieClip in Frame 581
onClipEvent (load) { selectionNumber = 5; } onClipEvent (enterFrame) { if (_root.charSelect == selectionNumber) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Frame 582
stop(); _global.metal = true;
Instance of Symbol 370 MovieClip in Frame 582
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 583
stop(); _global.heat = true;
Instance of Symbol 357 MovieClip in Frame 583
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 584
stop(); _global.crash = true;
Instance of Symbol 397 MovieClip in Frame 584
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 585
stop(); _global.drill = true;
Instance of Symbol 409 MovieClip in Frame 585
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 586
stop(); _global.spark = true;
Instance of Symbol 422 MovieClip in Frame 586
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 587
stop(); _global.pharaoh = true;
Instance of Symbol 436 MovieClip in Frame 587
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 588
stop(); _global.dust = true;
Instance of Symbol 446 MovieClip in Frame 588
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 589
stop(); _global.flash = true;
Instance of Symbol 458 MovieClip in Frame 589
onClipEvent (load) { stageIntro = new Sound(); stageIntro.attachSound("stageIntro"); stageIntro.start(); }
Frame 590
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 481 MovieClip "metalMan" in Frame 590
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 85 MovieClip "conCirc" in Frame 590
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 500 MovieClip "parentShot" in Frame 590
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 157 MovieClip "mario" in Frame 590
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 592
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 517 MovieClip "drillMan" in Frame 592
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 85 MovieClip "conCirc" in Frame 592
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 537 MovieClip "parentShot" in Frame 592
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 157 MovieClip "mario" in Frame 592
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 594
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 550 MovieClip "crashMan" in Frame 594
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 85 MovieClip "conCirc" in Frame 594
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 566 MovieClip "parentShot" in Frame 594
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 157 MovieClip "mario" in Frame 594
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 596
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 581 MovieClip "heatMan" in Frame 596
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 85 MovieClip "conCirc" in Frame 596
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 597 MovieClip "parentShot" in Frame 596
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 157 MovieClip "mario" in Frame 596
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 598
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 614 MovieClip "pharaohMan" in Frame 598
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 85 MovieClip "conCirc" in Frame 598
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 627 MovieClip "parentShotOne" in Frame 598
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 629 MovieClip "parentShotTwo" in Frame 598
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 157 MovieClip "mario" in Frame 598
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 600
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 642 MovieClip "sparkMan" in Frame 600
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 85 MovieClip "conCirc" in Frame 600
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 663 MovieClip "parentShot" in Frame 600
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 157 MovieClip "mario" in Frame 600
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 602
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 678 MovieClip "dustMan" in Frame 602
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 85 MovieClip "conCirc" in Frame 602
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 705 MovieClip "parentShot" in Frame 602
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 157 MovieClip "mario" in Frame 602
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 604
stop(); bossMusic = new Sound(); bossMusic.attachSound("rbMusic"); bossMusic.start(0, 100);
Instance of Symbol 720 MovieClip "flashMan" in Frame 604
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 85 MovieClip "conCirc" in Frame 604
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 739 MovieClip "parentShot" in Frame 604
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 157 MovieClip "mario" in Frame 604
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 39 MovieClip in Symbol 40 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = 0.6; _width = ((_root.getBytesLoaded() / _root.getBytesTotal()) * 275); }
Symbol 43 MovieClip Frame 1
this.onRelease = function () { getURL ("http://www.gamesofgondor.com", "_blank"); };
Instance of Symbol 40 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.getBytesLoaded() / _root.getBytesTotal()) == 1) { _root.play(); } }
Symbol 52 Button
on (press) { gotoAndStop (404); }
Symbol 53 Button
on (press) { gotoAndStop (405); }
Symbol 58 Button
on (press) { gotoAndPlay (406); }
Symbol 60 Button
on (press) { gotoAndStop (403); }
Symbol 68 Button
on (press) { gotoAndStop (402); }
Symbol 76 Button
on (rollOver) { marioIntro = new Sound(); marioIntro.attachSound("cutman"); marioIntro.stop(); marioIntro.start(); } on (rollOut) { marioIntro.stop(); } on (press) { marioIntro.stop(); gotoAndPlay (556); }
Symbol 78 Button
on (rollOver) { marioIntro = new Sound(); marioIntro.attachSound("forest"); marioIntro.stop(); marioIntro.start(); } on (rollOut) { marioIntro.stop(); } on (press) { marioIntro.stop(); gotoAndPlay (407); }
Symbol 80 Button
on (rollOver) { marioIntro = new Sound(); marioIntro.attachSound("gradius2"); marioIntro.stop(); marioIntro.start(); } on (rollOut) { marioIntro.stop(); } on (press) { marioIntro.stop(); gotoAndPlay (511); }
Instance of Symbol 90 MovieClip in Symbol 91 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 97 MovieClip Frame 1
stop();
Symbol 97 MovieClip Frame 2
stop();
Instance of Symbol 99 MovieClip in Symbol 100 MovieClip Frame 1
onClipEvent (enterFrame) { this._visible = false; } onClipEvent (enterFrame) { if (_root.mario.hitTest(this)) { hit = "right"; _root.conCirc.hitFunction(hit); } }
Instance of Symbol 99 MovieClip in Symbol 101 MovieClip Frame 1
onClipEvent (load) { this._visible = false; } onClipEvent (enterFrame) { if (_root.mario.hitTest(this)) { hit = "left"; _root.conCirc.hitFunction(hit); } }
Symbol 107 MovieClip Frame 7
stop();
Symbol 108 MovieClip Frame 1
stop();
Instance of Symbol 106 MovieClip in Symbol 108 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 108 MovieClip Frame 2
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Symbol 112 MovieClip Frame 7
stop();
Symbol 113 MovieClip Frame 1
stop();
Instance of Symbol 106 MovieClip in Symbol 113 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 113 MovieClip Frame 2
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Symbol 126 MovieClip Frame 5
stop();
Instance of Symbol 106 MovieClip in Symbol 126 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 127 MovieClip Frame 1
stop();
Instance of Symbol 106 MovieClip in Symbol 127 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 127 MovieClip Frame 2
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Instance of Symbol 106 MovieClip in Symbol 127 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 127 MovieClip Frame 3
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Instance of Symbol 106 MovieClip in Symbol 127 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 127 MovieClip Frame 4
stop();
Symbol 132 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 2
stop();
Instance of Symbol 88 MovieClip in Symbol 134 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 91 MovieClip "ground17" in Symbol 134 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 91 MovieClip "ground16" in Symbol 134 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 91 MovieClip "ground15" in Symbol 134 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 97 MovieClip in Symbol 134 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 97 MovieClip in Symbol 134 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 97 MovieClip in Symbol 134 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 97 MovieClip in Symbol 134 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 97 MovieClip in Symbol 134 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 97 MovieClip in Symbol 134 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 108 MovieClip in Symbol 134 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 113 MovieClip in Symbol 134 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 113 MovieClip in Symbol 134 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 127 MovieClip "enemy4" in Symbol 134 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 127 MovieClip "enemy3" in Symbol 134 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 127 MovieClip "enemy2" in Symbol 134 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 127 MovieClip "enemy1" in Symbol 134 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 113 MovieClip in Symbol 134 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 113 MovieClip in Symbol 134 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 113 MovieClip in Symbol 134 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 113 MovieClip in Symbol 134 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 130 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = _root.levelOne.ground15._x; }
Instance of Symbol 130 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = _root.levelOne.ground16._y; }
Instance of Symbol 130 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = _root.levelOne.ground17._x; }
Instance of Symbol 132 MovieClip in Symbol 134 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 108 MovieClip in Symbol 134 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 157 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 2
stop();
Symbol 157 MovieClip Frame 3
stop();
Symbol 157 MovieClip Frame 4
stop();
Symbol 157 MovieClip Frame 5
stop();
Symbol 157 MovieClip Frame 6
stop();
Symbol 157 MovieClip Frame 7
stop();
Symbol 157 MovieClip Frame 8
stop();
Symbol 157 MovieClip Frame 9
stop();
Symbol 157 MovieClip Frame 10
stop();
Symbol 157 MovieClip Frame 11
stop();
Symbol 157 MovieClip Frame 12
stop();
Symbol 157 MovieClip Frame 13
stop(); marioDeath = new Sound(); marioDeath.attachSound("death"); marioDeath.stop(); marioDeath.start();
Symbol 158 Button
on (press) { gotoAndStop (406); }
Symbol 160 Button
on (press) { gotoAndPlay (485); }
Symbol 163 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 168 MovieClip in Symbol 169 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 169 MovieClip in Symbol 171 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 169 MovieClip in Symbol 171 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 169 MovieClip in Symbol 171 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 132 MovieClip in Symbol 171 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 88 MovieClip in Symbol 173 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 169 MovieClip in Symbol 173 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 169 MovieClip in Symbol 173 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 169 MovieClip in Symbol 173 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 169 MovieClip in Symbol 173 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 175 MovieClip in Symbol 176 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 106 MovieClip in Symbol 186 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 184 MovieClip in Symbol 186 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 106 MovieClip in Symbol 186 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 186 MovieClip Frame 44
_parent.gotoAndStop(1);
Symbol 188 MovieClip Frame 7
stop();
Symbol 189 MovieClip Frame 1
stop();
Instance of Symbol 106 MovieClip in Symbol 189 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 189 MovieClip Frame 2
stop();
Symbol 189 MovieClip Frame 3
stop(); marioStomp = new Sound(); marioStomp.attachSound("stomp"); marioStomp.start();
Instance of Symbol 194 MovieClip in Symbol 195 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 195 MovieClip in Symbol 196 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 88 MovieClip in Symbol 197 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 189 MovieClip in Symbol 197 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 189 MovieClip in Symbol 197 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 189 MovieClip in Symbol 197 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 189 MovieClip in Symbol 197 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 189 MovieClip in Symbol 197 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 189 MovieClip in Symbol 202 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 189 MovieClip in Symbol 202 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 189 MovieClip in Symbol 202 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 189 MovieClip in Symbol 202 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 189 MovieClip in Symbol 202 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 132 MovieClip in Symbol 202 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 216 MovieClip Frame 30
stop(); _root.lavaBoss.marioWin.stop(); _root.lavaBoss.marioWin.start();
Symbol 217 MovieClip Frame 1
stop();
Symbol 217 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip "bossHurt" in Symbol 217 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 217 MovieClip Frame 3
stop();
Instance of Symbol 215 MovieClip in Symbol 217 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 217 MovieClip Frame 4
stop(); _root.marioBoss.stop();
Symbol 241 MovieClip Frame 1
explosion = new Sound(); explosion.attachSound("explosion"); explosion.start();
Symbol 241 MovieClip Frame 13
stop();
Symbol 242 MovieClip Frame 1
stop();
Instance of Symbol 234 MovieClip in Symbol 242 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 242 MovieClip Frame 2
stop();
Instance of Symbol 241 MovieClip in Symbol 242 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x + 5; }
Instance of Symbol 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 242 MovieClip in Symbol 243 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 247 MovieClip Frame 1
stop();
Symbol 247 MovieClip Frame 2
stop();
Symbol 247 MovieClip Frame 3
stop();
Symbol 247 MovieClip Frame 4
stop();
Instance of Symbol 241 MovieClip in Symbol 247 MovieClip Frame 4
onClipEvent (load) { deathCounter = 0; } onClipEvent (enterFrame) { deathCounter++; if (deathCounter >= 30) { _root.gotoAndPlay("beginFive"); } }
Symbol 249 Button
on (press) { gotoAndPlay (555); }
Instance of Symbol 242 MovieClip in Symbol 251 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 242 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 242 MovieClip in Symbol 251 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 242 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 242 MovieClip in Symbol 251 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 242 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 242 MovieClip in Symbol 251 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 242 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 242 MovieClip in Symbol 251 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 242 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 242 MovieClip in Symbol 251 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 242 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 257 MovieClip Frame 1
stop();
Instance of Symbol 256 MovieClip in Symbol 257 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 257 MovieClip Frame 2
stop();
Instance of Symbol 241 MovieClip in Symbol 257 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x + 6; }
Instance of Symbol 257 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 600) && (_root.levelOne._x >= 200)) { this._y = this._y - 3; } }
Instance of Symbol 257 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 500) && (_root.levelOne._x >= 200)) { this._y = this._y - 3; } }
Instance of Symbol 257 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 400) && (_root.levelOne._x >= 200)) { this._y = this._y - 3; } }
Instance of Symbol 257 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 600) && (_root.levelOne._x >= 200)) { this._y = this._y + 3; } }
Instance of Symbol 257 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 500) && (_root.levelOne._x >= 200)) { this._y = this._y + 3; } }
Instance of Symbol 257 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (enterFrame) { if ((_root.levelOne._x <= 400) && (_root.levelOne._x >= 200)) { this._y = this._y + 3; } }
Instance of Symbol 257 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 400) { this._y = this._y + 3; } }
Instance of Symbol 257 MovieClip in Symbol 258 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 400) { this._y = this._y - 3; } }
Instance of Symbol 242 MovieClip in Symbol 258 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 264 MovieClip Frame 1
stop();
Instance of Symbol 263 MovieClip in Symbol 264 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 264 MovieClip Frame 2
stop();
Instance of Symbol 241 MovieClip in Symbol 264 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 242 MovieClip in Symbol 268 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 242 MovieClip in Symbol 268 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 242 MovieClip in Symbol 268 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 242 MovieClip in Symbol 268 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 242 MovieClip in Symbol 268 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 242 MovieClip in Symbol 268 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 242 MovieClip in Symbol 268 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 242 MovieClip in Symbol 268 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 242 MovieClip in Symbol 270 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 257 MovieClip in Symbol 272 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 500) { this._y = this._y - 3; } }
Instance of Symbol 257 MovieClip in Symbol 272 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 400) { this._y = this._y - 3; } }
Instance of Symbol 257 MovieClip in Symbol 272 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 500) { this._y = this._y + 3; } }
Instance of Symbol 257 MovieClip in Symbol 272 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.levelOne._x <= 400) { this._y = this._y + 3; } }
Instance of Symbol 242 MovieClip in Symbol 274 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 242 MovieClip in Symbol 274 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 242 MovieClip in Symbol 274 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 242 MovieClip in Symbol 274 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 242 MovieClip in Symbol 274 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 242 MovieClip in Symbol 274 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 242 MovieClip in Symbol 274 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 242 MovieClip in Symbol 274 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 257 MovieClip in Symbol 275 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 257 MovieClip in Symbol 275 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 257 MovieClip in Symbol 275 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 257 MovieClip in Symbol 275 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 257 MovieClip in Symbol 275 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 257 MovieClip in Symbol 275 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 284 MovieClip Frame 1
stop();
Instance of Symbol 283 MovieClip in Symbol 284 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 284 MovieClip Frame 2
stop();
Instance of Symbol 241 MovieClip in Symbol 284 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x + 5; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 3; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 2; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 0.75; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 2; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 2; this._x = this._x - 1; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 284 MovieClip in Symbol 285 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Symbol 288 MovieClip Frame 1
stop();
Instance of Symbol 287 MovieClip in Symbol 288 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 288 MovieClip Frame 2
stop();
Symbol 291 MovieClip Frame 1
stop();
Instance of Symbol 290 MovieClip in Symbol 291 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 291 MovieClip Frame 2
stop();
Symbol 294 MovieClip Frame 1
stop();
Instance of Symbol 293 MovieClip in Symbol 294 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 294 MovieClip Frame 2
stop();
Instance of Symbol 288 MovieClip in Symbol 295 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; }
Instance of Symbol 291 MovieClip in Symbol 295 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 1; }
Instance of Symbol 294 MovieClip in Symbol 295 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 1; }
Instance of Symbol 288 MovieClip in Symbol 295 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 2; }
Instance of Symbol 288 MovieClip in Symbol 295 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 3; }
Instance of Symbol 288 MovieClip in Symbol 296 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 1; }
Instance of Symbol 291 MovieClip in Symbol 296 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 1; }
Instance of Symbol 294 MovieClip in Symbol 296 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 1; }
Instance of Symbol 299 MovieClip in Symbol 300 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Instance of Symbol 310 MovieClip in Symbol 311 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Instance of Symbol 313 MovieClip in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Symbol 317 MovieClip Frame 1
stop();
Symbol 317 MovieClip Frame 9
stop();
Symbol 318 MovieClip Frame 32
stop(); laser = new Sound(); laser.attachSound("laser2"); laser.start();
Instance of Symbol 317 MovieClip in Symbol 318 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 317 MovieClip in Symbol 318 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 318 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 320 MovieClip in Symbol 321 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.mario)) { _root.mario.gotoAndStop(4); } }
Symbol 323 MovieClip Frame 1
stop();
Instance of Symbol 322 MovieClip in Symbol 323 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 13; if (this._x < -500) { _parent.play(); } this._y = this._y - _root.bossShip.ySpeed; }
Symbol 323 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 322 MovieClip in Symbol 323 MovieClip Frame 2
onClipEvent (enterFrame) { this._x = this._x - 10; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 4
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 7
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 7
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 9
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 15
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 18
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 18
onClipEvent (enterFrame) { this._x = this._x + 4; }
Instance of Symbol 241 MovieClip in Symbol 324 MovieClip Frame 20
onClipEvent (enterFrame) { this._x = this._x + 4; }
Symbol 324 MovieClip Frame 72
_root.gotoAndStop("Intro", "Intro"); stop();
Symbol 325 MovieClip Frame 1
stop();
Instance of Symbol 315 MovieClip in Symbol 325 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 325 MovieClip Frame 2
stop();
Symbol 325 MovieClip Frame 3
stop(); laser = new Sound(); laser.attachSound("laserOne"); laser.start();
Symbol 325 MovieClip Frame 4
stop();
Symbol 334 MovieClip Frame 1
stop();
Symbol 334 MovieClip Frame 2
stop();
Symbol 336 MovieClip Frame 1
stop();
Symbol 336 MovieClip Frame 2
stop();
Symbol 338 MovieClip Frame 1
stop();
Symbol 338 MovieClip Frame 2
stop();
Symbol 340 MovieClip Frame 1
stop();
Symbol 340 MovieClip Frame 2
stop();
Symbol 342 MovieClip Frame 1
stop();
Symbol 342 MovieClip Frame 2
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 352 Button
on (press) { _root.charSelect = 5; Key.removeListener(keyListener); gotoAndStop (406); }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.75; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.75; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 355 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.5; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 1; if (this._x > 650) { this._x = 0; } }
Symbol 369 MovieClip Frame 235
_root.gotoAndStop("metalman");
Symbol 385 MovieClip Frame 235
_root.gotoAndStop("heatman");
Symbol 397 MovieClip Frame 235
_root.gotoAndStop("crashman");
Symbol 409 MovieClip Frame 236
_root.gotoAndStop("drillman");
Symbol 422 MovieClip Frame 235
_root.gotoAndStop("sparkman");
Symbol 436 MovieClip Frame 235
_root.gotoAndStop("pharaohman");
Symbol 446 MovieClip Frame 235
_root.gotoAndStop("dustman");
Symbol 458 MovieClip Frame 236
_root.gotoAndStop("flashman");
Symbol 464 MovieClip Frame 15
stop();
Symbol 472 MovieClip Frame 1
stop();
Symbol 472 MovieClip Frame 2
_root.metalMan.bladeCounter++;
Symbol 472 MovieClip Frame 5
_root.parentShot.duplicateMovieClip("blade" + _root.metalMan.bladeCounter, _root.metalMan.bladeCounter + 30);
Symbol 472 MovieClip Frame 11
gotoAndPlay (2);
Instance of Symbol 475 MovieClip in Symbol 476 MovieClip Frame 1
onClipEvent (enterFrame) { _root.metalMan._alpha = Math.random() * 100; }
Instance of Symbol 475 MovieClip in Symbol 476 MovieClip Frame 9
onClipEvent (enterFrame) { _root.metalMan._alpha = 100; }
Symbol 476 MovieClip Frame 13
_root.metalMan.bossHit = false; _root.metalMan.gotoAndStop(3);
Instance of Symbol 479 MovieClip in Symbol 480 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 4; this._x = this._x + 4; }
Instance of Symbol 479 MovieClip in Symbol 480 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 4; this._x = this._x + 4; }
Instance of Symbol 479 MovieClip in Symbol 480 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 4; this._x = this._x - 4; }
Instance of Symbol 479 MovieClip in Symbol 480 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 4; this._x = this._x - 4; }
Instance of Symbol 479 MovieClip in Symbol 480 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 3; }
Instance of Symbol 479 MovieClip in Symbol 480 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x - 3; }
Instance of Symbol 479 MovieClip in Symbol 480 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y + 3; }
Instance of Symbol 479 MovieClip in Symbol 480 MovieClip Frame 1
onClipEvent (enterFrame) { this._y = this._y - 3; }
Symbol 480 MovieClip Frame 156
stop(); _root.gotoAndStop("selection");
Symbol 481 MovieClip Frame 1
stop();
Symbol 481 MovieClip Frame 2
stop();
Symbol 481 MovieClip Frame 3
stop();
Instance of Symbol 106 MovieClip in Symbol 481 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 481 MovieClip Frame 4
stop();
Symbol 481 MovieClip Frame 5
stop();
Symbol 481 MovieClip Frame 6
stop();
Instance of Symbol 480 MovieClip in Symbol 481 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 497 MovieClip Frame 1
stop();
Symbol 497 MovieClip Frame 2
stop();
Symbol 497 MovieClip Frame 3
stop();
Symbol 497 MovieClip Frame 4
stop();
Symbol 497 MovieClip Frame 5
stop();
Symbol 497 MovieClip Frame 6
stop();
Symbol 497 MovieClip Frame 7
stop();
Symbol 497 MovieClip Frame 8
stop();
Symbol 497 MovieClip Frame 9
stop();
Symbol 497 MovieClip Frame 10
stop();
Symbol 497 MovieClip Frame 11
stop();
Symbol 497 MovieClip Frame 12
stop();
Symbol 497 MovieClip Frame 13
stop();
Symbol 497 MovieClip Frame 14
stop();
Symbol 497 MovieClip Frame 15
stop();
Symbol 502 MovieClip Frame 31
stop();
Symbol 506 MovieClip Frame 7
_root.parentShot.duplicateMovieClip("drillShot", 30);
Symbol 506 MovieClip Frame 11
_root.drillMan.attackOne = false; _root.drillMan.attackTimer = 50; _root.drillMan.gotoAndStop(2);
Instance of Symbol 106 MovieClip in Symbol 514 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 514 MovieClip Frame 60
_root.drillMan.marioPos = _root.mario._x;
Instance of Symbol 106 MovieClip in Symbol 514 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 514 MovieClip Frame 73
_root.drillMan.attackTwo = false; _root.drillMan.attackTimer = 50; _root.drillMan.gotoAndStop(2);
Instance of Symbol 475 MovieClip in Symbol 516 MovieClip Frame 1
onClipEvent (enterFrame) { _root.drillMan._alpha = Math.random() * 100; }
Instance of Symbol 475 MovieClip in Symbol 516 MovieClip Frame 9
onClipEvent (enterFrame) { _root.drillMan._alpha = 100; }
Symbol 516 MovieClip Frame 13
_root.drillMan.attackOne = false; _root.drillMan.bossHit = false; _root.drillMan.attackTimer = 5; _root.drillMan.gotoAndStop(2);
Symbol 517 MovieClip Frame 1
stop();
Symbol 517 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip in Symbol 517 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 517 MovieClip Frame 3
stop();
Symbol 517 MovieClip Frame 4
stop();
Symbol 517 MovieClip Frame 5
stop();
Symbol 517 MovieClip Frame 6
stop();
Instance of Symbol 480 MovieClip in Symbol 517 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 534 MovieClip Frame 1
stop();
Symbol 534 MovieClip Frame 2
stop();
Symbol 534 MovieClip Frame 3
stop();
Symbol 534 MovieClip Frame 4
stop();
Symbol 534 MovieClip Frame 5
stop();
Symbol 534 MovieClip Frame 6
stop();
Symbol 534 MovieClip Frame 7
stop();
Symbol 534 MovieClip Frame 8
stop();
Symbol 534 MovieClip Frame 9
stop();
Symbol 534 MovieClip Frame 10
stop();
Symbol 534 MovieClip Frame 11
stop();
Symbol 534 MovieClip Frame 12
stop();
Symbol 534 MovieClip Frame 13
stop();
Symbol 534 MovieClip Frame 14
stop();
Symbol 534 MovieClip Frame 15
stop();
Symbol 539 MovieClip Frame 28
stop();
Symbol 547 MovieClip Frame 1
stop();
Symbol 547 MovieClip Frame 8
stop();
Instance of Symbol 475 MovieClip in Symbol 549 MovieClip Frame 1
onClipEvent (enterFrame) { _root.crashMan._alpha = Math.random() * 100; }
Instance of Symbol 475 MovieClip in Symbol 549 MovieClip Frame 9
onClipEvent (enterFrame) { _root.crashMan._alpha = 100; }
Symbol 549 MovieClip Frame 13
_root.crashMan.attackOne = false; _root.crashMan.bossHit = false; _root.crashMan.attackTimer = 5; _root.crashMan.gotoAndStop(3);
Symbol 550 MovieClip Frame 1
stop();
Symbol 550 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip in Symbol 550 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 550 MovieClip Frame 3
stop();
Symbol 550 MovieClip Frame 4
stop();
Symbol 550 MovieClip Frame 5
stop();
Symbol 550 MovieClip Frame 6
stop();
Instance of Symbol 480 MovieClip in Symbol 550 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 561 MovieClip Frame 1
stop();
Symbol 561 MovieClip Frame 2
stop();
Symbol 561 MovieClip Frame 3
stop();
Symbol 561 MovieClip Frame 4
stop();
Symbol 561 MovieClip Frame 5
stop();
Symbol 561 MovieClip Frame 6
stop();
Symbol 561 MovieClip Frame 7
stop();
Symbol 561 MovieClip Frame 8
stop();
Symbol 561 MovieClip Frame 9
stop();
Symbol 561 MovieClip Frame 10
stop();
Instance of Symbol 106 MovieClip in Symbol 565 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 565 MovieClip Frame 53
stop();
Symbol 566 MovieClip Frame 1
stop();
Symbol 566 MovieClip Frame 2
stop();
Symbol 572 MovieClip Frame 25
_root.heatMan.play();
Symbol 575 MovieClip Frame 8
_root.parentShot.duplicateMovieClip("fireBlast" + _root.heatMan.fireCounter, 30 + _root.heatMan.fireCounter);
Symbol 575 MovieClip Frame 14
_root.heatMan.attackOne = false; _root.heatMan.attackTimer = 50; _root.heatMan.gotoAndStop(2);
Instance of Symbol 475 MovieClip in Symbol 576 MovieClip Frame 1
onClipEvent (enterFrame) { _root.heatMan._alpha = Math.random() * 100; }
Instance of Symbol 475 MovieClip in Symbol 576 MovieClip Frame 9
onClipEvent (enterFrame) { _root.heatMan._alpha = 100; }
Instance of Symbol 475 MovieClip in Symbol 576 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 576 MovieClip Frame 55
_root.heatMan.play(); _root.heatMan.marioPos = _root.mario._x;
Symbol 580 MovieClip Frame 7
gotoAndPlay (1);
Symbol 581 MovieClip Frame 1
stop();
Symbol 581 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip in Symbol 581 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 581 MovieClip Frame 3
stop();
Symbol 581 MovieClip Frame 4
stop();
Symbol 581 MovieClip Frame 5
stop();
Instance of Symbol 580 MovieClip in Symbol 581 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 581 MovieClip Frame 6
stop();
Instance of Symbol 480 MovieClip in Symbol 581 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 592 MovieClip Frame 1
stop();
Symbol 592 MovieClip Frame 2
stop();
Symbol 592 MovieClip Frame 3
stop();
Symbol 592 MovieClip Frame 4
stop();
Symbol 592 MovieClip Frame 5
stop();
Symbol 592 MovieClip Frame 6
stop();
Symbol 592 MovieClip Frame 7
stop();
Symbol 592 MovieClip Frame 8
stop();
Symbol 592 MovieClip Frame 9
stop();
Symbol 592 MovieClip Frame 10
stop();
Symbol 597 MovieClip Frame 1
stop();
Symbol 597 MovieClip Frame 2
stop();
Symbol 599 MovieClip Frame 28
stop();
Symbol 605 MovieClip Frame 1
stop();
Symbol 605 MovieClip Frame 6
_root.parentShotOne.duplicateMovieClip("pharaohShot", 30);
Symbol 605 MovieClip Frame 12
stop();
Symbol 612 MovieClip Frame 22
_root.parentShotTwo.duplicateMovieClip("pharaohBlast", 30);
Symbol 612 MovieClip Frame 25
_root.pharaohMan.attackTwo = false; _root.pharaohMan.attackTimer = 90; _root.pharaohMan.jumpTimer = 30;
Instance of Symbol 475 MovieClip in Symbol 613 MovieClip Frame 1
onClipEvent (enterFrame) { _root.pharaohMan._alpha = Math.random() * 100; }
Instance of Symbol 475 MovieClip in Symbol 613 MovieClip Frame 9
onClipEvent (enterFrame) { _root.pharaohMan._alpha = 100; }
Symbol 613 MovieClip Frame 13
_root.pharaohMan.attackOne = false; _root.pharaohMan.attackTwo = false; _root.pharaohMan.bossHit = false; _root.pharaohMan.attackTimer = 5; _root.pharaohMan.gotoAndStop(2);
Symbol 614 MovieClip Frame 1
stop();
Symbol 614 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip in Symbol 614 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 614 MovieClip Frame 3
stop();
Instance of Symbol 106 MovieClip in Symbol 614 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 614 MovieClip Frame 4
stop();
Symbol 614 MovieClip Frame 5
stop();
Symbol 614 MovieClip Frame 6
stop();
Symbol 614 MovieClip Frame 7
stop();
Instance of Symbol 480 MovieClip in Symbol 614 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 625 MovieClip Frame 1
stop();
Symbol 625 MovieClip Frame 2
stop();
Symbol 625 MovieClip Frame 3
stop();
Symbol 625 MovieClip Frame 4
stop();
Symbol 625 MovieClip Frame 5
stop();
Symbol 625 MovieClip Frame 6
stop();
Symbol 625 MovieClip Frame 7
stop();
Symbol 625 MovieClip Frame 8
stop();
Symbol 625 MovieClip Frame 9
stop();
Symbol 625 MovieClip Frame 10
stop();
Symbol 631 MovieClip Frame 28
stop();
Symbol 640 MovieClip Frame 17
_root.parentShot.duplicateMovieClip("sparkBomb", 30);
Symbol 640 MovieClip Frame 21
_root.sparkMan.attackOne = false; _root.sparkMan.attackTimer = 45; _root.sparkMan.jumpTimer = 30;
Instance of Symbol 475 MovieClip in Symbol 641 MovieClip Frame 1
onClipEvent (enterFrame) { _root.sparkMan._alpha = Math.random() * 100; }
Instance of Symbol 475 MovieClip in Symbol 641 MovieClip Frame 9
onClipEvent (enterFrame) { _root.sparkMan._alpha = 100; }
Symbol 641 MovieClip Frame 13
_root.sparkMan.attackOne = false; _root.sparkMan.bossHit = false; _root.sparkMan.attackTimer = 5; _root.sparkMan.gotoAndStop(2);
Symbol 642 MovieClip Frame 1
stop();
Symbol 642 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip in Symbol 642 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 642 MovieClip Frame 3
stop();
Symbol 642 MovieClip Frame 4
stop();
Instance of Symbol 106 MovieClip in Symbol 642 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 642 MovieClip Frame 5
stop();
Symbol 642 MovieClip Frame 6
stop();
Instance of Symbol 480 MovieClip in Symbol 642 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 658 MovieClip Frame 1
stop();
Symbol 658 MovieClip Frame 2
stop();
Symbol 658 MovieClip Frame 3
stop();
Symbol 658 MovieClip Frame 4
stop();
Symbol 658 MovieClip Frame 5
stop();
Symbol 658 MovieClip Frame 6
stop();
Symbol 658 MovieClip Frame 7
stop();
Symbol 658 MovieClip Frame 8
stop();
Symbol 658 MovieClip Frame 9
stop();
Symbol 658 MovieClip Frame 10
stop();
Symbol 658 MovieClip Frame 11
stop();
Symbol 658 MovieClip Frame 12
stop();
Symbol 658 MovieClip Frame 13
stop();
Symbol 658 MovieClip Frame 14
stop();
Symbol 658 MovieClip Frame 15
stop();
Symbol 665 MovieClip Frame 28
stop();
Symbol 671 MovieClip Frame 13
_root.parentShot.duplicateMovieClip("dustBomb", 30);
Symbol 671 MovieClip Frame 17
_root.dustMan.attackOne = false; _root.dustMan.attackTimer = 90; _root.dustMan.jumpTimer = 30;
Symbol 676 MovieClip Frame 63
_root.dustMan.attackTwo = false; _root.dustMan.attackTimer = 90; _root.dustMan.jumpTimer = 30;
Instance of Symbol 475 MovieClip in Symbol 677 MovieClip Frame 1
onClipEvent (enterFrame) { _root.dustMan._alpha = Math.random() * 100; }
Instance of Symbol 475 MovieClip in Symbol 677 MovieClip Frame 9
onClipEvent (enterFrame) { _root.dustMan._alpha = 100; }
Symbol 677 MovieClip Frame 13
_root.dustMan.attackOne = false; _root.dustMan.attackTwo = false; _root.dustMan.bossHit = false; _root.dustMan.attackTimer = 5; _root.dustMan.gotoAndStop(2);
Symbol 678 MovieClip Frame 1
stop();
Symbol 678 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip in Symbol 678 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 678 MovieClip Frame 3
stop();
Instance of Symbol 106 MovieClip in Symbol 678 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 678 MovieClip Frame 4
stop();
Instance of Symbol 106 MovieClip in Symbol 678 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 678 MovieClip Frame 5
stop();
Instance of Symbol 106 MovieClip in Symbol 678 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 678 MovieClip Frame 6
stop();
Symbol 678 MovieClip Frame 7
stop();
Instance of Symbol 480 MovieClip in Symbol 678 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 694 MovieClip Frame 1
stop();
Symbol 694 MovieClip Frame 2
stop();
Symbol 694 MovieClip Frame 3
stop();
Symbol 694 MovieClip Frame 4
stop();
Symbol 694 MovieClip Frame 5
stop();
Symbol 694 MovieClip Frame 6
stop();
Symbol 694 MovieClip Frame 7
stop();
Symbol 694 MovieClip Frame 8
stop();
Symbol 694 MovieClip Frame 9
stop();
Symbol 694 MovieClip Frame 10
stop();
Symbol 694 MovieClip Frame 11
stop();
Symbol 694 MovieClip Frame 12
stop();
Symbol 694 MovieClip Frame 13
stop();
Symbol 694 MovieClip Frame 14
stop();
Symbol 694 MovieClip Frame 15
stop();
Symbol 705 MovieClip Frame 1
stop();
Instance of Symbol 696 MovieClip in Symbol 705 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 705 MovieClip Frame 2
stop();
Instance of Symbol 698 MovieClip in Symbol 705 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 700 MovieClip in Symbol 705 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 702 MovieClip in Symbol 705 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 704 MovieClip in Symbol 705 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 708 MovieClip Frame 28
stop();
Symbol 718 MovieClip Frame 11
_root.mario.flashFreeze = true;
Symbol 718 MovieClip Frame 15
_root.parentShot.duplicateMovieClip("flashShot", 30);
Symbol 718 MovieClip Frame 70
_root.flashMan.attackTwo = false; _root.flashMan.attackTimer = 50; _root.mario.flashFreeze = false;
Instance of Symbol 475 MovieClip in Symbol 719 MovieClip Frame 1
onClipEvent (enterFrame) { _root.flashMan._alpha = Math.random() * 100; }
Instance of Symbol 475 MovieClip in Symbol 719 MovieClip Frame 9
onClipEvent (enterFrame) { _root.flashMan._alpha = 100; }
Symbol 719 MovieClip Frame 13
_root.flashMan.attackOne = false; _root.flashMan.attackTwo = false; _root.flashMan.bossHit = false; _root.flashMan.attackTimer = 5; _root.flashMan.gotoAndStop(2);
Symbol 720 MovieClip Frame 1
stop();
Symbol 720 MovieClip Frame 2
stop();
Instance of Symbol 106 MovieClip in Symbol 720 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 720 MovieClip Frame 3
stop();
Symbol 720 MovieClip Frame 4
stop();
Instance of Symbol 106 MovieClip in Symbol 720 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 720 MovieClip Frame 5
stop();
Symbol 720 MovieClip Frame 6
stop();
Symbol 720 MovieClip Frame 7
stop();
Instance of Symbol 480 MovieClip in Symbol 720 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 736 MovieClip Frame 1
stop();
Symbol 736 MovieClip Frame 2
stop();
Symbol 736 MovieClip Frame 3
stop();
Symbol 736 MovieClip Frame 4
stop();
Symbol 736 MovieClip Frame 5
stop();
Symbol 736 MovieClip Frame 6
stop();
Symbol 736 MovieClip Frame 7
stop();
Symbol 736 MovieClip Frame 8
stop();
Symbol 736 MovieClip Frame 9
stop();
Symbol 736 MovieClip Frame 10
stop();
Symbol 736 MovieClip Frame 11
stop();
Symbol 736 MovieClip Frame 12
stop();
Symbol 736 MovieClip Frame 13
stop();
Symbol 736 MovieClip Frame 14
stop();
Symbol 736 MovieClip Frame 15
stop();
Instance of Symbol 738 MovieClip in Symbol 739 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 738 MovieClip in Symbol 739 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 738 MovieClip in Symbol 739 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 738 MovieClip in Symbol 739 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 738 MovieClip in Symbol 739 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 739 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:45
Symbol 32 BitmapUsed by:33
Symbol 33 GraphicUses:32Used by:34
Symbol 34 MovieClipUses:33Used by:45
Symbol 35 BitmapUsed by:36
Symbol 36 GraphicUses:35Used by:37 40
Symbol 37 MovieClipUses:36Used by:45
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:38Used by:40
Symbol 40 MovieClipUses:39 36Used by:45
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:43
Symbol 43 MovieClipUses:42Used by:45
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:31 34 37 40 43 44Used by:Timeline
Symbol 46 GraphicUsed by:Timeline
Symbol 47 GraphicUsed by:Timeline
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:48Used by:Timeline
Symbol 50 GraphicUsed by:Timeline
Symbol 51 GraphicUsed by:52 53
Symbol 52 ButtonUses:51Used by:Timeline
Symbol 53 ButtonUses:51Used by:Timeline
Symbol 54 GraphicUsed by:Timeline
Symbol 55 GraphicUsed by:58 60 184 215 357 696  Timeline
Symbol 56 FontUsed by:57 59 62 63 65 67 71 72 73 81 159 162
Symbol 57 TextUses:56Used by:58
Symbol 58 ButtonUses:55 57Used by:Timeline
Symbol 59 TextUses:56Used by:60
Symbol 60 ButtonUses:55 59Used by:Timeline
Symbol 61 GraphicUsed by:Timeline
Symbol 62 TextUses:56Used by:Timeline
Symbol 63 TextUses:56Used by:Timeline
Symbol 64 GraphicUsed by:Timeline
Symbol 65 TextUses:56Used by:Timeline
Symbol 66 GraphicUsed by:68 158 160 249 352
Symbol 67 TextUses:56Used by:68 158 352
Symbol 68 ButtonUses:66 67Used by:Timeline
Symbol 69 GraphicUsed by:Timeline
Symbol 70 GraphicUsed by:Timeline
Symbol 71 TextUses:56Used by:Timeline
Symbol 72 TextUses:56Used by:Timeline
Symbol 73 TextUses:56Used by:Timeline
Symbol 74 GraphicUsed by:Timeline
Symbol 75 GraphicUsed by:76
Symbol 76 ButtonUses:75Used by:Timeline
Symbol 77 GraphicUsed by:78
Symbol 78 ButtonUses:77Used by:Timeline
Symbol 79 GraphicUsed by:80
Symbol 80 ButtonUses:79Used by:Timeline
Symbol 81 TextUses:56Used by:Timeline
Symbol 82 GraphicUsed by:Timeline
Symbol 83 GraphicUsed by:Timeline
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:84Used by:Timeline
Symbol 86 GraphicUsed by:134 171 173
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:87Used by:134 171 173 197 202
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:91
Symbol 91 MovieClipUses:90Used by:134 171 173 197 202  Timeline
Symbol 92 GraphicUsed by:96
Symbol 93 GraphicUsed by:96
Symbol 94 GraphicUsed by:96
Symbol 95 GraphicUsed by:96
Symbol 96 MovieClipUses:92 93 94 95Used by:97
Symbol 97 MovieClipUses:96Used by:134
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100 101
Symbol 100 MovieClipUses:99Used by:134 196 197 202  Timeline
Symbol 101 MovieClipUses:99Used by:134 196 197 202  Timeline
Symbol 102 GraphicUsed by:104 107
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:102 103Used by:108
Symbol 105 GraphicUsed by:106 136
Symbol 106 MovieClipUses:105Used by:108 113 126 127 157 186 189 217 481 514 517 550 565 581 614 642 678 720
Symbol 107 MovieClipUses:102Used by:108
Symbol 108 MovieClipUses:104 106 107Used by:134
Symbol 109 GraphicUsed by:111 112
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:109 110Used by:113
Symbol 112 MovieClipUses:109Used by:113
Symbol 113 MovieClipUses:111 106 112Used by:134
Symbol 114 GraphicUsed by:116
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClipUses:114 115Used by:127
Symbol 117 GraphicUsed by:118 121
Symbol 118 MovieClipUses:117Used by:127
Symbol 119 GraphicUsed by:121
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:117 119 120Used by:127
Symbol 122 GraphicUsed by:126
Symbol 123 GraphicUsed by:126
Symbol 124 GraphicUsed by:126
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClipUses:122 123 124 125 106Used by:127
Symbol 127 MovieClipUses:116 106 118 121 126Used by:134  Timeline
Symbol 128 GraphicUsed by:134
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClipUses:129Used by:134
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:131Used by:134 171 202  Timeline
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClipUses:86 88 91 97 100 101 108 113 127 128 130 132 133Used by:Timeline
Symbol 135 GraphicUsed by:139 157
Symbol 136 MovieClipUses:105Used by:157
Symbol 137 GraphicUsed by:139
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:137 138 135Used by:157
Symbol 140 GraphicUsed by:143
Symbol 141 GraphicUsed by:143
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClipUses:140 141 142Used by:157
Symbol 144 GraphicUsed by:145
Symbol 145 MovieClipUses:144Used by:157
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:157
Symbol 148 GraphicUsed by:157
Symbol 149 GraphicUsed by:157
Symbol 150 GraphicUsed by:152 157
Symbol 151 GraphicUsed by:152
Symbol 152 MovieClipUses:151 150Used by:157
Symbol 153 GraphicUsed by:157
Symbol 154 GraphicUsed by:157
Symbol 155 GraphicUsed by:157
Symbol 156 GraphicUsed by:157
Symbol 157 MovieClipUses:135 136 106 139 143 145 147 148 149 150 152 153 154 155 156Used by:Timeline
Symbol 158 ButtonUses:66 67Used by:Timeline
Symbol 159 TextUses:56Used by:160 249
Symbol 160 ButtonUses:66 159Used by:Timeline
Symbol 161 GraphicUsed by:163
Symbol 162 TextUses:56Used by:163
Symbol 163 ButtonUses:161 162Used by:Timeline
Symbol 164 GraphicUsed by:Timeline
Symbol 165 GraphicUsed by:171
Symbol 166 GraphicUsed by:168
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:166 167Used by:169
Symbol 169 MovieClipUses:168Used by:171 173
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:86 88 165 169 170 91 132Used by:Timeline
Symbol 172 GraphicUsed by:173
Symbol 173 MovieClipUses:86 88 172 169 91Used by:Timeline
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:174Used by:176
Symbol 176 MovieClipUses:175Used by:Timeline
Symbol 177 GraphicUsed by:Timeline
Symbol 178 GraphicUsed by:197
Symbol 179 GraphicUsed by:181
Symbol 180 GraphicUsed by:181
Symbol 181 MovieClipUses:179 180Used by:189
Symbol 182 GraphicUsed by:186
Symbol 183 GraphicUsed by:186
Symbol 184 MovieClipUses:55Used by:186
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClipUses:182 106 183 184 185Used by:189
Symbol 187 GraphicUsed by:188
Symbol 188 MovieClipUses:187Used by:189
Symbol 189 MovieClipUses:181 106 186 188Used by:197 202
Symbol 190 GraphicUsed by:197
Symbol 191 GraphicUsed by:197
Symbol 192 GraphicUsed by:196
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:193Used by:195
Symbol 195 MovieClipUses:194Used by:196
Symbol 196 MovieClipUses:192 195 101 100Used by:197 202
Symbol 197 MovieClipUses:88 178 189 190 191 196 91 101 100Used by:Timeline
Symbol 198 GraphicUsed by:202
Symbol 199 GraphicUsed by:202
Symbol 200 GraphicUsed by:202
Symbol 201 GraphicUsed by:202
Symbol 202 MovieClipUses:88 198 91 199 196 189 101 100 200 201 132Used by:Timeline
Symbol 203 BitmapUsed by:204
Symbol 204 GraphicUses:203Used by:Timeline
Symbol 205 GraphicUsed by:Timeline
Symbol 206 GraphicUsed by:Timeline
Symbol 207 GraphicUsed by:Timeline
Symbol 208 GraphicUsed by:217
Symbol 209 GraphicUsed by:211 216
Symbol 210 GraphicUsed by:211 216
Symbol 211 MovieClipUses:209 210Used by:217
Symbol 212 GraphicUsed by:214
Symbol 213 GraphicUsed by:214
Symbol 214 MovieClipUses:212 213Used by:217
Symbol 215 MovieClipUses:55Used by:217
Symbol 216 MovieClipUses:209 210Used by:217
Symbol 217 MovieClipUses:208 211 106 214 215 216Used by:Timeline
Symbol 218 GraphicUsed by:221
Symbol 219 GraphicUsed by:221
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:218 219 220Used by:222
Symbol 222 MovieClipUses:221Used by:Timeline
Symbol 223 GraphicUsed by:Timeline
Symbol 224 GraphicUsed by:225 248
Symbol 225 MovieClipUses:224Used by:Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 GraphicUsed by:228
Symbol 228 MovieClipUses:227Used by:Timeline
Symbol 229 GraphicUsed by:243
Symbol 230 GraphicUsed by:234
Symbol 231 GraphicUsed by:234
Symbol 232 GraphicUsed by:234
Symbol 233 GraphicUsed by:234
Symbol 234 MovieClipUses:230 231 232 233Used by:242
Symbol 235 GraphicUsed by:241
Symbol 236 GraphicUsed by:241
Symbol 237 GraphicUsed by:241
Symbol 238 GraphicUsed by:241
Symbol 239 GraphicUsed by:241
Symbol 240 GraphicUsed by:241
Symbol 241 MovieClipUses:235 236 237 238 239 240Used by:242 247 257 264 284 288 291 294 324 565
Symbol 242 MovieClipUses:234 241Used by:243 251 258 268 270 274
Symbol 243 MovieClipUses:229 242Used by:Timeline
Symbol 244 GraphicUsed by:247
Symbol 245 GraphicUsed by:247
Symbol 246 GraphicUsed by:247
Symbol 247 MovieClipUses:244 245 246 241Used by:Timeline
Symbol 248 MovieClipUses:224Used by:Timeline
Symbol 249 ButtonUses:66 159Used by:Timeline
Symbol 250 GraphicUsed by:251 258 265 266 267 268 295 296 299 315
Symbol 251 MovieClipUses:250 242Used by:Timeline
Symbol 252 GraphicUsed by:256
Symbol 253 GraphicUsed by:256
Symbol 254 GraphicUsed by:256
Symbol 255 GraphicUsed by:256
Symbol 256 MovieClipUses:252 253 254 255Used by:257
Symbol 257 MovieClipUses:256 241Used by:258 272 275
Symbol 258 MovieClipUses:250 257 242Used by:Timeline
Symbol 259 GraphicUsed by:263
Symbol 260 GraphicUsed by:263
Symbol 261 GraphicUsed by:263
Symbol 262 GraphicUsed by:263
Symbol 263 MovieClipUses:259 260 261 262Used by:264
Symbol 264 MovieClipUses:263 241Used by:265 266 267 272 275
Symbol 265 MovieClipUses:250 264Used by:Timeline
Symbol 266 MovieClipUses:250 264Used by:Timeline
Symbol 267 MovieClipUses:250 264Used by:Timeline
Symbol 268 MovieClipUses:250 242Used by:Timeline
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269 242Used by:Timeline
Symbol 271 GraphicUsed by:272 275
Symbol 272 MovieClipUses:271 257 264Used by:Timeline
Symbol 273 GraphicUsed by:274
Symbol 274 MovieClipUses:273 242Used by:Timeline
Symbol 275 MovieClipUses:271 257 264Used by:Timeline
Symbol 276 GraphicUsed by:285
Symbol 277 GraphicUsed by:283
Symbol 278 GraphicUsed by:283
Symbol 279 GraphicUsed by:283
Symbol 280 GraphicUsed by:283
Symbol 281 GraphicUsed by:283
Symbol 282 GraphicUsed by:283
Symbol 283 MovieClipUses:277 278 279 280 281 282Used by:284
Symbol 284 MovieClipUses:283 241Used by:285
Symbol 285 MovieClipUses:276 284Used by:Timeline
Symbol 286 GraphicUsed by:287
Symbol 287 MovieClipUses:286Used by:288
Symbol 288 MovieClipUses:287 241Used by:295 296
Symbol 289 GraphicUsed by:290
Symbol 290 MovieClipUses:289Used by:291
Symbol 291 MovieClipUses:290 241Used by:295 296
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:294
Symbol 294 MovieClipUses:293 241Used by:295 296
Symbol 295 MovieClipUses:250 288 291 294Used by:Timeline
Symbol 296 MovieClipUses:250 288 291 294Used by:Timeline
Symbol 297 GraphicUsed by:Timeline
Symbol 298 GraphicUsed by:301
Symbol 299 MovieClipUses:250Used by:300
Symbol 300 MovieClipUses:299Used by:301 303 305 307
Symbol 301 MovieClipUses:298 300Used by:Timeline
Symbol 302 GraphicUsed by:303
Symbol 303 MovieClipUses:302 300Used by:Timeline
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:304 300Used by:Timeline
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:306 300Used by:308
Symbol 308 MovieClipUses:307Used by:Timeline
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:309Used by:311
Symbol 311 MovieClipUses:310Used by:318 323 324 325
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:314
Symbol 314 MovieClipUses:313Used by:318 323 324 325
Symbol 315 MovieClipUses:250Used by:325
Symbol 316 GraphicUsed by:317
Symbol 317 MovieClipUses:316Used by:318
Symbol 318 MovieClipUses:311 314 317Used by:325
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:321
Symbol 321 MovieClipUses:320Used by:322
Symbol 322 MovieClipUses:321Used by:323
Symbol 323 MovieClipUses:322 311 314Used by:325
Symbol 324 MovieClipUses:311 314 241Used by:325
Symbol 325 MovieClipUses:311 314 315 318 323 324Used by:Timeline
Symbol 326 GraphicUsed by:Timeline
Symbol 327 GraphicUsed by:Timeline
Symbol 328 GraphicUsed by:334
Symbol 329 GraphicUsed by:334 336 338 340 342 344 346 348 350
Symbol 330 GraphicUsed by:334 336 338 340 342 344 346 348 350
Symbol 331 GraphicUsed by:333
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:331 332Used by:334 336 338 340 342 344 346 348 350
Symbol 334 MovieClipUses:328 329 330 333Used by:Timeline
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:335 329 330 333Used by:Timeline
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:337 329 330 333Used by:Timeline
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:339 329 330 333Used by:Timeline
Symbol 341 GraphicUsed by:342
Symbol 342 MovieClipUses:341 329 330 333Used by:Timeline
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:343 329 330 333Used by:Timeline
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:345 329 330 333Used by:Timeline
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:347 329 330 333Used by:Timeline
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349 329 330 333Used by:Timeline
Symbol 351 GraphicUsed by:Timeline
Symbol 352 ButtonUses:66 67Used by:Timeline
Symbol 353 GraphicUsed by:354 355
Symbol 354 MovieClipUses:353Used by:357
Symbol 355 MovieClipUses:353Used by:357
Symbol 356 GraphicUsed by:357
Symbol 357 MovieClipUses:55 354 355 356Used by:370  Timeline
Symbol 358 GraphicUsed by:369 464 476 481
Symbol 359 GraphicUsed by:369 464
Symbol 360 GraphicUsed by:369
Symbol 361 GraphicUsed by:369
Symbol 362 GraphicUsed by:369
Symbol 363 GraphicUsed by:369
Symbol 364 GraphicUsed by:369
Symbol 365 GraphicUsed by:369
Symbol 366 GraphicUsed by:369
Symbol 367 GraphicUsed by:369
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClipUses:358 359 360 361 362 363 364 365 366 367 368Used by:370
Symbol 370 MovieClipUses:357 369Used by:Timeline
Symbol 371 GraphicUsed by:385 572 576
Symbol 372 GraphicUsed by:385 572 576
Symbol 373 GraphicUsed by:385 576
Symbol 374 GraphicUsed by:385 576
Symbol 375 GraphicUsed by:385
Symbol 376 GraphicUsed by:385
Symbol 377 GraphicUsed by:385
Symbol 378 GraphicUsed by:385
Symbol 379 GraphicUsed by:385
Symbol 380 GraphicUsed by:385
Symbol 381 GraphicUsed by:385
Symbol 382 GraphicUsed by:385
Symbol 383 GraphicUsed by:385
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClipUses:371 372 373 374 375 376 377 378 379 380 381 382 383 384Used by:Timeline
Symbol 386 GraphicUsed by:397 539 549 550
Symbol 387 GraphicUsed by:397 539
Symbol 388 GraphicUsed by:397 539
Symbol 389 GraphicUsed by:397
Symbol 390 GraphicUsed by:397
Symbol 391 GraphicUsed by:397
Symbol 392 GraphicUsed by:397
Symbol 393 GraphicUsed by:397
Symbol 394 GraphicUsed by:397
Symbol 395 GraphicUsed by:397
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:386 387 388 389 390 391 392 393 394 395 396Used by:Timeline
Symbol 398 GraphicUsed by:409 502 506 516
Symbol 399 GraphicUsed by:409 502 506
Symbol 400 GraphicUsed by:409 502
Symbol 401 GraphicUsed by:409 446
Symbol 402 GraphicUsed by:409
Symbol 403 GraphicUsed by:409
Symbol 404 GraphicUsed by:409
Symbol 405 GraphicUsed by:409
Symbol 406 GraphicUsed by:409
Symbol 407 GraphicUsed by:409
Symbol 408 GraphicUsed by:409
Symbol 409 MovieClipUses:398 399 400 401 402 403 404 405 406 407 408Used by:Timeline
Symbol 410 GraphicUsed by:422 631
Symbol 411 GraphicUsed by:422 631
Symbol 412 GraphicUsed by:422 631 640
Symbol 413 GraphicUsed by:422 631 633
Symbol 414 GraphicUsed by:422
Symbol 415 GraphicUsed by:422
Symbol 416 GraphicUsed by:422
Symbol 417 GraphicUsed by:422
Symbol 418 GraphicUsed by:422
Symbol 419 GraphicUsed by:422
Symbol 420 GraphicUsed by:422
Symbol 421 GraphicUsed by:422
Symbol 422 MovieClipUses:410 411 412 413 414 415 416 417 418 419 420 421Used by:Timeline
Symbol 423 GraphicUsed by:436 599 614
Symbol 424 GraphicUsed by:436 599 612 613
Symbol 425 GraphicUsed by:436 599
Symbol 426 GraphicUsed by:436
Symbol 427 GraphicUsed by:436
Symbol 428 GraphicUsed by:436
Symbol 429 GraphicUsed by:436
Symbol 430 GraphicUsed by:436
Symbol 431 GraphicUsed by:436
Symbol 432 GraphicUsed by:436
Symbol 433 GraphicUsed by:436
Symbol 434 GraphicUsed by:436
Symbol 435 GraphicUsed by:436
Symbol 436 MovieClipUses:423 424 425 426 427 428 429 430 431 432 433 434 435Used by:Timeline
Symbol 437 GraphicUsed by:446 665 676 678
Symbol 438 GraphicUsed by:446 665 677
Symbol 439 GraphicUsed by:446 665 676
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:437 438 439 401 440 441 442 443 444 445Used by:Timeline
Symbol 447 GraphicUsed by:458 708 720
Symbol 448 GraphicUsed by:458 708
Symbol 449 GraphicUsed by:458
Symbol 450 GraphicUsed by:458
Symbol 451 GraphicUsed by:458
Symbol 452 GraphicUsed by:458
Symbol 453 GraphicUsed by:458
Symbol 454 GraphicUsed by:458
Symbol 455 GraphicUsed by:458
Symbol 456 GraphicUsed by:458
Symbol 457 GraphicUsed by:458
Symbol 458 MovieClipUses:447 448 449 450 451 452 453 454 455 456 457Used by:Timeline
Symbol 459 GraphicUsed by:461
Symbol 460 GraphicUsed by:461
Symbol 461 MovieClipUses:459 460Used by:Timeline
Symbol 462 GraphicUsed by:Timeline
Symbol 463 GraphicUsed by:464
Symbol 464 MovieClipUses:358 359 463Used by:481
Symbol 465 GraphicUsed by:468
Symbol 466 GraphicUsed by:468
Symbol 467 GraphicUsed by:468
Symbol 468 MovieClipUses:465 466 467Used by:481
Symbol 469 GraphicUsed by:472
Symbol 470 GraphicUsed by:472
Symbol 471 GraphicUsed by:472
Symbol 472 MovieClipUses:469 470 471Used by:481
Symbol 473 GraphicUsed by:476
Symbol 474 GraphicUsed by:475
Symbol 475 MovieClipUses:474Used by:476 516 549 576 613 641 677 719
Symbol 476 MovieClipUses:473 475 358Used by:481
Symbol 477 GraphicUsed by:479
Symbol 478 GraphicUsed by:479
Symbol 479 MovieClipUses:477 478Used by:480
Symbol 480 MovieClipUses:479Used by:481 517 550 581 614 642 678 720
Symbol 481 MovieClipUses:464 358 468 106 472 476 480Used by:Timeline
Symbol 482 GraphicUsed by:497
Symbol 483 GraphicUsed by:497
Symbol 484 GraphicUsed by:497
Symbol 485 GraphicUsed by:497
Symbol 486 GraphicUsed by:497
Symbol 487 GraphicUsed by:497
Symbol 488 GraphicUsed by:497
Symbol 489 GraphicUsed by:497
Symbol 490 GraphicUsed by:497
Symbol 491 GraphicUsed by:497
Symbol 492 GraphicUsed by:497
Symbol 493 GraphicUsed by:497
Symbol 494 GraphicUsed by:497
Symbol 495 GraphicUsed by:497
Symbol 496 GraphicUsed by:497
Symbol 497 MovieClipUses:482 483 484 485 486 487 488 489 490 491 492 493 494 495 496Used by:Timeline
Symbol 498 GraphicUsed by:500
Symbol 499 GraphicUsed by:500
Symbol 500 MovieClipUses:498 499Used by:Timeline
Symbol 501 GraphicUsed by:Timeline
Symbol 502 MovieClipUses:398 399 400Used by:517
Symbol 503 GraphicUsed by:505
Symbol 504 GraphicUsed by:505
Symbol 505 MovieClipUses:503 504Used by:517
Symbol 506 MovieClipUses:398 399Used by:517
Symbol 507 GraphicUsed by:514
Symbol 508 GraphicUsed by:514
Symbol 509 GraphicUsed by:514
Symbol 510 GraphicUsed by:514
Symbol 511 GraphicUsed by:514
Symbol 512 GraphicUsed by:514
Symbol 513 GraphicUsed by:514
Symbol 514 MovieClipUses:507 106 508 509 510 511 512 513Used by:517
Symbol 515 GraphicUsed by:516
Symbol 516 MovieClipUses:515 475 398Used by:517
Symbol 517 MovieClipUses:502 505 106 506 514 516 480Used by:Timeline
Symbol 518 GraphicUsed by:Timeline
Symbol 519 GraphicUsed by:534
Symbol 520 GraphicUsed by:534
Symbol 521 GraphicUsed by:534
Symbol 522 GraphicUsed by:534
Symbol 523 GraphicUsed by:534
Symbol 524 GraphicUsed by:534
Symbol 525 GraphicUsed by:534
Symbol 526 GraphicUsed by:534
Symbol 527 GraphicUsed by:534
Symbol 528 GraphicUsed by:534
Symbol 529 GraphicUsed by:534
Symbol 530 GraphicUsed by:534
Symbol 531 GraphicUsed by:534
Symbol 532 GraphicUsed by:534
Symbol 533 GraphicUsed by:534
Symbol 534 MovieClipUses:519 520 521 522 523 524 525 526 527 528 529 530 531 532 533Used by:Timeline
Symbol 535 GraphicUsed by:537
Symbol 536 GraphicUsed by:537
Symbol 537 MovieClipUses:535 536Used by:Timeline
Symbol 538 GraphicUsed by:Timeline
Symbol 539 MovieClipUses:386 387 388Used by:550
Symbol 540 GraphicUsed by:543
Symbol 541 GraphicUsed by:543
Symbol 542 GraphicUsed by:543
Symbol 543 MovieClipUses:540 541 542Used by:550
Symbol 544 GraphicUsed by:547
Symbol 545 GraphicUsed by:547
Symbol 546 GraphicUsed by:547
Symbol 547 MovieClipUses:544 545 546Used by:550
Symbol 548 GraphicUsed by:549
Symbol 549 MovieClipUses:548 475 386Used by:550
Symbol 550 MovieClipUses:539 386 106 543 547 549 480Used by:Timeline
Symbol 551 GraphicUsed by:561
Symbol 552 GraphicUsed by:561
Symbol 553 GraphicUsed by:561
Symbol 554 GraphicUsed by:561
Symbol 555 GraphicUsed by:561
Symbol 556 GraphicUsed by:561
Symbol 557 GraphicUsed by:561
Symbol 558 GraphicUsed by:561
Symbol 559 GraphicUsed by:561
Symbol 560 GraphicUsed by:561
Symbol 561 MovieClipUses:551 552 553 554 555 556 557 558 559 560Used by:Timeline
Symbol 562 GraphicUsed by:566
Symbol 563 GraphicUsed by:565
Symbol 564 GraphicUsed by:565
Symbol 565 MovieClipUses:563 564 241 106Used by:566
Symbol 566 MovieClipUses:562 565Used by:Timeline
Symbol 567 GraphicUsed by:569
Symbol 568 GraphicUsed by:569
Symbol 569 MovieClipUses:567 568Used by:Timeline
Symbol 570 GraphicUsed by:Timeline
Symbol 571 GraphicUsed by:572 575 581
Symbol 572 MovieClipUses:371 372 571Used by:581
Symbol 573 GraphicUsed by:575
Symbol 574 GraphicUsed by:575
Symbol 575 MovieClipUses:571 573 574Used by:581
Symbol 576 MovieClipUses:371 475 372 373 374Used by:581
Symbol 577 GraphicUsed by:580
Symbol 578 GraphicUsed by:580
Symbol 579 GraphicUsed by:580
Symbol 580 MovieClipUses:577 578 579Used by:581
Symbol 581 MovieClipUses:572 571 106 575 576 580 480Used by:Timeline
Symbol 582 GraphicUsed by:592
Symbol 583 GraphicUsed by:592
Symbol 584 GraphicUsed by:592
Symbol 585 GraphicUsed by:592
Symbol 586 GraphicUsed by:592
Symbol 587 GraphicUsed by:592
Symbol 588 GraphicUsed by:592
Symbol 589 GraphicUsed by:592
Symbol 590 GraphicUsed by:592
Symbol 591 GraphicUsed by:592
Symbol 592 MovieClipUses:582 583 584 585 586 587 588 589 590 591Used by:Timeline
Symbol 593 GraphicUsed by:596 597
Symbol 594 GraphicUsed by:596
Symbol 595 GraphicUsed by:596
Symbol 596 MovieClipUses:593 594 595Used by:597
Symbol 597 MovieClipUses:593 596Used by:Timeline
Symbol 598 GraphicUsed by:Timeline
Symbol 599 MovieClipUses:423 424 425Used by:614
Symbol 600 GraphicUsed by:601 605
Symbol 601 MovieClipUses:600Used by:614
Symbol 602 GraphicUsed by:605
Symbol 603 GraphicUsed by:605
Symbol 604 GraphicUsed by:605
Symbol 605 MovieClipUses:600 602 603 604Used by:614
Symbol 606 GraphicUsed by:612
Symbol 607 GraphicUsed by:612
Symbol 608 GraphicUsed by:612
Symbol 609 GraphicUsed by:612
Symbol 610 GraphicUsed by:612
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClipUses:606 607 608 609 610 611 424Used by:614
Symbol 613 MovieClipUses:424 475Used by:614
Symbol 614 MovieClipUses:599 423 106 601 605 612 613 480Used by:Timeline
Symbol 615 GraphicUsed by:625
Symbol 616 GraphicUsed by:625
Symbol 617 GraphicUsed by:625
Symbol 618 GraphicUsed by:625
Symbol 619 GraphicUsed by:625
Symbol 620 GraphicUsed by:625
Symbol 621 GraphicUsed by:625
Symbol 622 GraphicUsed by:625
Symbol 623 GraphicUsed by:625
Symbol 624 GraphicUsed by:625
Symbol 625 MovieClipUses:615 616 617 618 619 620 621 622 623 624Used by:Timeline
Symbol 626 GraphicUsed by:627
Symbol 627 MovieClipUses:626Used by:Timeline
Symbol 628 GraphicUsed by:629
Symbol 629 MovieClipUses:628Used by:Timeline
Symbol 630 GraphicUsed by:Timeline
Symbol 631 MovieClipUses:410 411 412 413Used by:642
Symbol 632 GraphicUsed by:633
Symbol 633 MovieClipUses:413 632Used by:642
Symbol 634 GraphicUsed by:635
Symbol 635 MovieClipUses:634Used by:642
Symbol 636 GraphicUsed by:640
Symbol 637 GraphicUsed by:640
Symbol 638 GraphicUsed by:640
Symbol 639 GraphicUsed by:640 641
Symbol 640 MovieClipUses:412 636 637 638 639Used by:642
Symbol 641 MovieClipUses:639 475Used by:642
Symbol 642 MovieClipUses:631 633 106 635 640 641 480Used by:Timeline
Symbol 643 GraphicUsed by:658
Symbol 644 GraphicUsed by:658
Symbol 645 GraphicUsed by:658
Symbol 646 GraphicUsed by:658
Symbol 647 GraphicUsed by:658
Symbol 648 GraphicUsed by:658
Symbol 649 GraphicUsed by:658
Symbol 650 GraphicUsed by:658
Symbol 651 GraphicUsed by:658
Symbol 652 GraphicUsed by:658
Symbol 653 GraphicUsed by:658
Symbol 654 GraphicUsed by:658
Symbol 655 GraphicUsed by:658
Symbol 656 GraphicUsed by:658
Symbol 657 GraphicUsed by:658
Symbol 658 MovieClipUses:643 644 645 646 647 648 649 650 651 652 653 654 655 656 657Used by:Timeline
Symbol 659 GraphicUsed by:663
Symbol 660 GraphicUsed by:663
Symbol 661 GraphicUsed by:663
Symbol 662 GraphicUsed by:663
Symbol 663 MovieClipUses:659 660 661 662Used by:Timeline
Symbol 664 GraphicUsed by:Timeline
Symbol 665 MovieClipUses:437 438 439Used by:678
Symbol 666 GraphicUsed by:667
Symbol 667 MovieClipUses:666Used by:678
Symbol 668 GraphicUsed by:671
Symbol 669 GraphicUsed by:671
Symbol 670 GraphicUsed by:671
Symbol 671 MovieClipUses:668 669 670Used by:678
Symbol 672 GraphicUsed by:676
Symbol 673 GraphicUsed by:676
Symbol 674 GraphicUsed by:676
Symbol 675 GraphicUsed by:676
Symbol 676 MovieClipUses:437 439 672 673 674 675Used by:678
Symbol 677 MovieClipUses:438 475Used by:678
Symbol 678 MovieClipUses:665 437 106 667 671 676 677 480Used by:Timeline
Symbol 679 GraphicUsed by:694
Symbol 680 GraphicUsed by:694
Symbol 681 GraphicUsed by:694
Symbol 682 GraphicUsed by:694
Symbol 683 GraphicUsed by:694
Symbol 684 GraphicUsed by:694
Symbol 685 GraphicUsed by:694
Symbol 686 GraphicUsed by:694
Symbol 687 GraphicUsed by:694
Symbol 688 GraphicUsed by:694
Symbol 689 GraphicUsed by:694
Symbol 690 GraphicUsed by:694
Symbol 691 GraphicUsed by:694
Symbol 692 GraphicUsed by:694
Symbol 693 GraphicUsed by:694
Symbol 694 MovieClipUses:679 680 681 682 683 684 685 686 687 688 689 690 691 692 693Used by:Timeline
Symbol 695 GraphicUsed by:705
Symbol 696 MovieClipUses:55Used by:705
Symbol 697 GraphicUsed by:698
Symbol 698 MovieClipUses:697Used by:705
Symbol 699 GraphicUsed by:700
Symbol 700 MovieClipUses:699Used by:705
Symbol 701 GraphicUsed by:702
Symbol 702 MovieClipUses:701Used by:705
Symbol 703 GraphicUsed by:704
Symbol 704 MovieClipUses:703Used by:705
Symbol 705 MovieClipUses:695 696 698 700 702 704Used by:Timeline
Symbol 706 GraphicUsed by:Timeline
Symbol 707 GraphicUsed by:708 719
Symbol 708 MovieClipUses:447 448 707Used by:720
Symbol 709 GraphicUsed by:711
Symbol 710 GraphicUsed by:711
Symbol 711 MovieClipUses:709 710Used by:720
Symbol 712 GraphicUsed by:713
Symbol 713 MovieClipUses:712Used by:720
Symbol 714 GraphicUsed by:718
Symbol 715 GraphicUsed by:718
Symbol 716 GraphicUsed by:718
Symbol 717 GraphicUsed by:718
Symbol 718 MovieClipUses:714 715 716 717Used by:720
Symbol 719 MovieClipUses:707 475Used by:720
Symbol 720 MovieClipUses:708 447 106 711 713 718 719 480Used by:Timeline
Symbol 721 GraphicUsed by:736
Symbol 722 GraphicUsed by:736
Symbol 723 GraphicUsed by:736
Symbol 724 GraphicUsed by:736
Symbol 725 GraphicUsed by:736
Symbol 726 GraphicUsed by:736
Symbol 727 GraphicUsed by:736
Symbol 728 GraphicUsed by:736
Symbol 729 GraphicUsed by:736
Symbol 730 GraphicUsed by:736
Symbol 731 GraphicUsed by:736
Symbol 732 GraphicUsed by:736
Symbol 733 GraphicUsed by:736
Symbol 734 GraphicUsed by:736
Symbol 735 GraphicUsed by:736
Symbol 736 MovieClipUses:721 722 723 724 725 726 727 728 729 730 731 732 733 734 735Used by:Timeline
Symbol 737 GraphicUsed by:738
Symbol 738 MovieClipUses:737Used by:739
Symbol 739 MovieClipUses:738Used by:Timeline

Instance Names

"pl"Frame 1Symbol 45 MovieClip
"conCirc"Frame 432Symbol 85 MovieClip
"levelOne"Frame 432Symbol 134 MovieClip
"mario"Frame 432Symbol 157 MovieClip
"levelOne"Frame 458Symbol 171 MovieClip
"conCirc"Frame 458Symbol 85 MovieClip
"levelTwo"Frame 458Symbol 173 MovieClip
"mario"Frame 458Symbol 157 MovieClip
"levelTwo"Frame 484Symbol 197 MovieClip
"levelOne"Frame 484Symbol 202 MovieClip
"conCirc"Frame 484Symbol 85 MovieClip
"mario"Frame 484Symbol 157 MovieClip
"ground2"Frame 510Symbol 91 MovieClip
"ground3"Frame 510Symbol 91 MovieClip
"ground1"Frame 510Symbol 91 MovieClip
"enemy1"Frame 510Symbol 127 MovieClip
"conCirc"Frame 510Symbol 85 MovieClip
"mario"Frame 510Symbol 157 MovieClip
"lavaBoss"Frame 510Symbol 217 MovieClip
"fireTwo"Frame 510Symbol 225 MovieClip
"fireOne"Frame 510Symbol 225 MovieClip
"levelOne"Frame 536Symbol 243 MovieClip
"mario"Frame 536Symbol 247 MovieClip
"mFire"Frame 536Symbol 248 MovieClip
"levelOne"Frame 538Symbol 258 MovieClip
"levelTwo"Frame 539Symbol 265 MovieClip
"levelOne"Frame 544Symbol 272 MovieClip
"levelOne"Frame 546Symbol 275 MovieClip
"bossShip"Frame 555Symbol 325 MovieClip
"metalMan"Frame 590Symbol 481 MovieClip
"ground1"Frame 590Symbol 91 MovieClip
"conCirc"Frame 590Symbol 85 MovieClip
"metalLife"Frame 590Symbol 497 MovieClip
"parentShot"Frame 590Symbol 500 MovieClip
"mario"Frame 590Symbol 157 MovieClip
"drillMan"Frame 592Symbol 517 MovieClip
"ground1"Frame 592Symbol 91 MovieClip
"conCirc"Frame 592Symbol 85 MovieClip
"drillLife"Frame 592Symbol 534 MovieClip
"parentShot"Frame 592Symbol 537 MovieClip
"mario"Frame 592Symbol 157 MovieClip
"crashMan"Frame 594Symbol 550 MovieClip
"ground1"Frame 594Symbol 91 MovieClip
"conCirc"Frame 594Symbol 85 MovieClip
"crashLife"Frame 594Symbol 561 MovieClip
"parentShot"Frame 594Symbol 566 MovieClip
"mario"Frame 594Symbol 157 MovieClip
"heatMan"Frame 596Symbol 581 MovieClip
"ground1"Frame 596Symbol 91 MovieClip
"conCirc"Frame 596Symbol 85 MovieClip
"heatLife"Frame 596Symbol 592 MovieClip
"parentShot"Frame 596Symbol 597 MovieClip
"mario"Frame 596Symbol 157 MovieClip
"pharaohMan"Frame 598Symbol 614 MovieClip
"ground1"Frame 598Symbol 91 MovieClip
"conCirc"Frame 598Symbol 85 MovieClip
"pharaohLife"Frame 598Symbol 625 MovieClip
"parentShotOne"Frame 598Symbol 627 MovieClip
"parentShotTwo"Frame 598Symbol 629 MovieClip
"mario"Frame 598Symbol 157 MovieClip
"sparkMan"Frame 600Symbol 642 MovieClip
"ground1"Frame 600Symbol 91 MovieClip
"conCirc"Frame 600Symbol 85 MovieClip
"sparkLife"Frame 600Symbol 658 MovieClip
"parentShot"Frame 600Symbol 663 MovieClip
"mario"Frame 600Symbol 157 MovieClip
"dustMan"Frame 602Symbol 678 MovieClip
"ground1"Frame 602Symbol 91 MovieClip
"conCirc"Frame 602Symbol 85 MovieClip
"dustLife"Frame 602Symbol 694 MovieClip
"parentShot"Frame 602Symbol 705 MovieClip
"mario"Frame 602Symbol 157 MovieClip
"flashMan"Frame 604Symbol 720 MovieClip
"ground1"Frame 604Symbol 91 MovieClip
"conCirc"Frame 604Symbol 85 MovieClip
"flashLife"Frame 604Symbol 736 MovieClip
"parentShot"Frame 604Symbol 739 MovieClip
"mario"Frame 604Symbol 157 MovieClip
"tWalk"Symbol 127 MovieClip Frame 1Symbol 116 MovieClip
"ground17"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground16"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground15"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"enemy4"Symbol 134 MovieClip Frame 1Symbol 127 MovieClip
"enemy3"Symbol 134 MovieClip Frame 1Symbol 127 MovieClip
"enemy2"Symbol 134 MovieClip Frame 1Symbol 127 MovieClip
"enemy1"Symbol 134 MovieClip Frame 1Symbol 127 MovieClip
"ground1"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground3"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground4"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground2"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground5"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground6"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground7"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground8"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground9"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground10"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground11"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground12"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground13"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground14"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"ground18"Symbol 134 MovieClip Frame 1Symbol 91 MovieClip
"fallingHit"Symbol 157 MovieClip Frame 1Symbol 136 MovieClip
"marioBase"Symbol 157 MovieClip Frame 1Symbol 106 MovieClip
"mRun"Symbol 157 MovieClip Frame 2Symbol 139 MovieClip
"hitBlock"Symbol 157 MovieClip Frame 6Symbol 106 MovieClip
"fallingHit"Symbol 157 MovieClip Frame 8Symbol 136 MovieClip
"hitBlock"Symbol 157 MovieClip Frame 12Symbol 106 MovieClip
"ground1"Symbol 171 MovieClip Frame 1Symbol 91 MovieClip
"ground2"Symbol 171 MovieClip Frame 1Symbol 91 MovieClip
"ground4"Symbol 171 MovieClip Frame 1Symbol 91 MovieClip
"ground6"Symbol 171 MovieClip Frame 1Symbol 91 MovieClip
"ground7"Symbol 171 MovieClip Frame 1Symbol 91 MovieClip
"ground8"Symbol 171 MovieClip Frame 1Symbol 91 MovieClip
"ground9"Symbol 171 MovieClip Frame 1Symbol 91 MovieClip
"ground10"Symbol 173 MovieClip Frame 1Symbol 91 MovieClip
"ground11"Symbol 173 MovieClip Frame 1Symbol 91 MovieClip
"ground12"Symbol 173 MovieClip Frame 1Symbol 91 MovieClip
"ground13"Symbol 173 MovieClip Frame 1Symbol 91 MovieClip
"ground14"Symbol 173 MovieClip Frame 1Symbol 91 MovieClip
"ground15"Symbol 173 MovieClip Frame 1Symbol 91 MovieClip
"ground11"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground12"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground13"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground14"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground15"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground16"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground17"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground18"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground19"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground20"Symbol 197 MovieClip Frame 1Symbol 91 MovieClip
"ground1"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground2"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground3"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground4"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground5"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground6"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground7"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground8"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground9"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"ground10"Symbol 202 MovieClip Frame 1Symbol 91 MovieClip
"bossHurt"Symbol 217 MovieClip Frame 2Symbol 106 MovieClip
"jMetal"Symbol 481 MovieClip Frame 4Symbol 472 MovieClip
"cJump"Symbol 550 MovieClip Frame 4Symbol 547 MovieClip
"jPharaoh"Symbol 614 MovieClip Frame 4Symbol 605 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 406
"begin"Frame 407
"beginTwo"Frame 433
"beginThree"Frame 459
"beginFour"Frame 485
"beginFive"Frame 511
"gradBoss"Frame 555
"beginSix"Frame 556
"selection"Frame 581
"metalman"Frame 590
"drillman"Frame 592
"crashman"Frame 594
"heatman"Frame 596
"pharaohman"Frame 598
"sparkman"Frame 600
"dustman"Frame 602
"flashman"Frame 604




http://swfchan.com/7/31066/info.shtml
Created: 18/5 -2019 21:45:09 Last modified: 18/5 -2019 21:45:09 Server time: 02/05 -2024 10:23:01