Frame 1
stop();
Frame 2
fscommand ("fullscreen", "false");
fscommand ("allowscale", "false");
fscommand ("showmenu", "false");
current_bytes = this.getBytesLoaded();
tot_bytes = this.getBytesTotal();
percent = int((current_bytes / tot_bytes) * 100) + "% ";
if (current_bytes >= tot_bytes) {
gotoAndStop (5);
}
Frame 3
this.gotoAndPlay("loader");
Frame 4
stop();
Frame 5
c1 = _url.indexOf("://") + 3;
c2 = _url.indexOf("/", c1);
domain = _url.substring(c1, c2);
if ((domain == "216.55.181.4") || (domain == "www.ultimatearcade.com")) {
gotoAndStop (10);
} else {
gotoAndStop (10);
}
Frame 10
stop();
kill = new Sound();
kill.attachSound("kill");
_root.total_score = 0;
Instance of Symbol 174 MovieClip "rules" in Frame 10
onClipEvent (load) {
this._visible = 0;
}
Frame 11
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
score = 0;
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
level = 1;
_root.alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L1P1";
Instance of Symbol 178 MovieClip "platform2" in Frame 11
/* no clip actions */
Instance of Symbol 180 MovieClip "left" in Frame 11
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip "right" in Frame 11
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 192 MovieClip "mushroom" in Frame 11
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 11
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 11
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 11
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 283 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 11
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 389 MovieClip "health" in Frame 11
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 11
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 11
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 11
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 11
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 20
stop();
_root.levelpart = "L1P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 20
/* no clip actions */
Instance of Symbol 178 MovieClip "platform3" in Frame 20
onClipEvent (enterFrame) {
this._x = _root.ufo3._x - 35;
if (_root.hero.hitTest(this) && (_root.hero._y == 71.45)) {
_root.hero._x = this._x + 35;
}
}
Instance of Symbol 263 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo3" in Frame 20
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
if (this._x < 400) {
this._x = this._x + 3;
}
} else if ((this._x > 100) && (_root.hero._y > this._y)) {
this._x = this._x - 3;
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 20
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 20
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 20
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 454 MovieClip in Frame 20
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Frame 30
stop();
_root.levelpart = "L1P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 30
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 35;
if (_root.hero.hitTest(this) && (_root.hero._y == 278.25)) {
_root.hero._x = this._x + 35;
}
}
Instance of Symbol 178 MovieClip "platform2" in Frame 30
onClipEvent (enterFrame) {
this._y = _root.ufo2._y - 12;
if ((_root.hero.hitTest(this) && (_root.hero._y < 167.4)) && (_root.ufo2._y < 350)) {
if (_root.ufo2._y > 70) {
_root.hero._y = _root.hero._y - 1;
}
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 30
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
if ((this._x > 100) && (_root.hero._y == 278.25)) {
this._x = this._x - 3;
}
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo2" in Frame 30
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
if (this._y > 70) {
this._y = this._y - 1;
}
} else {
this.gotoAndStop(1);
if (this._y != 179.4) {
this._y = this._y + 1;
}
}
}
Instance of Symbol 270 MovieClip in Frame 30
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 30
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 30
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 454 MovieClip in Frame 30
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Frame 40
stop();
_root.levelpart = "L1P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 40
/* no clip actions */
Instance of Symbol 178 MovieClip "platform2" in Frame 40
onClipEvent (enterFrame) {
this._x = _root.ufo2._x - 35;
}
Instance of Symbol 178 MovieClip "platform4" in Frame 40
onClipEvent (enterFrame) {
this._y = _root.ufo4._y - 12;
}
Instance of Symbol 178 MovieClip "platform3" in Frame 40
onClipEvent (enterFrame) {
this._x = _root.ufo3._x - 35;
}
Instance of Symbol 263 MovieClip "ufo2" in Frame 40
onClipEvent (enterFrame) {
if ((_root.hero._y == 269.25) && (this._x < 350)) {
this._x = this._x + 5;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip "ufo4" in Frame 40
onClipEvent (enterFrame) {
if ((_root.hero._y == 69.95) && (this._y < 250)) {
this._y = this._y + 6;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo3" in Frame 40
onClipEvent (enterFrame) {
if ((_root.hero._y == 269.25) && (this._x > 350)) {
this._x = this._x - 5;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 40
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 40
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 40
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.ufo3._x;
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 40
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 454 MovieClip in Frame 40
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 454 MovieClip in Frame 40
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Frame 50
_root.hero.falling = true;
_root.levelpart = "L1P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform3" in Frame 50
/* no clip actions */
Instance of Symbol 180 MovieClip "left" in Frame 50
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip "right" in Frame 50
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 263 MovieClip in Frame 50
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 50
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 50
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 192 MovieClip "mushroom" in Frame 50
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 50
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 50
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 50
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Frame 60
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 60
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 60
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 70
gotoAndStop (11);
Frame 71
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L2P1";
Instance of Symbol 178 MovieClip "platform2" in Frame 71
onClipEvent (enterFrame) {
this._y = _root.ufo2._y - 12;
if ((_root.hero.hitTest(this) && (_root.hero._y < 330.3)) && (_root.ufo2._y < 250)) {
if (_root.ufo2._y > 200) {
_root.hero._y = _root.hero._y - 1;
}
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 71
/* no clip actions */
Instance of Symbol 251 MovieClip in Frame 71
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 71
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo2" in Frame 71
onClipEvent (load) {
this._y = 200;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(_root.ufo1.ufotop)) {
if (this._y < 250) {
this._y = this._y + 1;
}
} else if (this._y != 200) {
this._y = this._y - 1;
}
}
Instance of Symbol 263 MovieClip in Frame 71
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 71
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 71
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._y = _root.ufo2._y - 50;
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 71
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 454 MovieClip in Frame 71
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 71
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 492 MovieClip in Frame 71
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 71
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 389 MovieClip "health" in Frame 71
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 71
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 71
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 71
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 71
onClipEvent (enterFrame) {
this.herox = _root.monster._x;
}
Frame 80
stop();
_root.levelpart = "L2P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform2" in Frame 80
/* no clip actions */
Instance of Symbol 178 MovieClip "platform3" in Frame 80
/* no clip actions */
Instance of Symbol 178 MovieClip "platform4" in Frame 80
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 80
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 80
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 80
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 80
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 80
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 80
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 80
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 80
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Frame 90
stop();
_root.levelpart = "L2P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform3" in Frame 90
onClipEvent (enterFrame) {
this._y = _root.ufo1._y - 12;
if (_root.hero.hitTest(this) && (_root.hero._y < 284)) {
if (_root.ufo1._y > 195) {
_root.hero._y = _root.hero._y - 1;
}
}
}
Instance of Symbol 178 MovieClip "platform4" in Frame 90
onClipEvent (enterFrame) {
this._y = _root.ufo2._y - 12;
}
Instance of Symbol 180 MovieClip "left" in Frame 90
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip "right" in Frame 90
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 90
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
if (this._y > 195) {
this._y = this._y - 1;
}
} else {
this.gotoAndStop(1);
if ((this._y < 295) and (_root.hero._x > 450)) {
this._y = this._y + 1;
}
}
}
Instance of Symbol 251 MovieClip "ufo2" in Frame 90
onClipEvent (enterFrame) {
if (((_root.hero._y < 185) && (this._y > 200)) and (_root.hero._x > 450)) {
this._y = this._y - 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 192 MovieClip "mushroom" in Frame 90
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 90
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 90
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Frame 100
stop();
_root.levelpart = "L2P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform3" in Frame 100
/* no clip actions */
Instance of Symbol 178 MovieClip "platform5" in Frame 100
/* no clip actions */
Instance of Symbol 180 MovieClip "left" in Frame 100
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip "right" in Frame 100
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 454 MovieClip in Frame 100
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 454 MovieClip in Frame 100
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 263 MovieClip in Frame 100
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 100
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 100
onClipEvent (enterFrame) {
if ((((_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) and (_root.oil1._currentframe == 2)) and (_root.oil2._currentframe == 2)) and (_root.oil3._currentframe == 2)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 100
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 100
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 100
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil2" in Frame 100
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 100
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil3" in Frame 100
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Frame 110
_root.hero.falling = true;
_root.levelpart = "L2P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform2" in Frame 110
/* no clip actions */
Instance of Symbol 251 MovieClip in Frame 110
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 110
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 454 MovieClip in Frame 110
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
_root.oil._x = this._x;
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 454 MovieClip in Frame 110
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
_root.oil1._x = this._x;
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 110
onClipEvent (load) {
this.bshadow.gotoAndStop(2);
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.one._x;
if (this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 110
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil" in Frame 110
onClipEvent (load) {
this.bshadow.gotoAndStop(2);
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.one._x;
if (this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Frame 120
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 120
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 120
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 130
gotoAndStop (71);
Frame 131
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L3P1";
Instance of Symbol 178 MovieClip "platform3" in Frame 131
onClipEvent (enterFrame) {
this._x = _root.ufo2._x - 35;
if ((_root.hero.hitTest(this) && (_root.hero._y == 82.15)) && (_root.ufo2._x < 450)) {
_root.hero._x = this._x + 35;
}
}
Instance of Symbol 178 MovieClip "platform2" in Frame 131
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 35;
if (_root.hero.hitTest(this) && (_root.hero._y == 176.9)) {
_root.hero._x = this._x + 35;
}
}
Instance of Symbol 180 MovieClip "left" in Frame 131
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip "right" in Frame 131
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 131
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
onClipEvent (load) {
speed = 7;
done = "";
stop = "";
xhome = this._x;
distance = 300;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
Instance of Symbol 263 MovieClip "ufo2" in Frame 131
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
if ((_root.hero._y == 82.15) && (this._x < 450)) {
this._x = this._x + 5;
}
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 131
onClipEvent (enterFrame) {
if ((((_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) and (_root.oil1._currentframe == 2)) and (_root.oil2._currentframe == 2)) and (_root.oil3._currentframe == 2)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 192 MovieClip "mushroom" in Frame 131
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 131
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.ufo1._x;
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil3" in Frame 131
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil2" in Frame 131
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 131
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 283 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 131
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 389 MovieClip "health" in Frame 131
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 131
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 131
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip in Frame 131
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 131
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 140
stop();
_root.levelpart = "L3P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 140
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil3" in Frame 140
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil2" in Frame 140
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 140
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 70 MovieClip in Frame 140
onClipEvent (load) {
speed = 8;
done = "";
stop = "";
xhome = this._x;
distance = 300;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
onClipEvent (enterFrame) {
_root.lastXPosition = this._x;
this._y = _root.hero._y - 100;
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
_root.kill.start();
}
}
Frame 150
stop();
_root.levelpart = "L3P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 150
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 50;
}
Instance of Symbol 251 MovieClip "ufo1" in Frame 150
onClipEvent (enterFrame) {
if ((this._x < 100) and (_root.oil1._currentframe == 2)) {
this._x = this._x + 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 150
onClipEvent (enterFrame) {
if ((_root.hero._x > 450) and (this._x < 800)) {
this._x = this._x + 4;
}
}
Instance of Symbol 454 MovieClip in Frame 150
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 454 MovieClip in Frame 150
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 150
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if (this._parent.hero.hitTest(this) && (this._currentFrame == 1)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Frame 160
stop();
_root.levelpart = "L3P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform5" in Frame 160
onClipEvent (enterFrame) {
this._x = _root.ufo5._x - 50;
this._y = _root.ufo5._y - 12;
}
Instance of Symbol 251 MovieClip "ufo5" in Frame 160
onClipEvent (enterFrame) {
if ((((((_root.countdown.time == 0) and (this._y < 200)) and (_root.oil1._currentframe == 2)) and (_root.oil2._currentframe == 2)) and (_root.oil3._currentframe == 2)) and (_root.oil4._currentframe == 2)) {
this._y = this._y + 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo4" in Frame 160
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo3" in Frame 160
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo2" in Frame 160
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 160
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 515 MovieClip "countdown" in Frame 160
onClipEvent (load) {
this.time = 60;
}
onClipEvent (enterFrame) {
if (this.time > 0) {
this.gotoAndStop(2);
}
if (this.time == 0) {
this.gotoAndStop(3);
}
}
Instance of Symbol 270 MovieClip "oil4" in Frame 160
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil3" in Frame 160
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil2" in Frame 160
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 160
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 160
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Frame 170
_root.hero.falling = true;
_root.levelpart = "L3P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform2" in Frame 170
/* no clip actions */
Instance of Symbol 178 MovieClip "platform3" in Frame 170
/* no clip actions */
Instance of Symbol 178 MovieClip "platform4" in Frame 170
/* no clip actions */
Instance of Symbol 178 MovieClip "platform5" in Frame 170
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 170
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 170
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 170
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 170
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 170
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 170
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 170
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 170
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 170
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 170
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 170
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 70 MovieClip in Frame 170
onClipEvent (load) {
speed = 8;
done = "";
stop = "";
xhome = this._x;
distance = 300;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
onClipEvent (enterFrame) {
_root.lastXPosition = this._x;
this._y = _root.hero._y - 100;
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
_root.kill.start();
}
}
Frame 180
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 180
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 180
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 190
gotoAndStop (131);
Frame 191
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L4P1";
Instance of Symbol 178 MovieClip "platform3" in Frame 191
/* no clip actions */
Instance of Symbol 178 MovieClip "platform5" in Frame 191
onClipEvent (enterFrame) {
this._x = _root.ufo4._x - 50;
}
Instance of Symbol 178 MovieClip "platform2" in Frame 191
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 35;
if (_root.hero.hitTest(this) && (_root.hero._y == 176.9)) {
_root.hero._x = this._x + 35;
}
}
Instance of Symbol 178 MovieClip "platform4" in Frame 191
/* no clip actions */
Instance of Symbol 180 MovieClip "left" in Frame 191
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip "right" in Frame 191
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 263 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 191
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
onClipEvent (load) {
speed = 9;
done = "";
stop = "";
xhome = this._x;
distance = 300;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
onClipEvent (enterFrame) {
_root.lastXPosition = this._x;
}
Instance of Symbol 192 MovieClip "mushroom" in Frame 191
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 191
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.ufo1._x;
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 191
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil2" in Frame 191
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 191
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip "ufo4" in Frame 191
onClipEvent (enterFrame) {
if (((_root.oil1._currentframe == 2) and (_root.oil2._currentframe == 2)) and (this._x > 650)) {
this._x = this._x - 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 191
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 492 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 191
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 389 MovieClip "health" in Frame 191
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 191
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 191
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 191
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 191
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 200
stop();
_root.levelpart = "L4P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform3" in Frame 200
/* no clip actions */
Instance of Symbol 178 MovieClip "platform6" in Frame 200
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 50;
}
Instance of Symbol 178 MovieClip "platform4" in Frame 200
/* no clip actions */
Instance of Symbol 178 MovieClip "platform5" in Frame 200
/* no clip actions */
Instance of Symbol 251 MovieClip "ufo1" in Frame 200
onClipEvent (enterFrame) {
if ((_root.oil1._currentframe == 2) and (this._x < 50)) {
this._x = this._x + 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 283 MovieClip in Frame 200
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 192 MovieClip "mushroom" in Frame 200
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 200
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 200
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 200
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 200
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 200
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 200
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 454 MovieClip in Frame 200
onClipEvent (load) {
xmoving = this.speed;
this.speed = 7;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 7;
this.gotoAndStop("right");
} else {
this._x = this._x - 7;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 492 MovieClip in Frame 200
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 200
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 200
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Frame 210
stop();
_root.levelpart = "L4P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform6" in Frame 210
onClipEvent (enterFrame) {
this._y = _root.ufo6._y - 12;
}
Instance of Symbol 178 MovieClip "platform1" in Frame 210
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 38;
}
Instance of Symbol 180 MovieClip "left" in Frame 210
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 30;
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 50;
}
}
Instance of Symbol 180 MovieClip "right" in Frame 210
onClipEvent (enterFrame) {
this._x = _root.ufo1._x + 30;
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 50;
}
}
Instance of Symbol 251 MovieClip "ufo6" in Frame 210
onClipEvent (enterFrame) {
if (((((_root.oil1._currentframe == 2) and (_root.oil2._currentframe == 2)) and (_root.oil3._currentframe == 2)) and (_root.oil4._currentframe == 2)) and (this._y > 300)) {
this._y = this._y - 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 210
onClipEvent (load) {
this.gotoAndStop(2);
speed = 6;
done = "";
stop = "";
xhome = this._x;
distance = 250;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
onClipEvent (enterFrame) {
if (((((_root.oil1._currentframe == 2) and (_root.oil2._currentframe == 2)) and (_root.oil3._currentframe == 2)) and (_root.oil4._currentframe == 2)) and (this._x != 0)) {
this._x = this._x - 6;
stop = "yes";
}
}
Instance of Symbol 192 MovieClip "mushroom2" in Frame 210
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
this._x = _root.ufo1._x;
if (_root.hero.hitTest(this) && (_root.hero._y == 258.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 210
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 210
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil2" in Frame 210
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil3" in Frame 210
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil4" in Frame 210
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 210
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 210
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 210
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 210
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Frame 220
stop();
_root.levelpart = "L4P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform4" in Frame 220
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 220
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 220
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 220
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 220
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 220
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 220
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 283 MovieClip in Frame 220
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 542 MovieClip in Frame 220
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this)) {
_root.hero._y--;
}
}
Frame 230
_root.hero.falling = true;
_root.levelpart = "L4P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform5" in Frame 230
onClipEvent (enterFrame) {
this._x = _root.ufo5._x - 50;
}
Instance of Symbol 251 MovieClip "ufo5" in Frame 230
onClipEvent (enterFrame) {
if (((_root.oil1._currentframe == 2) and (_root.oil2._currentframe == 2)) and (this._x > 636)) {
this._x = this._x - 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 230
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil2" in Frame 230
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 542 MovieClip in Frame 230
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this)) {
_root.hero._y = _root.hero._y - 4;
}
}
Instance of Symbol 542 MovieClip in Frame 230
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this)) {
_root.hero._y = _root.hero._y - 4;
}
}
Instance of Symbol 492 MovieClip in Frame 230
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 230
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 230
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 230
onClipEvent (load) {
speed = 10;
done = "";
stop = "";
xhome = this._x;
distance = 290;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
Frame 240
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 240
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 250
gotoAndStop (191);
Frame 251
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L5P1";
Instance of Symbol 178 MovieClip "platform4" in Frame 251
/* no clip actions */
Instance of Symbol 178 MovieClip "platform5" in Frame 251
onClipEvent (enterFrame) {
this._x = _root.ufo2._x - 50;
}
Instance of Symbol 180 MovieClip in Frame 251
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip in Frame 251
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 180 MovieClip in Frame 251
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip in Frame 251
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 263 MovieClip in Frame 251
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip "ufo2" in Frame 251
onClipEvent (enterFrame) {
if ((_root.oil1._currentframe == 2) and (this._x < 100)) {
this._x = this._x + 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 192 MovieClip "mushroom" in Frame 251
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 192 MovieClip "mushroom3" in Frame 251
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 251
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip in Frame 251
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 251
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 283 MovieClip in Frame 251
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 251
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 70 MovieClip in Frame 251
onClipEvent (load) {
speed = 8;
done = "";
stop = "";
xhome = this._x;
distance = 300;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
_root.kill.start();
}
}
Instance of Symbol 492 MovieClip in Frame 251
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 389 MovieClip "health" in Frame 251
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 251
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 251
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 251
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 251
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 260
stop();
_root.levelpart = "L5P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 260
/* no clip actions */
Instance of Symbol 178 MovieClip "platform2" in Frame 260
onClipEvent (enterFrame) {
this._x = _root.ufo2._x - 35;
if (_root.hero.hitTest(this) && (_root.hero._y == 122.9)) {
_root.hero._x = this._x + 35;
}
}
Instance of Symbol 178 MovieClip "platform3" in Frame 260
onClipEvent (enterFrame) {
this._y = _root.ufo3._y - 12;
}
Instance of Symbol 263 MovieClip "ufo2" in Frame 260
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
onClipEvent (load) {
speed = 5;
done = "";
stop = "";
xhome = this._x;
distance = 100;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
Instance of Symbol 251 MovieClip "ufo3" in Frame 260
onClipEvent (enterFrame) {
if ((_root.oil1._currentframe == 2) && (this._y < 150)) {
this._y = this._y + 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 260
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.ufo2._x;
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 454 MovieClip in Frame 260
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 492 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 70 MovieClip in Frame 260
onClipEvent (load) {
speed = 8;
done = "";
stop = "";
xhome = this._x;
distance = 300;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
onClipEvent (enterFrame) {
_root.lastXPosition = this._x;
this._y = _root.hero._y - 100;
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
_root.kill.start();
}
}
Instance of Symbol 542 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) and (_root.hero._y <= 264.45)) {
_root.hero._y--;
}
}
Frame 270
stop();
_root.levelpart = "L5P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 270
onClipEvent (enterFrame) {
this._y = _root.ufo1._y - 12;
this._x = _root.ufo1._x - 35;
if (_root.hero.hitTest(this) && (_root.hero._y <= 296.35)) {
if (_root.ufo1._y > 183.35) {
_root.hero._y = _root.hero._y - 1;
}
if ((_root.hero.hitTest(this) && (_root.ufo1._y < 183.5)) and (_root.ufo1._x > 100)) {
_root.hero._x = _root.hero._x - 2;
}
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 270
onClipEvent (enterFrame) {
if ((this._y < 293.35) and (this._currentframe == 1)) {
this._y = this._y + 4;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
if (this._y > 183.35) {
this._y--;
}
if ((this._y < 183.5) and (this._x > 100)) {
this._x = this._x - 2;
}
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip in Frame 270
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.ufo2._x;
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 454 MovieClip in Frame 270
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
_root.oil._x = this._x;
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 454 MovieClip in Frame 270
onClipEvent (load) {
xmoving = this.speed;
this.speed = 5;
}
onClipEvent (enterFrame) {
_root.bomb._x = this._x;
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + 5;
this.gotoAndStop("right");
} else {
this._x = this._x - 5;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 492 MovieClip "bomb" in Frame 270
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 492 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 270 MovieClip "oil" in Frame 270
onClipEvent (load) {
this.bshadow.gotoAndStop(2);
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.one._x;
if (this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Frame 280
stop();
_root.levelpart = "L5P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform2" in Frame 280
onClipEvent (enterFrame) {
this._y = _root.ufo1._y - 12;
this._x = _root.ufo1._x - 35;
if (_root.hero.hitTest(this)) {
if ((_root.ufo1._y > 283.4) and (_root.hero._y <= 301.9)) {
_root.hero._y = _root.hero._y - 1;
}
}
if (_root.hero.hitTest(this) and (_root.ufo1._currentframe == 2)) {
_root.hero._x = this._x + 35;
}
}
Instance of Symbol 180 MovieClip in Frame 280
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 45;
}
}
Instance of Symbol 180 MovieClip in Frame 280
onClipEvent (enterFrame) {
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 45;
}
}
Instance of Symbol 178 MovieClip "platform3" in Frame 280
onClipEvent (enterFrame) {
this._x = _root.ufo2._x - 35;
if (_root.hero.hitTest(this) && (_root.hero._y == 122.9)) {
_root.hero._x = this._x + 35;
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 280
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
if ((this._y > 283.4) and (this._currentframe == 2)) {
this._y--;
}
if (((this._y < 283.5) and (this._currentframe == 2)) and (_root.hero._y > 120)) {
this._x = this._x + 7;
}
} else {
this.gotoAndStop(1);
if ((((this._y < 283.5) and (this._currentframe == 1)) and (this._x < 900)) and (_root.hero._y > 120)) {
this._x = this._x + 7;
} else if ((_root.hero._y < 120) and (this._x > 100)) {
this._x = this._x - 4;
}
}
}
Instance of Symbol 192 MovieClip "mushroom" in Frame 280
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this) && (_root.hero._y == 286.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo2" in Frame 280
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
onClipEvent (load) {
speed = 5;
done = "";
stop = "";
xhome = this._x;
distance = 500;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 280
onClipEvent (load) {
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this._x = _root.ufo2._x;
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
}
}
Instance of Symbol 454 MovieClip in Frame 280
onClipEvent (load) {
xmoving = this.speed;
this.speed = 6;
}
onClipEvent (enterFrame) {
if ((_root.hero._y > 345) && (_root.alive == "yes")) {
if (this._x < _root.hero._x) {
this._x = this._x + speed;
this.gotoAndStop("right");
} else {
this._x = this._x - speed;
this.gotoAndStop("left");
}
if (_root.hero.shape.hitTest(this.heart)) {
_root.health.nextFrame();
xmoving = 0;
_root.kill.start();
}
}
}
onClipEvent (enterFrame) {
if ((_root.hero._y < 345) || (_root.alive == "no")) {
xmoving = 0;
this.gotoAndStop("wait");
}
}
Instance of Symbol 492 MovieClip in Frame 280
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
}
Frame 290
_root.hero.falling = true;
_root.levelpart = "L5P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform2" in Frame 290
onClipEvent (enterFrame) {
this._x = _root.ufo2._x - 50;
}
Instance of Symbol 178 MovieClip "platform1" in Frame 290
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 38;
}
Instance of Symbol 180 MovieClip "left" in Frame 290
onClipEvent (enterFrame) {
this._x = _root.ufo1._x - 30;
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x - 50;
}
}
Instance of Symbol 180 MovieClip "right" in Frame 290
onClipEvent (enterFrame) {
this._x = _root.ufo1._x + 30;
if (_root.hero.shape.hitTest(this) && (_root.hero._y > 275)) {
_root.hero._x = this._x + 50;
}
}
Instance of Symbol 251 MovieClip "ufo2" in Frame 290
onClipEvent (load) {
this.score = 0;
}
onClipEvent (enterFrame) {
if ((this.score > 15) and (this._x > 600)) {
this._x = this._x - 2;
}
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip "ufo1" in Frame 290
onClipEvent (load) {
this.gotoAndStop(2);
speed = 3;
done = "";
stop = "";
xhome = this._x;
distance = 250;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
Instance of Symbol 192 MovieClip "mushroom2" in Frame 290
onClipEvent (load) {
fx2 = new sound();
fx2.attachSound("fx2");
}
onClipEvent (enterFrame) {
this._x = _root.ufo1._x;
if (_root.hero.hitTest(this) && (_root.hero._y == 258.3)) {
this.gotoAndPlay(2);
fx2.start();
fx2.setVolume(100);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 270 MovieClip "oil3" in Frame 290
onClipEvent (load) {
this.bshadow.gotoAndStop(2);
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this.bshadow.gotoAndStop(2);
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
_root.ufo2.score++;
}
}
Instance of Symbol 270 MovieClip "oil2" in Frame 290
onClipEvent (load) {
this.bshadow.gotoAndStop(2);
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this.bshadow.gotoAndStop(2);
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
_root.ufo2.score++;
}
}
Instance of Symbol 270 MovieClip "oil1" in Frame 290
onClipEvent (load) {
this.bshadow.gotoAndStop(2);
this.gotoAndStop(1);
fx1 = new sound();
fx1.attachSound("fx1");
}
onClipEvent (enterFrame) {
this.bshadow.gotoAndStop(2);
if ((this._parent.hero.shape.hitTest(this) && (this._currentFrame == 1)) && ((_root.hero._y - 40) < this._y)) {
_root.score = _root.score + 100;
fx1.start();
this.gotoAndStop(2);
_root.ufo2.score++;
}
}
Instance of Symbol 492 MovieClip in Frame 290
onClipEvent (load) {
speed = 10;
done = "";
stop = "";
xhome = this._x;
distance = 290;
rand = random(2);
if (rand == 1) {
xmov = speed;
} else {
xmov = -speed;
}
}
onClipEvent (enterFrame) {
if (this._parent.hero.shape.hitTest(this)) {
this.gotoAndStop(2);
}
if (stop != "yes") {
if (xmov > 0) {
if (this._x < (xhome + distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
} else if (xmov < 0) {
if (this._x > (xhome - distance)) {
this._x = this._x + xmov;
} else {
xmov = -xmov;
}
}
}
}
Frame 300
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 300
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 300
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.gotoAndStop("win", 1);
}
}
Frame 310
gotoAndStop (251);
Frame 311
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L6P1";
Instance of Symbol 178 MovieClip "platform1" in Frame 311
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 311
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 311
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 311
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 311
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 311
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 389 MovieClip "health" in Frame 311
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 311
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 311
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 311
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 311
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 320
stop();
_root.levelpart = "L6P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 320
/* no clip actions */
Frame 330
stop();
_root.levelpart = "L6P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 330
/* no clip actions */
Frame 340
stop();
_root.levelpart = "L6P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 340
/* no clip actions */
Frame 350
_root.hero.falling = true;
_root.levelpart = "L6P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 350
/* no clip actions */
Frame 360
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 360
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 360
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 370
gotoAndStop (311);
Frame 371
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L7P1";
Instance of Symbol 178 MovieClip "platform1" in Frame 371
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 371
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 371
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 371
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 371
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 371
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 389 MovieClip "health" in Frame 371
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 371
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 371
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 371
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 371
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 380
stop();
_root.levelpart = "L7P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 380
/* no clip actions */
Frame 390
stop();
_root.levelpart = "L7P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 390
/* no clip actions */
Frame 400
stop();
_root.levelpart = "L7P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 400
/* no clip actions */
Frame 410
_root.hero.falling = true;
_root.levelpart = "L7P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 410
/* no clip actions */
Frame 420
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 420
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 420
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 430
gotoAndStop (371);
Frame 431
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L8P1";
Instance of Symbol 178 MovieClip "platform1" in Frame 431
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 431
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 431
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 431
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 431
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 431
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 389 MovieClip "health" in Frame 431
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 431
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 431
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 431
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 431
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 440
stop();
_root.levelpart = "L8P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 440
/* no clip actions */
Frame 450
stop();
_root.levelpart = "L8P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 450
/* no clip actions */
Frame 460
stop();
_root.levelpart = "L8P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 460
/* no clip actions */
Frame 470
_root.hero.falling = true;
_root.levelpart = "L8P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 470
/* no clip actions */
Frame 480
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 480
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 480
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 490
gotoAndStop (431);
Frame 491
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L9P1";
Instance of Symbol 178 MovieClip "platform1" in Frame 491
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 491
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 491
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 389 MovieClip "health" in Frame 491
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 491
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 491
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 491
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 491
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 500
stop();
_root.levelpart = "L9P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 500
/* no clip actions */
Frame 510
stop();
_root.levelpart = "L9P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 510
/* no clip actions */
Frame 520
stop();
_root.levelpart = "L9P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 520
/* no clip actions */
Frame 530
_root.hero.falling = true;
_root.levelpart = "L9P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 530
/* no clip actions */
Frame 540
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 540
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 540
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 550
gotoAndStop (491);
Frame 551
_root.score = _root.total_score;
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
stop();
_root.timer.timer = 0;
stop = "no";
eat = 1;
pain = 1;
alive = "yes";
_root.fade.gotoAndPlay(1);
_root.levelpart = "L10P1";
Instance of Symbol 178 MovieClip "platform1" in Frame 551
/* no clip actions */
Instance of Symbol 263 MovieClip in Frame 551
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 263 MovieClip in Frame 551
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 251 MovieClip in Frame 551
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.ufotop) && (_root.hero._y < this._y)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 272 MovieClip "shadow" in Frame 551
onClipEvent (enterFrame) {
this._x = _root.hero._x;
if ((_root.hero._y < 356) || (_root.hero._y > 357.25)) {
this.gotoAndStop(2);
} else if ((_root.hero._y > 356) and (_root.hero._currentFrame != 8)) {
this.gotoAndStop(1);
}
}
Instance of Symbol 364 MovieClip "hero" in Frame 551
onClipEvent (load) {
move = 0;
lock = true;
this.mario.gotoAndStop(1);
}
onClipEvent (keyDown) {
this.mario.play();
}
onClipEvent (keyUp) {
this.mario.play();
}
onClipEvent (enterFrame) {
if (move == 0) {
if (lock) {
this._x = this._x + Xstep;
Ystep = 0;
Xstep = 0;
if (Key.isDown(37) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = -15;
} else {
Xstep = -8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("left");
this.mario.play();
}
} else if (Key.isDown(39) and (_root.alive == "yes")) {
if (this.rising == true) {
Xstep = 15;
} else {
Xstep = 8;
}
Ystep = 0;
if (this.rising == false) {
this.gotoAndStop("right");
this.mario.play();
}
} else if (Key.isDown(40) and (_root.alive == "yes")) {
if (_root.direction == 0) {
this.gotoAndStop("sitleft");
} else {
this.gotoAndStop("sitright");
}
} else {
this.mario.gotoAndStop(1);
}
}
}
}
onClipEvent (enterFrame) {
render();
if (_root.alive == "no") {
_root.hero.gotoAndStop("dead");
}
}
onClipEvent (enterFrame) {
if (this._x <= 35) {
this._x = 35;
}
if (this._x >= 690) {
this._x = 690;
}
}
Instance of Symbol 389 MovieClip "health" in Frame 551
onClipEvent (enterFrame) {
if (_root.hero._y > 376.25) {
this.gotoAndStop("dead");
_root.fall._x = _root.hero._x;
}
}
Instance of Symbol 391 MovieClip "timer" in Frame 551
onClipEvent (load) {
function renew() {
time = new Date();
master = time.gettime();
}
renew();
}
onClipEvent (enterFrame) {
if (_root.stop != "yes") {
time = new Date();
timer = 120 - int((time.getTime() - master) / 1000);
}
}
onClipEvent (enterFrame) {
if (_root.timer.timer == 0) {
_root.stop = "yes";
}
}
Instance of Symbol 418 MovieClip "bgmusicloop" in Frame 551
onClipEvent (load) {
this.gotoAndPlay(2);
}
Instance of Symbol 420 MovieClip "heroy" in Frame 551
onClipEvent (enterFrame) {
this.heroy = _root.hero._y;
}
Instance of Symbol 422 MovieClip in Frame 551
onClipEvent (enterFrame) {
this.herox = _root.hero._x;
}
Frame 560
stop();
_root.levelpart = "L10P2";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 560
/* no clip actions */
Frame 570
stop();
_root.levelpart = "L10P3";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 570
/* no clip actions */
Frame 580
stop();
_root.levelpart = "L10P4";
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 580
/* no clip actions */
Frame 590
_root.hero.falling = true;
_root.levelpart = "L10P5";
stop();
_root.fade.gotoAndPlay(1);
_root.hero._x = 35;
_root.hero._y = 357;
_root.hero.gotoAndStop("right");
maxPlatforms = 0;
for (i in this) {
if ((typeof(eval (i)) == "movieclip") && ((substring(i, 1, 5)) == "platf")) {
maxPlatforms++;
}
}
Instance of Symbol 178 MovieClip "platform1" in Frame 590
/* no clip actions */
Frame 600
stop();
stop = "yes";
stopAllSounds();
_root.total_score = _root.score;
_root.next._visible = 0;
Instance of Symbol 477 MovieClip in Frame 600
onClipEvent (enterFrame) {
if (_root.level == 1) {
this.gotoAndStop(1);
}
if (_root.level == 2) {
this.gotoAndStop(2);
}
if (_root.level == 3) {
this.gotoAndStop(3);
}
if (_root.level == 4) {
this.gotoAndStop(4);
}
if (_root.level == 5) {
this.gotoAndStop(5);
}
if (_root.level == 6) {
this.gotoAndStop(6);
}
if (_root.level == 7) {
this.gotoAndStop(7);
}
if (_root.level == 8) {
this.gotoAndStop(8);
}
if (_root.level == 9) {
this.gotoAndStop(9);
}
if (_root.level == 10) {
this.gotoAndStop(10);
}
}
Instance of Symbol 480 MovieClip in Frame 600
onClipEvent (load) {
_root.hidecontinue = "yes";
points = new sound();
points.attachSound("points");
bonus = new sound();
bonus.attachSound("bonus");
}
onClipEvent (enterFrame) {
if (_root.timer.timer > 0) {
_root.timer.timer = _root.timer.timer - 1;
_root.total_score = _root.total_score + 15;
_root.score = _root.total_score;
bonus.start();
}
if ((_root.totalhealth > 0) && (_root.timer.timer == 0)) {
_root.totalhealth = _root.totalhealth - 10;
_root.total_score = _root.total_score + 50;
_root.score = _root.total_score;
bonus.start();
if (_root.totalhealth > 250) {
_root.health.nextFrame();
_root.health.cell.gotoAndStop(2);
}
}
}
onClipEvent (enterFrame) {
if (((_root.timer.timer == 0) && (_root.hidecontinue == "yes")) && (_root.totalhealth == 0)) {
_root.hidecontinue = "no";
_root.next._visible = 1;
_root.next.gotoAndPlay(2);
}
}
Frame 610
gotoAndStop (551);
Frame 611
stop();
stop();
loadMovieNum ("http://www.ultimatearcade.com/00games/adventure/set1/squeaky/updates.swf", 11);
Instance of Symbol 638 MovieClip in Frame 611
onClipEvent (enterFrame) {
if (_root.total_score > 100) {
this.total_score = _root.total_score;
} else {
this.total_score = _root.score;
}
}
Symbol 34 MovieClip Frame 112
_root.gotoAndStop("loader");
Symbol 39 MovieClip Frame 10
stop();
Symbol 41 Button
on (release) {
getURL ("http://www.ultimatearcade.com/", "_blank");
}
Symbol 47 MovieClip Frame 9
gotoAndPlay (1);
Symbol 80 Button
on (release) {
_root.gotoAndStop("level1");
}
Symbol 85 Button
on (release) {
getURL ("http://www.ultimatearcade.com/", "_blank");
}
Symbol 89 Button
on (release) {
getURL ("http://www.ultimatearcade.com/downloads/", "_blank");
}
Symbol 93 Button
on (release) {
getURL ("http://www.ultimatearcade.com/maillist/signup.html", "_blank");
}
Symbol 94 MovieClip Frame 1
stop();
Symbol 112 Button
on (release) {
_root.rules._visible = 1;
_root.rules.gotoAndStop(1);
}
Symbol 125 Button
on (release) {
nextFrame();
_root.rules.flash.gotoAndPlay(1);
}
Symbol 131 Button
on (release) {
_root.rules._visible = 0;
}
Symbol 137 MovieClip Frame 3
stop();
Symbol 174 MovieClip Frame 1
stop();
Symbol 192 MovieClip Frame 1
stop();
Symbol 192 MovieClip Frame 2
stop();
Symbol 250 MovieClip Frame 44
stop();
if (_root.levelpart == "L1P1") {
_root.gotoAndStop("L1 part 2");
}
if (_root.levelpart == "L1P2") {
_root.gotoAndStop("L1 part 3");
}
if (_root.levelpart == "L1P3") {
_root.gotoAndStop("L1 part 4");
}
if (_root.levelpart == "L1P4") {
_root.gotoAndStop("L1 part 5");
}
if (_root.levelpart == "L1P5") {
_root.gotoAndStop("End Level 1");
}
if (_root.levelpart == "L2P1") {
_root.gotoAndStop("L2 part 2");
}
if (_root.levelpart == "L2P2") {
_root.gotoAndStop("L2 part 3");
}
if (_root.levelpart == "L2P3") {
_root.gotoAndStop("L2 part 4");
}
if (_root.levelpart == "L2P4") {
_root.gotoAndStop("L2 part 5");
}
if (_root.levelpart == "L2P5") {
_root.gotoAndStop("End Level 2");
}
if (_root.levelpart == "L3P1") {
_root.gotoAndStop("L3 part 2");
}
if (_root.levelpart == "L3P2") {
_root.gotoAndStop("L3 part 3");
}
if (_root.levelpart == "L3P3") {
_root.gotoAndStop("L3 part 4");
}
if (_root.levelpart == "L3P4") {
_root.gotoAndStop("L3 part 5");
}
if (_root.levelpart == "L3P5") {
_root.gotoAndStop("End Level 3");
}
if (_root.levelpart == "L4P1") {
_root.gotoAndStop("L4 part 2");
}
if (_root.levelpart == "L4P2") {
_root.gotoAndStop("L4 part 3");
}
if (_root.levelpart == "L4P3") {
_root.gotoAndStop("L4 part 4");
}
if (_root.levelpart == "L4P4") {
_root.gotoAndStop("L4 part 5");
}
if (_root.levelpart == "L4P5") {
_root.gotoAndStop("End Level 4");
}
if (_root.levelpart == "L5P1") {
_root.gotoAndStop("L5 part 2");
}
if (_root.levelpart == "L5P2") {
_root.gotoAndStop("L5 part 3");
}
if (_root.levelpart == "L5P3") {
_root.gotoAndStop("L5 part 4");
}
if (_root.levelpart == "L5P4") {
_root.gotoAndStop("L5 part 5");
}
if (_root.levelpart == "L5P5") {
_root.gotoAndStop("End Level 5");
}
if (_root.levelpart == "L6P1") {
_root.gotoAndStop("L6 part 2");
}
if (_root.levelpart == "L6P2") {
_root.gotoAndStop("L6 part 3");
}
if (_root.levelpart == "L6P3") {
_root.gotoAndStop("L6 part 4");
}
if (_root.levelpart == "L6P4") {
_root.gotoAndStop("L6 part 5");
}
if (_root.levelpart == "L6P5") {
_root.gotoAndStop("End Level 6");
}
if (_root.levelpart == "L7P1") {
_root.gotoAndStop("L7 part 2");
}
if (_root.levelpart == "L7P2") {
_root.gotoAndStop("L7 part 3");
}
if (_root.levelpart == "L7P3") {
_root.gotoAndStop("L7 part 4");
}
if (_root.levelpart == "L7P4") {
_root.gotoAndStop("L7 part 5");
}
if (_root.levelpart == "L7P5") {
_root.gotoAndStop("End Level 7");
}
if (_root.levelpart == "L8P1") {
_root.gotoAndStop("L8 part 2");
}
if (_root.levelpart == "L8P2") {
_root.gotoAndStop("L8 part 3");
}
if (_root.levelpart == "L8P3") {
_root.gotoAndStop("L8 part 4");
}
if (_root.levelpart == "L8P4") {
_root.gotoAndStop("L8 part 5");
}
if (_root.levelpart == "L8P5") {
_root.gotoAndStop("End Level 8");
}
if (_root.levelpart == "L9P1") {
_root.gotoAndStop("L9 part 2");
}
if (_root.levelpart == "L9P2") {
_root.gotoAndStop("L9 part 3");
}
if (_root.levelpart == "L9P3") {
_root.gotoAndStop("L9 part 4");
}
if (_root.levelpart == "L9P4") {
_root.gotoAndStop("L9 part 5");
}
if (_root.levelpart == "L9P5") {
_root.gotoAndStop("End Level 9");
}
if (_root.levelpart == "L10P1") {
_root.gotoAndStop("L10 part 2");
}
if (_root.levelpart == "L10P2") {
_root.gotoAndStop("L10 part 3");
}
if (_root.levelpart == "L10P3") {
_root.gotoAndStop("L10 part 4");
}
if (_root.levelpart == "L10P4") {
_root.gotoAndStop("L10 part 5");
}
if (_root.levelpart == "L10P5") {
_root.gotoAndStop("End Level 10");
}
Symbol 251 MovieClip Frame 1
stop();
Symbol 251 MovieClip Frame 2
stop();
Symbol 262 MovieClip Frame 1
soundufo = "yes";
smallufo = new Sound();
smallufo.attachSound("smallufo");
Symbol 262 MovieClip Frame 5
if (soundufo == "yes") {
smallufo.start();
soundufo = "no";
}
gotoAndPlay (2);
Symbol 263 MovieClip Frame 1
_root.spin = "no";
stop();
Symbol 263 MovieClip Frame 2
stop();
Symbol 265 MovieClip Frame 1
stop();
Symbol 265 MovieClip Frame 2
stop();
Symbol 266 MovieClip Frame 5
stop();
Symbol 269 MovieClip Frame 30
stop();
Symbol 270 MovieClip Frame 1
stop();
Symbol 270 MovieClip Frame 2
_root.eat = 2;
stop();
Symbol 272 MovieClip Frame 1
stop();
Symbol 272 MovieClip Frame 2
stop();
Symbol 278 MovieClip Frame 1
rnd = Math.floor(Math.random() * 10);
gotoAndStop(rnd);
stop();
Symbol 278 MovieClip Frame 2
stop();
Symbol 278 MovieClip Frame 3
stop();
Symbol 278 MovieClip Frame 4
stop();
Symbol 278 MovieClip Frame 5
stop();
Symbol 278 MovieClip Frame 6
stop();
Symbol 278 MovieClip Frame 7
stop();
Symbol 278 MovieClip Frame 8
stop();
Symbol 278 MovieClip Frame 9
stop();
Symbol 278 MovieClip Frame 10
stop();
Symbol 282 MovieClip Frame 6
_root.health.gotoAndStop("dead");
_root.hero.gotoAndStop("dead");
stop();
Symbol 283 MovieClip Frame 1
stop();
Symbol 283 MovieClip Frame 2
_root.alive = "no";
stop();
Symbol 297 MovieClip Frame 1
stop();
Instance of Symbol 297 MovieClip in Symbol 304 MovieClip Frame 7
/* no clip actions */
Symbol 342 MovieClip Frame 20
gotoAndPlay (2);
Symbol 356 MovieClip Frame 5
stop();
Symbol 363 MovieClip Frame 1
stop();
Symbol 363 MovieClip Frame 10
play();
Symbol 363 MovieClip Frame 40
stop();
Symbol 364 MovieClip Frame 1
function hitPlatforms() {
var i;
var y;
var x;
i = 0;
while (i < _root.maxPlatforms) {
platform = eval ("_root.platform" + i);
y = _y + vertical;
x = _x + horizontal;
if (((_y < platform._y) && (y >= platform._y)) && (platform.hitTest(x, platform._y) == true)) {
_y = platform._y;
falling = false;
vertical = 0;
return(undefined);
}
i++;
}
platform = null;
return(undefined);
}
function render() {
var x;
var y;
x = (y = 0);
if (Math.abs(horizontal) < Math.abs(x)) {
horizontal = x;
} else {
horizontal = horizontal * friction;
if (Math.abs(horizontal) < 1) {
horizontal = 0;
}
}
if (((((vertical == 0) && (_root.hero.hitTest(_root.mushroom))) && (_root.hero._y == 286.3)) || (((vertical == 0) && (_root.hero.hitTest(_root.mushroom2))) && (_root.hero._y == 258.3))) || (((vertical == 0) && (_root.hero.hitTest(_root.mushroom3))) && (_root.hero._y == 286.3))) {
_root.hero._y = _root.hero._y - 100;
vertical = vforce * -1;
horizontal = horizontal + platform.velocity;
platform = null;
rising = true;
if (_root.direction == 0) {
gotoAndStop (4);
} else {
gotoAndStop (5);
}
}
if ((((vertical == 0) && (Key.isDown(38) == true)) and (_root.alive == "yes")) || (((vertical == 0) && (Key.isDown(32) == true)) and (_root.alive == "yes"))) {
vertical = vforce * -1;
horizontal = horizontal + platform.velocity;
platform = null;
rising = true;
if (_root.direction == 0) {
gotoAndStop (4);
} else {
gotoAndStop (5);
}
jump.start();
jump.setVolume(100);
}
if (rising == true) {
vertical = vertical * gravity;
if (Math.abs(vertical) < 1) {
vertical = Math.abs(vertical);
falling = true;
rising = false;
if (_root.direction == 0) {
gotoAndStop (3);
} else {
gotoAndStop (2);
}
}
}
if (falling == true) {
vertical = vertical + accel;
hitPlatforms();
}
lastX = _x;
lastY = _y;
_y = (_y + vertical);
_x = ((_x + horizontal) + platform.velocity);
if ((platform != null) && (platform.hitTest(_x, platform._y, true) == false)) {
vertical = 2;
falling = true;
}
}
vforce = 120;
hforce = 10;
horizontal = 0;
vertical = 5;
friction = 0.8;
gravity = 0.5;
accel = 1.5;
rising = false;
falling = true;
lastX = _x;
lastY = _y;
platform = null;
jump = new sound();
jump.attachSound("jump");
stop();
_root.direction = 1;
stop();
Symbol 364 MovieClip Frame 2
_root.direction = 1;
stop();
Symbol 364 MovieClip Frame 3
_root.direction = 0;
stop();
Symbol 364 MovieClip Frame 4
stop();
Symbol 364 MovieClip Frame 5
stop();
Symbol 364 MovieClip Frame 6
stop();
Symbol 364 MovieClip Frame 7
stop();
Symbol 364 MovieClip Frame 8
_root.shadow.gotoAndStop(2);
_root.alive = "no";
stop();
Symbol 369 MovieClip Frame 11
stop();
Symbol 386 MovieClip Frame 1
stop();
Symbol 386 MovieClip Frame 2
stop();
Symbol 389 MovieClip Frame 1
stop();
_root.totalhealth = 1000;
Symbol 389 MovieClip Frame 4
stop();
_root.totalhealth = 950;
Symbol 389 MovieClip Frame 7
stop();
_root.totalhealth = 900;
Symbol 389 MovieClip Frame 10
stop();
_root.totalhealth = 850;
Symbol 389 MovieClip Frame 13
stop();
_root.totalhealth = 800;
Symbol 389 MovieClip Frame 16
stop();
_root.totalhealth = 750;
Symbol 389 MovieClip Frame 19
stop();
_root.totalhealth = 700;
Symbol 389 MovieClip Frame 22
stop();
_root.totalhealth = 650;
Symbol 389 MovieClip Frame 25
stop();
_root.totalhealth = 600;
Symbol 389 MovieClip Frame 28
stop();
_root.totalhealth = 550;
Symbol 389 MovieClip Frame 31
stop();
_root.totalhealth = 500;
Symbol 389 MovieClip Frame 34
stop();
_root.totalhealth = 450;
Symbol 389 MovieClip Frame 37
stop();
_root.totalhealth = 400;
Symbol 389 MovieClip Frame 40
stop();
_root.totalhealth = 350;
Symbol 389 MovieClip Frame 43
stop();
_root.totalhealth = 300;
Symbol 389 MovieClip Frame 46
stop();
_root.totalhealth = 250;
Symbol 389 MovieClip Frame 49
_root.hero.gotoAndStop("dead");
_root.hero.fall.gotoAndPlay(10);
_root.alive = "no";
_root.stop = "yes";
_root.gameover.gotoAndPlay(2);
stop();
Symbol 411 Button
on (release) {
stopAllSounds();
if (_root.level == 1) {
_root.gotoAndStop("level1reset");
}
if (_root.level == 2) {
_root.gotoAndStop("level2reset");
}
if (_root.level == 3) {
_root.gotoAndStop("level3reset");
}
if (_root.level == 4) {
_root.gotoAndStop("level4reset");
}
if (_root.level == 5) {
_root.gotoAndStop("level5reset");
}
if (_root.level == 6) {
_root.gotoAndStop("level6reset");
}
if (_root.level == 7) {
_root.gotoAndStop("level7reset");
}
if (_root.level == 8) {
_root.gotoAndStop("level8reset");
}
if (_root.level == 9) {
_root.gotoAndStop("level9reset");
}
if (_root.level == 10) {
_root.gotoAndStop("level10reset");
}
}
Symbol 413 Button
on (release, keyPress "<Space>") {
stopAllSounds();
if (_root.level == 1) {
_root.gotoAndStop("level1reset");
}
if (_root.level == 2) {
_root.gotoAndStop("level2reset");
}
if (_root.level == 3) {
_root.gotoAndStop("level3reset");
}
if (_root.level == 4) {
_root.gotoAndStop("level4reset");
}
if (_root.level == 5) {
_root.gotoAndStop("level5reset");
}
if (_root.level == 6) {
_root.gotoAndStop("level6reset");
}
if (_root.level == 7) {
_root.gotoAndStop("level7reset");
}
if (_root.level == 8) {
_root.gotoAndStop("level8reset");
}
if (_root.level == 9) {
_root.gotoAndStop("level9reset");
}
if (_root.level == 10) {
_root.gotoAndStop("level10reset");
}
}
Symbol 415 MovieClip Frame 15
stop();
Symbol 416 MovieClip Frame 1
stop();
Symbol 416 MovieClip Frame 2
play();
stopAllSounds();
_root.bgmusicloop.gotoAndStop(1);
Symbol 416 MovieClip Frame 20
_root.hero.gotoAndStop("dead");
stopAllSounds();
stop();
Symbol 418 MovieClip Frame 1
stop();
Symbol 418 MovieClip Frame 70
stop();
Symbol 424 Button
on (release) {
_root.gotoAndStop("level2");
}
Symbol 454 MovieClip Frame 1
stop();
Symbol 454 MovieClip Frame 2
stop();
Symbol 454 MovieClip Frame 3
stop();
Symbol 477 MovieClip Frame 1
stop();
Symbol 487 Button
on (release, keyPress "<Space>") {
_root.level++;
if (_root.level == 2) {
_root.gotoAndStop("level2");
} else if (_root.level == 3) {
_root.gotoAndStop("level3");
} else if (_root.level == 4) {
_root.gotoAndStop("level4");
} else if (_root.level == 5) {
_root.gotoAndStop("level5");
} else if (_root.level == 6) {
_root.gotoAndStop("win");
} else if (_root.level == 7) {
_root.gotoAndStop("level7");
} else if (_root.level == 8) {
_root.gotoAndStop("level8");
} else if (_root.level == 9) {
_root.gotoAndStop("level9");
} else if (_root.level == 10) {
_root.gotoAndStop("level10");
} else if (_root.level == 11) {
_root.gotoAndStop("win");
}
}
Symbol 489 Button
on (release, keyPress "<Space>") {
_root.level++;
if (_root.level == 2) {
_root.gotoAndStop("level2");
} else if (_root.level == 3) {
_root.gotoAndStop("level3");
} else if (_root.level == 4) {
_root.gotoAndStop("level4");
} else if (_root.level == 5) {
_root.gotoAndStop("level5");
} else if (_root.level == 6) {
_root.gotoAndStop("level6");
} else if (_root.level == 7) {
_root.gotoAndStop("level7");
} else if (_root.level == 8) {
_root.gotoAndStop("level8");
} else if (_root.level == 9) {
_root.gotoAndStop("level9");
} else if (_root.level == 10) {
_root.gotoAndStop("level10");
} else if (_root.level == 11) {
_root.gotoAndStop("win");
}
}
Symbol 490 MovieClip Frame 1
stop();
Symbol 490 MovieClip Frame 17
stop();
Symbol 492 MovieClip Frame 1
stop();
Symbol 492 MovieClip Frame 2
_root.alive = "no";
stop();
Symbol 500 Button
on (release) {
gotoAndStop (110);
}
Symbol 511 Button
on (release) {
gotoAndStop (160);
}
Symbol 514 MovieClip Frame 1
play();
Symbol 514 MovieClip Frame 10
_root.countdown.time--;
_root.countdown.gotoAndStop(1);
Symbol 515 MovieClip Frame 1
stop();
Symbol 515 MovieClip Frame 2
stop();
Symbol 515 MovieClip Frame 3
stop();
Symbol 518 MovieClip Frame 1
stop();
Symbol 518 MovieClip Frame 2
play();
Symbol 518 MovieClip Frame 3
gotoAndStop (1);
Symbol 519 MovieClip Frame 1
rnd = Math.floor(Math.random() * 400);
gotoAndPlay(rnd);
Symbol 519 MovieClip Frame 101
if (((_root.oil1._currentframe == 2) and (_root.hero._x > 140)) and (_root.countdown.time > 0)) {
_root.sfx.sfx.gotoAndPlay(2);
_root.oil1.gotoAndStop(1);
}
gotoAndPlay (1);
Symbol 519 MovieClip Frame 201
if (((_root.oil2._currentframe == 2) and ((_root.hero._x < 203) or (_root.hero._x > 314))) and (_root.countdown.time > 0)) {
_root.oil2.gotoAndStop(1);
_root.sfx.sfx.gotoAndPlay("play");
}
gotoAndPlay (1);
Symbol 519 MovieClip Frame 301
if (((_root.oil3._currentframe == 2) and ((_root.hero._x < 393) or (_root.hero._x > 494))) and (_root.countdown.time > 0)) {
_root.oil3.gotoAndStop(1);
_root.sfx.sfx.gotoAndPlay("play");
}
gotoAndPlay (1);
Symbol 519 MovieClip Frame 401
if (((_root.oil4._currentframe == 2) and ((_root.hero._x < 577) or (_root.hero._x > 675))) and (_root.countdown.time > 0)) {
_root.oil4.gotoAndStop(1);
_root.sfx.sfx.gotoAndPlay("play");
}
gotoAndPlay (1);
Symbol 532 Button
on (release) {
gotoAndStop (230);
}
Symbol 556 Button
on (release) {
gotoAndStop (290);
}
Symbol 573 MovieClip Frame 1
rnd = Math.floor(Math.random() * 300);
gotoAndPlay(rnd);
Symbol 573 MovieClip Frame 100
if ((_root.oil1._currentframe == 2) and (_root.ufo2.score < 15)) {
_root.sfx.sfx.gotoAndPlay(2);
_root.oil1.gotoAndStop(1);
}
gotoAndPlay (1);
Symbol 573 MovieClip Frame 201
if ((_root.oil2._currentframe == 2) and (_root.ufo2.score < 15)) {
_root.sfx.sfx.gotoAndPlay("play");
_root.oil2.gotoAndStop(1);
}
gotoAndPlay (1);
Symbol 573 MovieClip Frame 301
if ((_root.oil3._currentframe == 2) and (_root.ufo2.score < 15)) {
_root.sfx.sfx.gotoAndPlay("play");
_root.oil3.gotoAndStop(1);
}
gotoAndPlay (1);
Symbol 585 Button
on (release) {
gotoAndStop (311);
}
Symbol 596 Button
on (release) {
gotoAndStop (371);
}
Symbol 607 Button
on (release) {
gotoAndStop (431);
}
Symbol 618 Button
on (release) {
gotoAndStop (491);
}
Symbol 629 Button
on (release) {
gotoAndStop (551);
}
Symbol 646 Button
on (release) {
_root.gotoAndStop("good");
unloadMovieNum (11);
}