Frame 1
function button1(_param1, _param2) {
_root._quality = "LOW";
}
function button2(_param1, _param2) {
_root._quality = "MEDIUM";
}
function button3(_param1, _param2) {
_root._quality = "HIGH";
}
function button4(obj:Object, item:ContextMenuItem) {
}
function button5(obj:Object, item:ContextMenuItem) {
getURL ("http://www.armorgames.com/", "_blank");
}
function button6(obj:Object, item:ContextMenuItem) {
getURL ("http://www.eviludy.net/", "_blank");
}
stop();
saved1 = false;
mySharedObject = SharedObject.getLocal("marioland_x1");
_root.saved1 = mySharedObject.data.saved;
if (saved1 == true) {
savegame1 = mySharedObject.data.savegame;
} else {
savegame1 = "Empty Slot";
}
saved2 = false;
mySharedObject = SharedObject.getLocal("marioland_x2");
_root.saved2 = mySharedObject.data.saved;
if (saved2 == true) {
savegame2 = mySharedObject.data.savegame;
} else {
savegame2 = "Empty Slot";
}
saved3 = false;
mySharedObject = SharedObject.getLocal("marioland_x3");
_root.saved3 = mySharedObject.data.saved;
if (saved3 == true) {
savegame3 = mySharedObject.data.savegame;
} else {
savegame3 = "Empty Slot";
}
cm = new ContextMenu();
cm.hideBuiltInItems();
cm.customItems.push(new ContextMenuItem("Low Quality", button1));
cm.customItems.push(new ContextMenuItem("Medium Quality", button2));
cm.customItems.push(new ContextMenuItem("High Quality", button3));
cm.customItems.push(new ContextMenuItem("-------------", button4));
cm.customItems.push(new ContextMenuItem("More games!", button5));
cm.customItems.push(new ContextMenuItem("Author's Site", button6));
_root.menu = cm;
Instance of Symbol 14 MovieClip in Frame 1
onClipEvent (enterFrame) {
_root.b_loaded = _root.getBytesLoaded();
_root.b_total = _root.getBytesTotal();
_root.percent = Math.round((_root.b_loaded / _root.b_total) * 100);
this._width = _root.percent * 7.5;
if (_root.percent == 100) {
_root.play();
}
}
Instance of Symbol 21 MovieClip in Frame 1
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
}
Frame 2
stop();
Frame 3
stop();
Frame 4
function saveFunction1() {
mySharedObject = SharedObject.getLocal("marioland_x1");
mySharedObject.data.saved = true;
mySharedObject.data.savegame = _root.newfile;
mySharedObject.flush();
}
function saveFunction2() {
mySharedObject = SharedObject.getLocal("marioland_x2");
mySharedObject.data.saved = true;
mySharedObject.data.savegame = _root.newfile;
mySharedObject.flush();
}
function saveFunction3() {
mySharedObject = SharedObject.getLocal("marioland_x3");
mySharedObject.data.saved = true;
mySharedObject.data.savegame = _root.newfile;
mySharedObject.flush();
}
Frame 5
function world1() {
gotoAndStop (8);
}
function world2() {
gotoAndStop (14);
}
function world3() {
gotoAndStop (20);
}
function world4() {
gotoAndStop (25);
}
Frame 7
function go() {
_root.score = 0;
_root.lives = 15;
_root.coins = 0;
gotoAndStop (8);
}
Instance of Symbol 21 MovieClip in Frame 7
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
if (Key.isDown(32)) {
_root.coins = 0;
_root.lives = 9;
_root.score = 0;
_root.level1 = true;
_root.level2 = false;
_root.level3 = false;
_root.level4 = false;
_root.level5 = false;
_root.level6 = false;
_root.level7 = false;
_root.level8 = false;
_root.level9 = false;
_root.level10 = false;
_root.level11 = false;
_root.level12 = false;
_root.level13 = false;
_root.level14 = false;
_root.level15 = false;
_root.level16 = false;
_root.level17 = false;
_root.level18 = false;
_root.level19 = false;
_root.go();
}
}
Frame 8
_root._quality = "HIGH";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
_root.level1 = true;
_root._quality = "HIGH";
_root.world = 1;
Instance of Symbol 21 MovieClip in Frame 8
onClipEvent (load) {
framerate = 32;
count = 0;
count_2 = 0;
}
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
if (_root.seconds < 0) {
_root.seconds = 0;
}
count++;
if (count == framerate) {
_root.seconds--;
count = 0;
}
if (_root.seconds2 < 1) {
_root.seconds2 = 0;
}
if ((_root.seconds2 > 0) && (_root.paused == false)) {
count_2++;
if (count_2 == framerate) {
_root.seconds2--;
count_2 = 0;
}
}
}
Frame 9
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level2 = true;
gotoAndStop (8);
}
function gameover() {
stopAllSounds();
gotoAndStop (32);
gotoAndStop (32);
}
stop();
_root.seconds = 180;
_root.seconds2 = 0;
paused = false;
Instance of Symbol 341 MovieClip "mario" in Frame 9
onClipEvent (load) {
hulkmode = false;
invinsible = false;
firehat = false;
moveSpeed = 8;
jumping = true;
blockFall = false;
this._xscale = 100;
this._yscale = 100;
death = false;
walkleft = true;
walkright = true;
into = false;
}
onClipEvent (enterFrame) {
if (_root.seconds2 == 0) {
if (hulkmode == true) {
if (lastp == 1) {
this._xscale = 100;
} else if (lastp == 2) {
this._xscale = -100;
}
hulkmode = false;
}
if (invinsible == true) {
invinsible = false;
if (lastp == 1) {
this._xscale = 100;
} else if (lastp == 2) {
this._xscale = -100;
}
}
}
if ((_root.paused == false) && (into == false)) {
if (this._x > 380) {
this._x = this._x - moveSpeed;
_root.level._x = _root.level._x - moveSpeed;
}
if (this._x < 320) {
this._x = this._x + moveSpeed;
_root.level._x = _root.level._x + moveSpeed;
}
if (this._y > 300) {
death = true;
}
if (this._y > 500) {
if (_root.sider == 1) {
this._x = this._x + 400;
_root.level._x = _root.level._x - 400;
} else if (_root.sider == 2) {
this._x = this._x - 400;
_root.level._x = _root.level._x + 400;
}
if (_root.lives > 0) {
_root.lives--;
_root.respawn();
} else if (_root.lives == 0) {
_root.gameover();
}
}
if (hulkmode == true) {
this._yscale = 135;
} else if (hulkmode == false) {
this._yscale = 100;
}
if (Key.isDown(39) && (death == false)) {
lastp = 1;
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = 100;
} else if (hulkmode == true) {
this._xscale = 135;
}
if (walkleft == false) {
walkleft = true;
}
if (walkright == true) {
this._x = this._x + moveSpeed;
}
} else if (Key.isDown(37) && (death == false)) {
lastp = 2;
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = -100;
} else if (hulkmode == true) {
this._xscale = -135;
}
if (walkright == false) {
walkright = true;
}
if (walkleft == true) {
this._x = this._x - moveSpeed;
}
} else if (Key.isDown(40) && (death == false)) {
if (!jumping) {
this.gotoAndStop(4);
}
} else if (death == false) {
this.gotoAndStop(1);
}
if (((((Key.isDown(40) && (Key.isDown(38))) && (!jumping)) && (!Key.isDown(39))) && (!Key.isDown(37))) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 40;
jumping = true;
blockFall = false;
}
if ((Key.isDown(38) && (!jumping)) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 32;
jumping = true;
blockFall = false;
}
if (jumping == true) {
this.gotoAndStop(3);
vel_y = vel_y - 1.5;
if (vel_y <= -15) {
vel_y = -15;
}
this._y = this._y - vel_y;
}
if (blockFall == true) {
vel_y = vel_y - 5;
}
if (_root.level.ground.hitTest(this._x, this._y, true)) {
vel_y = 0;
jumping = false;
}
if (death == true) {
this.gotoAndStop(5);
}
} else if (_root.paused == true) {
}
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this._y = this._y + 16;
if (_root.level.ground.hitTest(this._x, this._y, true)) {
this._y = this._y - 16;
}
if (_root.seconds == 0) {
_root.gameover();
}
} else if (_root.paused == true) {
}
}
Instance of Symbol 357 MovieClip in Frame 9
onClipEvent (load) {
this._visible = false;
count = false;
counter = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == true) {
this._visible = true;
} else if (_root.paused == false) {
this._visible = false;
}
if (Key.isDown(27) && (count == false)) {
if (_root.paused == true) {
_root.paused = false;
} else if (_root.paused == false) {
_root.paused = true;
}
count = true;
}
if (count == true) {
counter++;
}
if (counter == 35) {
count = false;
counter = 0;
}
}
Instance of Symbol 21 MovieClip in Frame 9
onClipEvent (load) {
framerate = 32;
count = 0;
count_2 = 0;
}
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
if (_root.seconds < 0) {
_root.seconds = 0;
}
count++;
if (count == framerate) {
_root.seconds--;
count = 0;
}
if (_root.seconds2 < 1) {
_root.seconds2 = 0;
}
if ((_root.seconds2 > 0) && (_root.paused == false)) {
count_2++;
if (count_2 == framerate) {
_root.seconds2--;
count_2 = 0;
}
}
}
Frame 10
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level3 = true;
gotoAndStop (8);
}
stop();
_root.seconds = 180;
_root.seconds2 = 0;
paused = false;
Frame 11
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level4 = true;
gotoAndStop (8);
}
stop();
_root.seconds = 180;
_root.seconds2 = 0;
paused = false;
Frame 12
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level5 = true;
gotoAndStop (8);
}
stop();
_root.seconds = 180;
_root.seconds2 = 0;
paused = false;
Frame 13
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level6 = true;
gotoAndStop (14);
}
stop();
_root.seconds = 180;
_root.seconds2 = 0;
paused = false;
Frame 14
_root._quality = "HIGH";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
stop();
_root.world = 2;
Frame 15
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level7 = true;
gotoAndStop (14);
}
stop();
_root.seconds = 500;
_root.seconds2 = 0;
paused = false;
Instance of Symbol 341 MovieClip "mario" in Frame 15
onClipEvent (load) {
hulkmode = false;
invinsible = false;
firehat = false;
moveSpeed = 8;
jumping = true;
blockFall = false;
this._xscale = 100;
this._yscale = 100;
death = false;
walkleft = true;
walkright = true;
into = false;
}
onClipEvent (enterFrame) {
if (_root.seconds2 == 0) {
if (hulkmode == true) {
if (lastp == 1) {
this._xscale = 100;
} else if (lastp == 2) {
this._xscale = -100;
}
hulkmode = false;
}
if (invinsible == true) {
invinsible = false;
if (lastp == 1) {
this._xscale = 100;
} else if (lastp == 2) {
this._xscale = -100;
}
}
}
if ((_root.paused == false) && (into == false)) {
if (this._x > 380) {
this._x = this._x - moveSpeed;
_root.level._x = _root.level._x - moveSpeed;
}
if (this._x < 320) {
this._x = this._x + moveSpeed;
_root.level._x = _root.level._x + moveSpeed;
}
if (this._y > 300) {
death = true;
}
if (this._y > 500) {
if (_root.sider == 1) {
this._x = this._x + 400;
_root.level._x = _root.level._x - 400;
} else if (_root.sider == 2) {
this._x = this._x - 400;
_root.level._x = _root.level._x + 400;
}
if (_root.lives > 0) {
_root.lives--;
_root.respawn();
} else if (_root.lives == 0) {
_root.gameover();
}
}
if (hulkmode == true) {
this._yscale = 135;
} else if (hulkmode == false) {
this._yscale = 100;
}
if (Key.isDown(39) && (death == false)) {
lastp = 1;
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = 100;
} else if (hulkmode == true) {
this._xscale = 135;
}
if (walkleft == false) {
walkleft = true;
}
if (walkright == true) {
this._x = this._x + moveSpeed;
}
} else if (Key.isDown(37) && (death == false)) {
lastp = 2;
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = -100;
} else if (hulkmode == true) {
this._xscale = -135;
}
if (walkright == false) {
walkright = true;
}
if (walkleft == true) {
this._x = this._x - moveSpeed;
}
} else if (Key.isDown(40) && (death == false)) {
if (!jumping) {
this.gotoAndStop(4);
}
} else if (death == false) {
this.gotoAndStop(1);
}
if (((((Key.isDown(40) && (Key.isDown(38))) && (!jumping)) && (!Key.isDown(39))) && (!Key.isDown(37))) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 40;
jumping = true;
blockFall = false;
}
if ((Key.isDown(38) && (!jumping)) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 32;
jumping = true;
blockFall = false;
}
if (jumping == true) {
this.gotoAndStop(3);
vel_y = vel_y - 1.5;
if (vel_y <= -15) {
vel_y = -15;
}
this._y = this._y - vel_y;
}
if (blockFall == true) {
vel_y = vel_y - 5;
}
if (_root.level.ground.hitTest(this._x, this._y, true)) {
vel_y = 0;
jumping = false;
}
if (death == true) {
this.gotoAndStop(5);
}
} else if (_root.paused == true) {
}
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this._y = this._y + 16;
if (_root.level.ground.hitTest(this._x, this._y, true)) {
this._y = this._y - 16;
}
if (_root.seconds == 0) {
_root.gameover();
}
} else if (_root.paused == true) {
}
}
Instance of Symbol 357 MovieClip in Frame 15
onClipEvent (load) {
this._visible = false;
count = false;
counter = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == true) {
this._visible = true;
} else if (_root.paused == false) {
this._visible = false;
}
if (Key.isDown(27) && (count == false)) {
if (_root.paused == true) {
_root.paused = false;
} else if (_root.paused == false) {
_root.paused = true;
}
count = true;
}
if (count == true) {
counter++;
}
if (counter == 35) {
count = false;
counter = 0;
}
}
Frame 16
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level8 = true;
gotoAndStop (14);
}
stop();
_root.seconds = 150;
_root.seconds2 = 0;
paused = false;
Frame 17
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level9 = true;
gotoAndStop (14);
}
stop();
_root.seconds = 150;
_root.seconds2 = 0;
paused = false;
Frame 18
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level10 = true;
gotoAndStop (14);
}
stop();
_root.seconds = 150;
_root.seconds2 = 0;
paused = false;
Frame 19
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level11 = true;
gotoAndStop (20);
}
stop();
_root.seconds = 180;
_root.seconds2 = 0;
paused = false;
Frame 20
_root._quality = "HIGH";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
stop();
_root.world = 3;
Frame 21
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level12 = true;
gotoAndStop (20);
}
stop();
_root.seconds = 120;
_root.seconds2 = 0;
paused = false;
Instance of Symbol 341 MovieClip "mario" in Frame 21
onClipEvent (load) {
hulkmode = false;
invinsible = false;
firehat = false;
moveSpeed = 8;
jumping = true;
blockFall = false;
this._xscale = 100;
this._yscale = 100;
death = false;
walkleft = true;
walkright = true;
into = false;
}
onClipEvent (enterFrame) {
if (_root.seconds2 == 0) {
if (hulkmode == true) {
if (lastp == 1) {
this._xscale = 100;
} else if (lastp == 2) {
this._xscale = -100;
}
hulkmode = false;
}
if (invinsible == true) {
invinsible = false;
if (lastp == 1) {
this._xscale = 100;
} else if (lastp == 2) {
this._xscale = -100;
}
}
}
if ((_root.paused == false) && (into == false)) {
if (this._x > 380) {
this._x = this._x - moveSpeed;
_root.level._x = _root.level._x - moveSpeed;
}
if (this._x < 320) {
this._x = this._x + moveSpeed;
_root.level._x = _root.level._x + moveSpeed;
}
if (this._y > 300) {
death = true;
}
if (this._y > 500) {
if (_root.sider == 1) {
this._x = this._x + 400;
_root.level._x = _root.level._x - 400;
} else if (_root.sider == 2) {
this._x = this._x - 400;
_root.level._x = _root.level._x + 400;
}
if (_root.lives > 0) {
_root.lives--;
_root.respawn();
} else if (_root.lives == 0) {
_root.gameover();
}
}
if (hulkmode == true) {
this._yscale = 135;
} else if (hulkmode == false) {
this._yscale = 100;
}
if (Key.isDown(39) && (death == false)) {
lastp = 1;
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = 100;
} else if (hulkmode == true) {
this._xscale = 135;
}
if (walkleft == false) {
walkleft = true;
}
if (walkright == true) {
this._x = this._x + moveSpeed;
}
} else if (Key.isDown(37) && (death == false)) {
lastp = 2;
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = -100;
} else if (hulkmode == true) {
this._xscale = -135;
}
if (walkright == false) {
walkright = true;
}
if (walkleft == true) {
this._x = this._x - moveSpeed;
}
} else if (Key.isDown(40) && (death == false)) {
if (!jumping) {
this.gotoAndStop(4);
}
} else if (death == false) {
this.gotoAndStop(1);
}
if (((((Key.isDown(40) && (Key.isDown(38))) && (!jumping)) && (!Key.isDown(39))) && (!Key.isDown(37))) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 40;
jumping = true;
blockFall = false;
}
if ((Key.isDown(38) && (!jumping)) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 32;
jumping = true;
blockFall = false;
}
if (jumping == true) {
this.gotoAndStop(3);
vel_y = vel_y - 1.5;
if (vel_y <= -15) {
vel_y = -15;
}
this._y = this._y - vel_y;
}
if (blockFall == true) {
vel_y = vel_y - 5;
}
if (_root.level.ground.hitTest(this._x, this._y, true)) {
vel_y = 0;
jumping = false;
}
if (death == true) {
this.gotoAndStop(5);
}
} else if (_root.paused == true) {
}
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this._y = this._y + 16;
if (_root.level.ground.hitTest(this._x, this._y, true)) {
this._y = this._y - 16;
}
if (_root.seconds == 0) {
_root.gameover();
}
} else if (_root.paused == true) {
}
}
Instance of Symbol 357 MovieClip in Frame 21
onClipEvent (load) {
this._visible = false;
count = false;
counter = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == true) {
this._visible = true;
} else if (_root.paused == false) {
this._visible = false;
}
if (Key.isDown(27) && (count == false)) {
if (_root.paused == true) {
_root.paused = false;
} else if (_root.paused == false) {
_root.paused = true;
}
count = true;
}
if (count == true) {
counter++;
}
if (counter == 35) {
count = false;
counter = 0;
}
}
Frame 22
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level13 = true;
gotoAndStop (20);
}
stop();
_root.seconds = 120;
_root.seconds2 = 0;
paused = false;
Frame 23
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level14 = true;
gotoAndStop (20);
}
stop();
_root.seconds = 120;
_root.seconds2 = 0;
paused = false;
Frame 24
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 200;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level15 = true;
gotoAndStop (25);
}
stop();
_root.seconds = 180;
_root.seconds2 = 0;
paused = false;
Frame 25
_root._quality = "HIGH";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
stop();
_root.world = 4;
Frame 26
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level16 = true;
gotoAndStop (25);
}
stop();
_root.seconds = 200;
_root.seconds2 = 0;
paused = false;
Instance of Symbol 341 MovieClip "mario" in Frame 26
onClipEvent (load) {
hulkmode = false;
invinsible = false;
firehat = false;
moveSpeed = 8;
jumping = true;
blockFall = false;
this._xscale = 100;
this._yscale = 100;
death = false;
walkleft = true;
walkright = true;
into = false;
}
onClipEvent (enterFrame) {
if (_root.seconds2 == 0) {
if (hulkmode == true) {
if (lastp == 1) {
this._xscale = 100;
} else if (lastp == 2) {
this._xscale = -100;
}
hulkmode = false;
}
if (invinsible == true) {
invinsible = false;
if (lastp == 1) {
this._xscale = 100;
} else if (lastp == 2) {
this._xscale = -100;
}
}
}
if ((_root.paused == false) && (into == false)) {
if (this._x > 380) {
this._x = this._x - moveSpeed;
_root.level._x = _root.level._x - moveSpeed;
}
if (this._x < 320) {
this._x = this._x + moveSpeed;
_root.level._x = _root.level._x + moveSpeed;
}
if (this._y > 300) {
death = true;
}
if (this._y > 500) {
if (_root.sider == 1) {
this._x = this._x + 400;
_root.level._x = _root.level._x - 400;
} else if (_root.sider == 2) {
this._x = this._x - 400;
_root.level._x = _root.level._x + 400;
}
if (_root.lives > 0) {
_root.lives--;
_root.respawn();
} else if (_root.lives == 0) {
_root.gameover();
}
}
if (hulkmode == true) {
this._yscale = 135;
} else if (hulkmode == false) {
this._yscale = 100;
}
if (Key.isDown(39) && (death == false)) {
lastp = 1;
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = 100;
} else if (hulkmode == true) {
this._xscale = 135;
}
if (walkleft == false) {
walkleft = true;
}
if (walkright == true) {
this._x = this._x + moveSpeed;
}
} else if (Key.isDown(37) && (death == false)) {
lastp = 2;
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = -100;
} else if (hulkmode == true) {
this._xscale = -135;
}
if (walkright == false) {
walkright = true;
}
if (walkleft == true) {
this._x = this._x - moveSpeed;
}
} else if (Key.isDown(40) && (death == false)) {
if (!jumping) {
this.gotoAndStop(4);
}
} else if (death == false) {
this.gotoAndStop(1);
}
if (((((Key.isDown(40) && (Key.isDown(38))) && (!jumping)) && (!Key.isDown(39))) && (!Key.isDown(37))) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 40;
jumping = true;
blockFall = false;
}
if ((Key.isDown(38) && (!jumping)) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 32;
jumping = true;
blockFall = false;
}
if (jumping == true) {
this.gotoAndStop(3);
vel_y = vel_y - 1.5;
if (vel_y <= -15) {
vel_y = -15;
}
this._y = this._y - vel_y;
}
if (blockFall == true) {
vel_y = vel_y - 5;
}
if (_root.level.ground.hitTest(this._x, this._y, true)) {
vel_y = 0;
jumping = false;
}
if (death == true) {
this.gotoAndStop(5);
}
} else if (_root.paused == true) {
}
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this._y = this._y + 16;
if (_root.level.ground.hitTest(this._x, this._y, true)) {
this._y = this._y - 16;
}
if (_root.seconds == 0) {
_root.gameover();
}
} else if (_root.paused == true) {
}
}
Instance of Symbol 357 MovieClip in Frame 26
onClipEvent (load) {
this._visible = false;
count = false;
counter = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == true) {
this._visible = true;
} else if (_root.paused == false) {
this._visible = false;
}
if (Key.isDown(27) && (count == false)) {
if (_root.paused == true) {
_root.paused = false;
} else if (_root.paused == false) {
_root.paused = true;
}
count = true;
}
if (count == true) {
counter++;
}
if (counter == 35) {
count = false;
counter = 0;
}
}
Frame 27
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level17 = true;
gotoAndStop (25);
}
stop();
_root.seconds = 200;
_root.seconds2 = 0;
paused = false;
Frame 28
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
stopAllSounds();
_root.level18 = true;
gotoAndStop (25);
}
stop();
_root.seconds = 200;
_root.seconds2 = 0;
paused = false;
Frame 29
_root._quality = "LOW";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 100;
mario._x = 300;
mario._y = 30;
}
function finished() {
_root.lives = _root.lives + 5;
_root.score = _root.score + 3000;
stopAllSounds();
_root.level19 = true;
gotoAndStop (25);
}
stop();
_root.seconds = 500;
_root.seconds2 = 0;
paused = false;
Frame 30
_root._quality = "MEDIUM";
function saveFunction() {
if (_root.slotplaying == 1) {
mySharedObject = SharedObject.getLocal("marioland_x1");
} else if (_root.slotplaying == 2) {
mySharedObject = SharedObject.getLocal("marioland_x2");
} else if (_root.slotplaying == 3) {
mySharedObject = SharedObject.getLocal("marioland_x3");
}
mySharedObject.data.lives = _root.lives;
mySharedObject.data.coins = _root.coins;
mySharedObject.data.score = _root.score;
mySharedObject.data.world = _root.world;
mySharedObject.data.level1 = _root.level1;
mySharedObject.data.level2 = _root.level2;
mySharedObject.data.level3 = _root.level3;
mySharedObject.data.level4 = _root.level4;
mySharedObject.data.level5 = _root.level5;
mySharedObject.data.level6 = _root.level6;
mySharedObject.data.level7 = _root.level7;
mySharedObject.data.level8 = _root.level8;
mySharedObject.data.level9 = _root.level9;
mySharedObject.data.level10 = _root.level10;
mySharedObject.data.level11 = _root.level11;
mySharedObject.data.level12 = _root.level12;
mySharedObject.data.level13 = _root.level13;
mySharedObject.data.level14 = _root.level14;
mySharedObject.data.level15 = _root.level15;
mySharedObject.data.level16 = _root.level16;
mySharedObject.data.level17 = _root.level17;
mySharedObject.data.level18 = _root.level18;
mySharedObject.data.level19 = _root.level19;
mySharedObject.flush();
}
function respawn() {
mario.invinsible = true;
_root.seconds2 = 5;
mario.firehat = false;
mario.hulkmode = false;
mario.death = false;
mario.jumping = true;
mario.walkleft = true;
mario.walkright = true;
mario._xscale = 46;
mario._x = 8;
mario._y = 250;
}
function finished() {
stopAllSounds();
gotoAndStop (31);
}
stop();
_root.seconds = 500;
_root.seconds2 = 0;
paused = false;
Instance of Symbol 292 MovieClip in Frame 30
onClipEvent (load) {
toadstoolnum = 4;
this.gotoAndStop(toadstoolnum);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (this._visible == true)) {
_root.score = _root.score + 100;
powerup = new Sound();
powerup.attachSound("powerup");
powerup.start();
if (toadstoolnum == 1) {
_root.lives++;
} else if (toadstoolnum == 2) {
if (_root.level18 == true) {
_root.seconds2 = 100;
} else {
_root.seconds2 = 40;
}
_root.mario.hulkmode = true;
} else if (toadstoolnum == 3) {
_root.mario.firehat = true;
} else if (toadstoolnum == 4) {
_root.seconds2 = 20;
_root.mario.invinsible = true;
}
dealt = true;
this._visible = false;
}
if (dealt == true) {
this._visible = false;
}
}
Instance of Symbol 341 MovieClip "mario" in Frame 30
onClipEvent (load) {
hulkmode = false;
invinsible = false;
firehat = false;
moveSpeed = 4;
jumping = true;
blockFall = false;
this._xscale = 46;
this._yscale = 46;
death = false;
walkleft = true;
walkright = true;
into = false;
}
onClipEvent (enterFrame) {
if (_root.seconds2 == 0) {
if (hulkmode == true) {
hulkmode = false;
}
if (invinsible == true) {
invinsible = false;
}
}
if ((_root.paused == false) && (into == false)) {
if (this._x > 750) {
this._x = this._x - moveSpeed;
}
if (this._x < 0) {
this._x = this._x + moveSpeed;
}
if (this._y > 500) {
if (this._x < 350) {
this._x = this._x + 400;
} else if (this._x > 350) {
this._x = this._x - 400;
}
if (_root.lives > 0) {
_root.lives--;
_root.respawn();
}
}
if (hulkmode == true) {
this._yscale = 46;
} else if (hulkmode == false) {
this._yscale = 46;
}
if ((Key.isDown(39) && (death == false)) && (!this.hitTest(_root.bowser.right))) {
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = 46;
} else if (hulkmode == true) {
this._xscale = 46;
}
if (walkleft == false) {
walkleft = true;
}
if (walkright == true) {
this._x = this._x + moveSpeed;
}
} else if ((Key.isDown(37) && (death == false)) && (!this.hitTest(_root.bowser.left))) {
if (!jumping) {
this.gotoAndStop(2);
}
if (hulkmode == false) {
this._xscale = -46;
} else if (hulkmode == true) {
this._xscale = -46;
}
if (walkright == false) {
walkright = true;
}
if (walkleft == true) {
this._x = this._x - moveSpeed;
}
} else if (Key.isDown(40) && (death == false)) {
if (!jumping) {
this.gotoAndStop(4);
}
} else if (death == false) {
this.gotoAndStop(1);
}
if (((((Key.isDown(40) && (Key.isDown(38))) && (!jumping)) && (!Key.isDown(39))) && (!Key.isDown(37))) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 21;
jumping = true;
blockFall = false;
}
if ((Key.isDown(38) && (!jumping)) && (death == false)) {
jump = new Sound();
jump.attachSound("jump");
jump.start();
vel_y = 17;
jumping = true;
blockFall = false;
}
if (jumping == true) {
this.gotoAndStop(3);
vel_y = vel_y - 1.5;
if (vel_y <= -15) {
vel_y = -15;
}
this._y = this._y - vel_y;
}
if (blockFall == true) {
vel_y = vel_y - 5;
}
if (_root.ground.hitTest(this._x, this._y, true)) {
vel_y = 0;
jumping = false;
}
if (death == true) {
this.gotoAndStop(5);
}
} else if (_root.paused == true) {
}
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this._y = this._y + 8;
if (_root.ground.hitTest(this._x, this._y, true)) {
this._y = this._y - 8;
}
} else if (_root.paused == true) {
}
}
Instance of Symbol 851 MovieClip "bowser" in Frame 30
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.invinsible == true)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 864 MovieClip in Frame 30
onClipEvent (load) {
speed = 6;
startx = _x;
}
onClipEvent (enterFrame) {
this._x = this._x - speed;
if ((this.hitTest(_root.mario) && (_root.mario.death == false)) && (_root.mario.invinsible == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(6);
}
minus = -this._width;
if (this._x < minus) {
this._x = startx;
}
}
Instance of Symbol 868 MovieClip in Frame 30
onClipEvent (load) {
count = false;
counter = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == true) {
this._visible = true;
} else if (_root.paused == false) {
this._visible = false;
}
if (Key.isDown(27) && (count == false)) {
if (_root.paused == true) {
_root.paused = false;
} else if (_root.paused == false) {
_root.paused = true;
}
count = true;
}
if (count == true) {
counter++;
}
if (counter == 35) {
count = false;
counter = 0;
}
}
Frame 31
_root._quality = "HIGH";
function credits() {
gotoAndStop (34);
gotoAndStop (34);
}
_root.totalscore = 0;
_root.totalscore = _root.totalscore + _root.score;
_root.addingA = _root.coins * 10;
_root.addingB = _root.lives * 100;
_root.totalscore = _root.totalscore + _root.addingA;
_root.totalscore = _root.totalscore + _root.addingB;
Instance of Symbol 895 MovieClip in Frame 31
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.credits();
}
}
Instance of Symbol 21 MovieClip in Frame 31
onClipEvent (load) {
framerate = 32;
count = 0;
count_2 = 0;
}
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
if (_root.seconds < 0) {
_root.seconds = 0;
}
count++;
if (count == framerate) {
_root.seconds--;
count = 0;
}
if (_root.seconds2 < 1) {
_root.seconds2 = 0;
}
if (_root.seconds2 > 0) {
count_2++;
if (count_2 == framerate) {
_root.seconds2--;
count_2 = 0;
}
}
}
Frame 32
_root._quality = "HIGH";
function gomenu() {
stopAllSounds();
gotoAndStop (1);
}
Instance of Symbol 899 MovieClip in Frame 32
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.gomenu();
}
}
Frame 33
stopAllSounds();
gotoAndPlay (34);
Frame 34
play();
Instance of Symbol 21 MovieClip in Frame 34
onClipEvent (load) {
framerate = 32;
count = 0;
count_2 = 0;
}
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
Mouse.hide();
if (_root.seconds < 0) {
_root.seconds = 0;
}
count++;
if (count == framerate) {
_root.seconds--;
count = 0;
}
if (_root.seconds2 < 1) {
_root.seconds2 = 0;
}
if (_root.seconds2 > 0) {
count_2++;
if (count_2 == framerate) {
_root.seconds2--;
count_2 = 0;
}
}
}
Frame 1017
stopAllSounds();
gotoAndStop (3);
Symbol 27 Button
on (release) {
getURL ("http://www.armorgames.com/", "_blank");
}
Symbol 71 Button
on (release) {
_root.play();
}
Symbol 72 MovieClip Frame 143
stop();
_root.nextFrame();
Symbol 74 Button
on (release) {
gotoAndStop (4);
}
Symbol 76 Button
on (release) {
gotoAndStop (5);
}
Symbol 78 Button
on (release) {
gotoAndStop (6);
}
Symbol 80 Button
on (release) {
getURL ("http://www.eviludy.net", "_blank");
}
Symbol 82 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 85 Button
on (release) {
saveFunction1();
_root.slotplaying = 1;
gotoAndStop (7);
}
Symbol 86 Button
on (release) {
saveFunction2();
_root.slotplaying = 2;
gotoAndStop (7);
}
Symbol 87 Button
on (release) {
saveFunction3();
_root.slotplaying = 3;
gotoAndStop (7);
}
Symbol 95 Button
on (release) {
if (_root.saved1 == true) {
mySharedObject = SharedObject.getLocal("marioland_x1");
_root.lives = mySharedObject.data.lives;
_root.coins = mySharedObject.data.coins;
_root.score = mySharedObject.data.score;
_root.world = mySharedObject.data.world;
_root.level1 = mySharedObject.data.level1;
_root.level2 = mySharedObject.data.level2;
_root.level3 = mySharedObject.data.level3;
_root.level4 = mySharedObject.data.level4;
_root.level5 = mySharedObject.data.level5;
_root.level6 = mySharedObject.data.level6;
_root.level7 = mySharedObject.data.level7;
_root.level8 = mySharedObject.data.level8;
_root.level9 = mySharedObject.data.level9;
_root.level10 = mySharedObject.data.level10;
_root.level11 = mySharedObject.data.level11;
_root.level12 = mySharedObject.data.level12;
_root.level13 = mySharedObject.data.level13;
_root.level14 = mySharedObject.data.level14;
_root.level15 = mySharedObject.data.level15;
_root.level16 = mySharedObject.data.level16;
_root.level17 = mySharedObject.data.level17;
_root.level18 = mySharedObject.data.level18;
_root.level19 = mySharedObject.data.level19;
if (_root.world == 1) {
_root.world1();
} else if (_root.world == 2) {
_root.world2();
} else if (_root.world == 3) {
_root.world3();
} else if (_root.world == 4) {
_root.world4();
}
}
}
Symbol 96 Button
on (release) {
if (_root.saved2 == true) {
mySharedObject = SharedObject.getLocal("marioland_x2");
_root.lives = mySharedObject.data.lives;
_root.coins = mySharedObject.data.coins;
_root.score = mySharedObject.data.score;
_root.world = mySharedObject.data.world;
_root.level1 = mySharedObject.data.level1;
_root.level2 = mySharedObject.data.level2;
_root.level3 = mySharedObject.data.level3;
_root.level4 = mySharedObject.data.level4;
_root.level5 = mySharedObject.data.level5;
_root.level6 = mySharedObject.data.level6;
_root.level7 = mySharedObject.data.level7;
_root.level8 = mySharedObject.data.level8;
_root.level9 = mySharedObject.data.level9;
_root.level10 = mySharedObject.data.level10;
_root.level11 = mySharedObject.data.level11;
_root.level12 = mySharedObject.data.level12;
_root.level13 = mySharedObject.data.level13;
_root.level14 = mySharedObject.data.level14;
_root.level15 = mySharedObject.data.level15;
_root.level16 = mySharedObject.data.level16;
_root.level17 = mySharedObject.data.level17;
_root.level18 = mySharedObject.data.level18;
_root.level19 = mySharedObject.data.level19;
if (_root.world == 1) {
_root.world1();
} else if (_root.world == 2) {
_root.world2();
} else if (_root.world == 3) {
_root.world3();
} else if (_root.world == 4) {
_root.world4();
}
}
}
Symbol 97 Button
on (release) {
if (_root.saved3 == true) {
mySharedObject = SharedObject.getLocal("marioland_x3");
_root.lives = mySharedObject.data.lives;
_root.coins = mySharedObject.data.coins;
_root.score = mySharedObject.data.score;
_root.world = mySharedObject.data.world;
_root.level1 = mySharedObject.data.level1;
_root.level2 = mySharedObject.data.level2;
_root.level3 = mySharedObject.data.level3;
_root.level4 = mySharedObject.data.level4;
_root.level5 = mySharedObject.data.level5;
_root.level6 = mySharedObject.data.level6;
_root.level7 = mySharedObject.data.level7;
_root.level8 = mySharedObject.data.level8;
_root.level9 = mySharedObject.data.level9;
_root.level10 = mySharedObject.data.level10;
_root.level11 = mySharedObject.data.level11;
_root.level12 = mySharedObject.data.level12;
_root.level13 = mySharedObject.data.level13;
_root.level14 = mySharedObject.data.level14;
_root.level15 = mySharedObject.data.level15;
_root.level16 = mySharedObject.data.level16;
_root.level17 = mySharedObject.data.level17;
_root.level18 = mySharedObject.data.level18;
_root.level19 = mySharedObject.data.level19;
if (_root.world == 1) {
_root.world1();
} else if (_root.world == 2) {
_root.world2();
} else if (_root.world == 3) {
_root.world3();
} else if (_root.world == 4) {
_root.world4();
}
}
}
Symbol 101 Button
on (release) {
gotoAndStop (2);
}
Symbol 115 MovieClip Frame 1
goomba = true;
Symbol 115 MovieClip Frame 4
goomba = true;
Symbol 115 MovieClip Frame 7
goomba = true;
Symbol 115 MovieClip Frame 10
goomba = true;
Symbol 115 MovieClip Frame 13
goomba = true;
Symbol 115 MovieClip Frame 16
goomba = true;
Symbol 115 MovieClip Frame 19
goomba = true;
Symbol 115 MovieClip Frame 21
gotoAndPlay (1);
Symbol 115 MovieClip Frame 22
goomba = false;
Symbol 115 MovieClip Frame 35
_root.score = _root.score + 25;
Symbol 115 MovieClip Frame 36
stop();
Symbol 115 MovieClip Frame 37
prevFrame();
Symbol 194 MovieClip Frame 1
shyguy = true;
Symbol 194 MovieClip Frame 15
shyguy = true;
Symbol 194 MovieClip Frame 30
gotoAndPlay (1);
Symbol 194 MovieClip Frame 31
shyguy = false;
Symbol 194 MovieClip Frame 70
_root.score = _root.score + 150;
Symbol 194 MovieClip Frame 71
stop();
Symbol 194 MovieClip Frame 72
prevFrame();
Symbol 203 MovieClip Frame 1
goomba = true;
Symbol 203 MovieClip Frame 4
goomba = true;
Symbol 203 MovieClip Frame 7
goomba = true;
Symbol 203 MovieClip Frame 10
goomba = true;
Symbol 203 MovieClip Frame 13
goomba = true;
Symbol 203 MovieClip Frame 16
goomba = true;
Symbol 203 MovieClip Frame 19
goomba = true;
Symbol 203 MovieClip Frame 21
gotoAndPlay (1);
Symbol 203 MovieClip Frame 22
goomba = false;
Symbol 203 MovieClip Frame 35
_root.score = _root.score + 25;
Symbol 203 MovieClip Frame 36
stop();
Symbol 203 MovieClip Frame 37
prevFrame();
Symbol 204 MovieClip Frame 40
gotoAndPlay (1);
Symbol 204 MovieClip Frame 41
koopa = false;
Symbol 204 MovieClip Frame 53
_root.score = _root.score + 50;
Symbol 204 MovieClip Frame 55
prevFrame();
Symbol 236 Button
on (rollOver) {
_root.levelname = "training level";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level1 == true) {
stopAllSounds();
gotoAndStop (9);
}
}
Symbol 237 Button
on (rollOver) {
_root.levelname = "island grasslands";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level2 == true) {
stopAllSounds();
gotoAndStop (10);
}
}
Symbol 238 Button
on (rollOver) {
_root.levelname = "mountain trial";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level3 == true) {
stopAllSounds();
gotoAndStop (11);
}
}
Symbol 239 Button
on (rollOver) {
_root.levelname = "mountain top";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level4 == true) {
stopAllSounds();
gotoAndStop (12);
}
}
Symbol 244 Button
on (rollOver) {
_root.levelname = "world boss";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level5 == true) {
stopAllSounds();
gotoAndStop (13);
}
}
Symbol 265 Button
on (release) {
_root.saveFunction();
}
Symbol 280 MovieClip Frame 19
gotoAndPlay (1);
Symbol 280 MovieClip Frame 27
_root.score = _root.score + 10;
Symbol 280 MovieClip Frame 28
stop();
Symbol 280 MovieClip Frame 29
prevFrame();
Instance of Symbol 282 MovieClip in Symbol 283 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 283 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 283 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 283 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Symbol 295 MovieClip Frame 73
dealt = false;
gotoAndPlay (1);
Instance of Symbol 292 MovieClip in Symbol 295 MovieClip Frame 79
onClipEvent (enterFrame) {
if (_parent.toadstoolnum == 1) {
this.gotoAndStop(1);
} else if (_parent.toadstoolnum == 2) {
this.gotoAndStop(2);
} else if (_parent.toadstoolnum == 3) {
this.gotoAndStop(3);
} else if (_parent.toadstoolnum == 4) {
this.gotoAndStop(4);
}
}
Symbol 295 MovieClip Frame 100
stop();
Instance of Symbol 292 MovieClip in Symbol 295 MovieClip Frame 100
onClipEvent (load) {
this.gotoAndStop(_parent.toadstoolnum);
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (this._visible == true)) {
_root.score = _root.score + 100;
powerup = new Sound();
powerup.attachSound("powerup");
powerup.start();
if (_parent.toadstoolnum == 1) {
_root.lives++;
} else if (_parent.toadstoolnum == 2) {
if (_root.level18 == true) {
_root.seconds2 = 100;
} else if (_root.mario.invinsible == false) {
_root.seconds2 = 40;
}
_root.mario.hulkmode = true;
} else if (_parent.toadstoolnum == 3) {
_root.mario.firehat = true;
} else if (_parent.toadstoolnum == 4) {
_root.seconds2 = 20;
_root.mario.invinsible = true;
}
dealt = true;
this._visible = false;
}
if (dealt == true) {
this._visible = false;
}
}
Symbol 327 MovieClip Frame 40
gotoAndPlay (1);
Symbol 327 MovieClip Frame 41
koopa = false;
Symbol 327 MovieClip Frame 53
_root.score = _root.score + 50;
Symbol 327 MovieClip Frame 55
prevFrame();
Instance of Symbol 115 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 4;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 2;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 1;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 327 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Symbol 337 MovieClip Frame 75
stop();
if (_root.lives > 0) {
_root.lives--;
_root.respawn();
} else {
_root.gameover();
}
Symbol 340 MovieClip Frame 35
stop();
_root.finished();
Instance of Symbol 332 MovieClip in Symbol 341 MovieClip Frame 1
onClipEvent (load) {
if (_root.mario.firehat == false) {
this._visible = false;
} else if (_root.mario.firehat == true) {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_root.mario.firehat == false) {
this._visible = false;
} else if (_root.mario.firehat == true) {
this._visible = true;
}
}
Instance of Symbol 333 MovieClip in Symbol 341 MovieClip Frame 1
onClipEvent (load) {
if (_root.mario.invinsible == false) {
this._visible = false;
} else if (_root.mario.invinsible == true) {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_root.mario.invinsible == false) {
this._visible = false;
} else if (_root.mario.invinsible == true) {
this._visible = true;
}
}
Instance of Symbol 334 MovieClip in Symbol 341 MovieClip Frame 2
onClipEvent (load) {
if (_root.mario.invinsible == false) {
this._visible = false;
} else if (_root.mario.invinsible == true) {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_root.mario.invinsible == false) {
this._visible = false;
} else if (_root.mario.invinsible == true) {
this._visible = true;
}
}
Instance of Symbol 335 MovieClip in Symbol 341 MovieClip Frame 3
onClipEvent (load) {
if (_root.mario.invinsible == false) {
this._visible = false;
} else if (_root.mario.invinsible == true) {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_root.mario.invinsible == false) {
this._visible = false;
} else if (_root.mario.invinsible == true) {
this._visible = true;
}
}
Instance of Symbol 336 MovieClip in Symbol 341 MovieClip Frame 4
onClipEvent (load) {
if (_root.mario.invinsible == false) {
this._visible = false;
} else if (_root.mario.invinsible == true) {
this._visible = true;
}
}
onClipEvent (enterFrame) {
if (_root.mario.invinsible == false) {
this._visible = false;
} else if (_root.mario.invinsible == true) {
this._visible = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 327 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 90) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 90) && (clicked <= 180)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 180) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 90) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 90) && (clicked <= 180)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 180) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 368 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Instance of Symbol 282 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 384 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 115 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 4;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 2;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 327 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 62) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 62) && (clicked <= 124)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 124) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 62) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 62) && (clicked <= 124)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 124) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 1;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Symbol 452 MovieClip Frame 1
stop();
Symbol 452 MovieClip Frame 25
going++;
Symbol 452 MovieClip Frame 26
stop();
Symbol 452 MovieClip Frame 50
going++;
Symbol 452 MovieClip Frame 51
stop();
Symbol 452 MovieClip Frame 75
going++;
Symbol 452 MovieClip Frame 76
stop();
Symbol 452 MovieClip Frame 100
going++;
Symbol 452 MovieClip Frame 101
stop();
Symbol 452 MovieClip Frame 126
stop();
_root.score = _root.score + 350;
_root.finished();
Symbol 452 MovieClip Frame 127
prevFrame();
Instance of Symbol 452 MovieClip in Symbol 454 MovieClip Frame 1
onClipEvent (load) {
amounttogo = 2050;
speed1 = 2;
speed2 = 4;
speed3 = 6;
speed4 = 8;
speed5 = 12;
going = 1;
countit = 0;
road = 1;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
if (this.plateau.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.vel_y = 45;
this.play();
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (this.hitTest(_root.mario) && (!this.plateau.hitTest(_root.mario))) {
if (_root.mario.firehat == true) {
_root.mario.vel_y = 60;
_root.mario.firehat = false;
} else {
_root.mario.gotoAndStop(5);
_root.mario.death = true;
}
}
if (road == 1) {
this._xscale = 100;
} else if (road == 2) {
this._xscale = -100;
}
if ((going == 1) && (road == 1)) {
this._x = this._x - speed1;
countit = countit + speed1;
if (countit >= amounttogo) {
road = 2;
countit = 0;
}
}
if ((going == 1) && (road == 2)) {
this._x = this._x + speed1;
countit = countit + speed1;
if (countit >= amounttogo) {
road = 1;
countit = 0;
}
}
if ((going == 2) && (road == 1)) {
this._x = this._x - speed2;
countit = countit + speed2;
if (countit >= amounttogo) {
road = 2;
countit = 0;
}
}
if ((going == 2) && (road == 2)) {
this._x = this._x + speed2;
countit = countit + speed2;
if (countit >= amounttogo) {
road = 1;
countit = 0;
}
}
if ((going == 3) && (road == 1)) {
this._x = this._x - speed3;
countit = countit + speed3;
if (countit >= amounttogo) {
road = 2;
countit = 0;
}
}
if ((going == 3) && (road == 2)) {
this._x = this._x + speed3;
countit = countit + speed3;
if (countit >= amounttogo) {
road = 1;
countit = 0;
}
}
if ((going == 4) && (road == 1)) {
this._x = this._x - speed4;
countit = countit + speed4;
if (countit >= amounttogo) {
road = 2;
countit = 0;
}
}
if ((going == 4) && (road == 2)) {
this._x = this._x + speed4;
countit = countit + speed4;
if (countit >= amounttogo) {
road = 1;
countit = 0;
}
}
if ((going == 5) && (road == 1)) {
this._x = this._x - speed5;
countit = countit + speed5;
if (countit >= amounttogo) {
road = 2;
countit = 0;
}
}
if ((going == 5) && (road == 2)) {
this._x = this._x + speed5;
countit = countit + speed5;
if (countit >= amounttogo) {
road = 1;
countit = 0;
}
}
}
}
Instance of Symbol 329 MovieClip in Symbol 454 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 454 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Symbol 470 Button
on (rollOver) {
_root.levelname = "welcome level";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level6 == true) {
stopAllSounds();
gotoAndStop (15);
}
}
Symbol 471 Button
on (rollOver) {
_root.levelname = "climbing tree";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level7 == true) {
stopAllSounds();
gotoAndStop (16);
}
}
Symbol 472 Button
on (rollOver) {
_root.levelname = "deep forest";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level8 == true) {
stopAllSounds();
gotoAndStop (17);
}
}
Symbol 473 Button
on (rollOver) {
_root.levelname = "empty spot";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level9 == true) {
stopAllSounds();
gotoAndStop (18);
}
}
Symbol 478 Button
on (rollOver) {
_root.levelname = "world boss";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level10 == true) {
stopAllSounds();
gotoAndStop (19);
}
}
Instance of Symbol 282 MovieClip in Symbol 494 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 494 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 494 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 494 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 203 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 1;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -76;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 76;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 204 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 133) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 133) && (clicked <= 266)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 266) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 204 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -76;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 76;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 498 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Instance of Symbol 295 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 4;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 203 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -76;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 76;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -76;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 76;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 204 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 133) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 133) && (clicked <= 266)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 266) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 204 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 204 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 133) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 133) && (clicked <= 266)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 266) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 204 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 521 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Instance of Symbol 295 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 203 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -76;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 76;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 203 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
this._xscale = 76;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
this._xscale = -76;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 133) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 133) && (clicked <= 266)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 266) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 204 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 204 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 204 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 539 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Instance of Symbol 282 MovieClip in Symbol 568 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 568 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 568 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 568 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Symbol 581 MovieClip Frame 1
stop();
Symbol 581 MovieClip Frame 16
gotoAndStop (1);
Symbol 581 MovieClip Frame 80
_root.score = _root.score + 1000;
Symbol 581 MovieClip Frame 81
stop();
_root.finished();
Symbol 581 MovieClip Frame 82
prevFrame();
Instance of Symbol 295 MovieClip in Symbol 582 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 582 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 582 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 582 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 581 MovieClip in Symbol 582 MovieClip Frame 1
onClipEvent (load) {
amounttogo = 2050;
speed = 3;
going = 1;
countit = 0;
road = 1;
hurts = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
if (road == 1) {
this._xscale = 100;
} else if (road == 2) {
this._xscale = -100;
}
if (((_root.mario.jumping == true) && (_root.mario.hitTest(this.plateau))) && (hurts < 15)) {
this.play();
_root.mario.vel_y = 50;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
hurts++;
} else if (((_root.mario.jumping == true) && (_root.mario.hitTest(this.plateau))) && (hurts == 15)) {
this.gotoAndPlay(17);
_root.mario.vel_y = 50;
fail = new Sound();
fail.attachSound("fail");
fail.start();
}
if ((_root.mario.jumping == false) && (_root.mario.hitTest(this.plateau))) {
if (_root.mario.firehat == true) {
_root.mario.vel_y = 40;
_root.mario.firehat = false;
_root.mario.jumping = true;
_root.mario._y = _root.mario._y - 250;
_root.mario._x = _root.mario._x + 250;
pop = new Sound();
pop.attachSound("pop");
pop.start();
} else if (_root.mario.firehat == false) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
}
}
if ((_root.mario.hitTest(this.plateau2) || (_root.mario.hitTest(this.plateau3))) || (_root.mario.hitTest(this.plateau4))) {
if (_root.mario.firehat == true) {
_root.mario.vel_y = 40;
_root.mario.firehat = false;
_root.mario.jumping = true;
_root.mario._y = _root.mario._y - 250;
_root.mario._x = _root.mario._x + 250;
pop = new Sound();
pop.attachSound("pop");
pop.start();
} else if (_root.mario.firehat == false) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
}
}
if ((going == 1) && (road == 1)) {
this._x = this._x - speed;
countit = countit + speed;
if (countit >= amounttogo) {
road = 2;
countit = 0;
}
}
if ((going == 1) && (road == 2)) {
this._x = this._x + speed;
countit = countit + speed;
if (countit >= amounttogo) {
road = 1;
countit = 0;
}
}
}
}
Instance of Symbol 329 MovieClip in Symbol 582 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 582 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Symbol 598 Button
on (rollOver) {
_root.levelname = "wide desert";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level11 == true) {
stopAllSounds();
gotoAndStop (21);
}
}
Symbol 599 Button
on (rollOver) {
_root.levelname = "mushroom rock";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level12 == true) {
stopAllSounds();
gotoAndStop (22);
}
}
Symbol 600 Button
on (rollOver) {
_root.levelname = "rock top";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level13 == true) {
stopAllSounds();
gotoAndStop (23);
}
}
Symbol 604 Button
on (rollOver) {
_root.levelname = "world boss";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level14 == true) {
stopAllSounds();
gotoAndStop (24);
}
}
Instance of Symbol 282 MovieClip in Symbol 620 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 620 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 620 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 620 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 620 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 620 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 620 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Symbol 630 MovieClip Frame 1
chubba = true;
Symbol 630 MovieClip Frame 4
chubba = true;
Symbol 630 MovieClip Frame 7
chubba = true;
Symbol 630 MovieClip Frame 10
chubba = true;
Symbol 630 MovieClip Frame 13
chubba = true;
Symbol 630 MovieClip Frame 16
chubba = true;
Symbol 630 MovieClip Frame 19
chubba = true;
Symbol 630 MovieClip Frame 21
gotoAndPlay (1);
Symbol 630 MovieClip Frame 22
chubba = false;
Symbol 630 MovieClip Frame 35
_root.score = _root.score + 35;
Symbol 630 MovieClip Frame 36
stop();
Symbol 630 MovieClip Frame 37
prevFrame();
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 2;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 133) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 133) && (clicked <= 266)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 266) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 633 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Instance of Symbol 299 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 630 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 133) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 133) && (clicked <= 266)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 266) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 133) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 133) && (clicked <= 266)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 266) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 2;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if ((this.topper.hitTest(_root.mario.footz) && (_root.mario.into == false)) && (Key.isDown(40))) {
count++;
if (count == 15) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 630 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
chubba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._xscale = 100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._xscale = -100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (chubba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 194 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
shyguy = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 133) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 133) && (clicked <= 266)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 266) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(31);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
}
if (die == true) {
this._play();
}
if ((die == true) && (shyguy == true)) {
this.gotoAndPlay(31);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 665 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Symbol 679 MovieClip Frame 1
stop();
Symbol 679 MovieClip Frame 10
gotoAndStop (1);
Symbol 679 MovieClip Frame 91
stop();
_root.finished();
Symbol 679 MovieClip Frame 92
prevFrame();
Instance of Symbol 679 MovieClip in Symbol 682 MovieClip Frame 1
onClipEvent (load) {
amounttogo = 2050;
speed = 9;
going = 1;
countit = 0;
road = 1;
hurts = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
if (road == 1) {
this._xscale = -100;
} else if (road == 2) {
this._xscale = 100;
}
if (((_root.mario.jumping == true) && (_root.mario.hitTest(this.plateau))) && (hurts < 30)) {
this.play();
_root.mario.vel_y = 50;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
hurts++;
} else if (((_root.mario.jumping == true) && (_root.mario.hitTest(this.plateau))) && (hurts == 30)) {
this.gotoAndPlay(11);
_root.mario.vel_y = 50;
fail = new Sound();
fail.attachSound("fail");
fail.start();
}
if ((_root.mario.jumping == false) && (_root.mario.hitTest(this.plateau))) {
if (_root.mario.firehat == true) {
_root.mario.vel_y = 40;
_root.mario.firehat = false;
_root.mario.jumping = true;
_root.mario._y = _root.mario._y - 250;
_root.mario._x = _root.mario._x + 250;
pop = new Sound();
pop.attachSound("pop");
pop.start();
} else if ((_root.mario.firehat == false) && (_root.mario.death == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
}
}
if (((_root.mario.hitTest(this.plateau1) || (_root.mario.hitTest(this.plateau2))) || (_root.mario.hitTest(this.plateau3))) || (_root.mario.hitTest(this.plateau4))) {
if (_root.mario.firehat == true) {
_root.mario.vel_y = 40;
_root.mario.firehat = false;
_root.mario.jumping = true;
_root.mario._y = _root.mario._y - 250;
_root.mario._x = _root.mario._x + 250;
pop = new Sound();
pop.attachSound("pop");
pop.start();
} else if ((_root.mario.firehat == false) && (_root.mario.death == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
}
}
if ((going == 1) && (road == 1)) {
this._x = this._x - speed;
countit = countit + speed;
if (countit >= amounttogo) {
road = 2;
countit = 0;
}
}
if ((going == 1) && (road == 2)) {
this._x = this._x + speed;
countit = countit + speed;
if (countit >= amounttogo) {
road = 1;
countit = 0;
}
}
}
}
Instance of Symbol 329 MovieClip in Symbol 682 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 682 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Symbol 698 Button
on (rollOver) {
_root.levelname = "floor #1";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level15 == true) {
stopAllSounds();
gotoAndStop (26);
}
}
Symbol 699 Button
on (rollOver) {
_root.levelname = "floor #2";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level16 == true) {
stopAllSounds();
gotoAndStop (27);
}
}
Symbol 700 Button
on (rollOver) {
_root.levelname = "floor #3";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level17 == true) {
stopAllSounds();
gotoAndStop (28);
}
}
Symbol 704 Button
on (rollOver) {
_root.levelname = "world boss";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level18 == true) {
stopAllSounds();
gotoAndStop (29);
}
}
Symbol 706 Button
on (rollOver) {
_root.levelname = "game boss";
}
on (rollOut) {
_root.levelname = "";
}
on (release) {
if (_root.level19 == true) {
stopAllSounds();
gotoAndStop (30);
}
}
Instance of Symbol 282 MovieClip in Symbol 722 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 722 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 722 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 722 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 115 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 4;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 3;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 115 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 4;
die = false;
goomba = true;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 125) && (die == false)) {
this._x = this._x - speed;
clicked++;
} else if (((clicked > 125) && (clicked <= 250)) && (die == false)) {
this._x = this._x + speed;
clicked++;
} else if ((clicked > 250) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
die = true;
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
this.gotoAndPlay(22);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(22);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (goomba == true)) {
this.gotoAndPlay(22);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 299 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.rightside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkleft = false;
_root.mario._x = _root.mario._x + _root.mario.moveSpeed;
} else if (this.leftside.hitTest(_root.mario) && (!this.topper.hitTest(_root.mario))) {
_root.mario.walkright = false;
_root.mario._x = _root.mario._x - _root.mario.moveSpeed;
} else if (this.topper.hitTest(_root.mario) && (_root.mario.hulkmode == false)) {
_root.mario.walkleft = true;
_root.mario.walkright = true;
}
if (((this.topper.hitTest(_root.mario) && (_root.mario.into == false)) && (_root.mario.hulkmode == false)) && (Key.isDown(40))) {
count++;
if (count == 20) {
_root.mario.gotoAndStop(6);
_root.mario.into = true;
}
} else {
count = 0;
}
}
Instance of Symbol 327 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 280 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
taken = false;
count = 0;
counting = false;
}
onClipEvent (enterFrame) {
if ((taken == false) && (this.hitTest(_root.mario))) {
this.gotoAndPlay(20);
_root.coins++;
counting = true;
taken = true;
}
if ((counting == true) && (count < 12)) {
count++;
}
if (count >= 12) {
this._visible = false;
}
if (_root.paused == false) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 327 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (load) {
clicked = 0;
speed = 6;
die = false;
koopa = true;
hits = 0;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
this.play();
if ((clicked <= 80) && (die == false)) {
this._xscale = -100;
this._x = this._x + speed;
clicked++;
} else if (((clicked > 80) && (clicked <= 160)) && (die == false)) {
this._xscale = 100;
this._x = this._x - speed;
clicked++;
} else if ((clicked > 160) && (die == false)) {
clicked = 0;
}
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (die == false)) && (_root.mario.vel_y < 22)) {
_root.mario.vel_y = 37;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if ((((((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == false)) && (_root.mario.hulkmode == false)) && (_root.mario.firehat == false)) && (_root.mario.into == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.invinsible == true)) {
this.gotoAndPlay(41);
_root.mario.vel_y = 37;
_root.mario.jumping = true;
die = true;
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.firehat == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.firehat = false;
hits++;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
} else if (((this.hitTest(_root.mario) && (_root.mario.jumping == false)) && (die == false)) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 37;
_root.mario.jumping = true;
_root.mario.hulkmode = false;
_root.mario._yscale = 100;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
}
if ((hits == 2) && (die == false)) {
this.gotoAndPlay(41);
die = true;
}
if (die == true) {
this._play();
}
if ((die == true) && (koopa == true)) {
this.gotoAndPlay(41);
}
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 726 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Symbol 818 MovieClip Frame 30
stop();
Symbol 819 MovieClip Frame 1
stop();
Symbol 819 MovieClip Frame 16
gotoAndStop (1);
Symbol 819 MovieClip Frame 116
stop();
_root.finished();
Symbol 819 MovieClip Frame 117
prevFrame();
Instance of Symbol 282 MovieClip in Symbol 820 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 282 MovieClip in Symbol 820 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario) && (_root.mario.jumping == true)) {
_root.mario.blockFall = true;
}
}
Instance of Symbol 819 MovieClip in Symbol 821 MovieClip Frame 1
onClipEvent (load) {
amounttogo = 650;
speed = 4;
going = 1;
countit = 0;
road = 1;
hurts = 0;
die = false;
}
onClipEvent (enterFrame) {
if (_root.paused == false) {
if (road == 1) {
this._xscale = -100;
} else if (road == 2) {
this._xscale = 100;
}
if ((((((this.p1.hitTest(_root.mario) || (this.p2.hitTest(_root.mario))) || (this.p3.hitTest(_root.mario))) || (this.p4.hitTest(_root.mario))) || (this.p5.hitTest(_root.mario))) || (this.p6.hitTest(_root.mario))) || (this.p7.hitTest(_root.mario))) {
if (((_root.mario.jumping == true) && (hurts < 15)) && (_root.mario.hulkmode == true)) {
this.play();
_root.mario.vel_y = 50;
hurt = new Sound();
hurt.attachSound("hurt");
hurt.start();
hurts++;
} else if (((_root.mario.jumping == true) && (hurts == 15)) && (_root.mario.hulkmode == true)) {
this.gotoAndPlay(17);
_root.mario.vel_y = 50;
fail = new Sound();
fail.attachSound("fail");
fail.start();
die = true;
} else if ((_root.mario.jumping == false) && (_root.mario.hulkmode == true)) {
_root.mario.vel_y = 40;
_root.mario.hulkmode = false;
_root.mario.jumping = true;
_root.mario._y = _root.mario._y - 250;
_root.mario._x = _root.mario._x + 250;
pop = new Sound();
pop.attachSound("pop");
pop.start();
} else if ((_root.mario.jumping == false) && (_root.mario.hulkmode == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
} else if ((_root.mario.jumping == true) && (_root.mario.hulkmode == false)) {
_root.mario.vel_y = 40;
_root.mario.hulkmode = false;
_root.mario.jumping = true;
_root.mario._y = _root.mario._y - 250;
_root.mario._x = _root.mario._x + 250;
pop = new Sound();
pop.attachSound("pop");
pop.start();
}
}
if ((((((((((((((((((((((((((((this.x1.hitTest(_root.mario) || (this.x2.hitTest(_root.mario))) || (this.x3.hitTest(_root.mario))) || (this.x4.hitTest(_root.mario))) || (this.x5.hitTest(_root.mario))) || (this.x6.hitTest(_root.mario))) || (this.x7.hitTest(_root.mario))) || (this.x8.hitTest(_root.mario))) || (this.x9.hitTest(_root.mario))) || (this.x10.hitTest(_root.mario))) || (this.x11.hitTest(_root.mario))) || (this.x12.hitTest(_root.mario))) || (this.x13.hitTest(_root.mario))) || (this.x14.hitTest(_root.mario))) || (this.x15.hitTest(_root.mario))) || (this.x16.hitTest(_root.mario))) || (this.x17.hitTest(_root.mario))) || (this.x18.hitTest(_root.mario))) || (this.x19.hitTest(_root.mario))) || (this.x20.hitTest(_root.mario))) || (this.x21.hitTest(_root.mario))) || (this.x22.hitTest(_root.mario))) || (this.x23.hitTest(_root.mario))) || (this.x24.hitTest(_root.mario))) || (this.x25.hitTest(_root.mario))) || (this.x26.hitTest(_root.mario))) || (this.x27.hitTest(_root.mario))) || (this.x28.hitTest(_root.mario))) || (this.x29.hitTest(_root.mario))) {
if ((((((((!this.p1.hitTest(_root.mario)) && (!this.p2.hitTest(_root.mario))) && (!this.p3.hitTest(_root.mario))) && (!this.p4.hitTest(_root.mario))) && (!this.p5.hitTest(_root.mario))) && (!this.p6.hitTest(_root.mario))) && (!this.p7.hitTest(_root.mario))) && (this.hitTest(_root.mario))) {
if (_root.mario.hulkmode == true) {
_root.mario.vel_y = 40;
_root.mario.hulkmode = false;
_root.mario.jumping = true;
_root.mario._y = _root.mario._y - 250;
_root.mario._x = _root.mario._x + 250;
pop = new Sound();
pop.attachSound("pop");
pop.start();
} else if ((_root.mario.hulkmode == false) && (_root.mario.death == false)) {
_root.mario.death = true;
_root.mario.gotoAndStop(5);
}
}
}
if (((going == 1) && (road == 1)) && (die == false)) {
this._x = this._x - speed;
countit = countit + speed;
if (countit >= amounttogo) {
road = 2;
countit = 0;
}
}
if (((going == 1) && (road == 2)) && (die == false)) {
this._x = this._x + speed;
countit = countit + speed;
if (countit >= amounttogo) {
road = 1;
countit = 0;
}
}
}
}
Instance of Symbol 295 MovieClip in Symbol 821 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 2;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 295 MovieClip in Symbol 821 MovieClip Frame 1
onClipEvent (load) {
done = false;
}
onClipEvent (enterFrame) {
toadstoolnum = 2;
if (((this.hitTest(_root.mario) && (_root.mario.jumping == true)) && (_root.mario.hitTest(_root.level.ceiling))) && (done == false)) {
this.gotoAndPlay(74);
done = true;
}
if ((_root.paused == false) && (done == false)) {
this.play();
} else if (_root.paused == true) {
this.stop();
}
}
Instance of Symbol 329 MovieClip in Symbol 821 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 1;
}
}
Instance of Symbol 329 MovieClip in Symbol 821 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.sider = 2;
}
}
Symbol 850 MovieClip Frame 121
stop();
_root.finished();
Symbol 851 MovieClip Frame 1
stop();