Frame 1
stop();
Stage.showMenu = false;
Instance of Symbol 93 MovieClip in Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rocket.boom.mainframe)) {
_root.rocket.boom.play();
}
}
Instance of Symbol 93 MovieClip in Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rocket.boom.mainframe)) {
_root.rocket.boom.play();
}
}
Instance of Symbol 93 MovieClip in Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rocket.boom.mainframe)) {
_root.rocket.boom.play();
}
}
Instance of Symbol 93 MovieClip in Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.rocket.boom.mainframe)) {
_root.rocket.boom.play();
}
}
Frame 2
stop();
coins = 0;
Instance of Symbol 191 MovieClip "player" in Frame 2
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Instance of Symbol 181 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Frame 3
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 3
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 4
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player" in Frame 4
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 5
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 5
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 6
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player" in Frame 6
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Instance of Symbol 181 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Frame 7
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 237 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 191 MovieClip "player1" in Frame 7
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 8
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player" in Frame 8
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 9
if (_root.coins == 30) {
_root.stop();
} else if (_root.coins < 30) {
_root.nextFrame();
}
Instance of Symbol 302 MovieClip "CURSOR" in Frame 9
onClipEvent (enterFrame) {
startDrag ("_root.CURSOR", true);
Mouse.hide();
}
Frame 11
coins = 0;
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 172 MovieClip "coin2" in Frame 11
/* no clip actions */
Instance of Symbol 181 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Instance of Symbol 191 MovieClip "player" in Frame 11
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 12
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player45433" in Frame 12
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.gotoAndStop(17);
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Instance of Symbol 339 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player45433)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Frame 13
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 13
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 14
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player" in Frame 14
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.gotoAndStop(12);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 15
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip in Frame 15
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.end2.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 16
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player" in Frame 16
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.gotoAndStop(18);
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 17
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 17
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 18
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player3" in Frame 18
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 19
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 19
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 20
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player" in Frame 20
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 21
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 21
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Instance of Symbol 339 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Frame 22
if (_root.coins == 40) {
_root.stop();
} else if (_root.coins < 40) {
_root.nextFrame();
}
Instance of Symbol 302 MovieClip "CURSOR" in Frame 22
onClipEvent (enterFrame) {
startDrag ("_root.CURSOR", true);
Mouse.hide();
}
Frame 24
coins = 0;
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 172 MovieClip "coin2" in Frame 24
/* no clip actions */
Instance of Symbol 181 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Instance of Symbol 191 MovieClip "player" in Frame 24
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy6.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 25
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 437 MovieClip in Frame 25
onClipEvent (enterFrame) {
_rotation = (_rotation - 3);
}
Instance of Symbol 191 MovieClip "player2" in Frame 25
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy6.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 26
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 26
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy6.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 27
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 181 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Instance of Symbol 191 MovieClip "player2" in Frame 27
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy6.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 28
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 28
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy6.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 29
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player2" in Frame 29
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy6.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 30
_root.coin1.gotoAndPlay(1);
_root.coin2.gotoAndPlay(1);
_root.coin3.gotoAndPlay(1);
_root.coin4.gotoAndPlay(1);
_root.coin5.gotoAndPlay(1);
_root.coin6.gotoAndPlay(1);
_root.coin7.gotoAndPlay(1);
_root.coin8.gotoAndPlay(1);
_root.coin9.gotoAndPlay(1);
_root.coin10.gotoAndPlay(1);
Instance of Symbol 191 MovieClip "player1" in Frame 30
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (_root.enemy1.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy2.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy3.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy4.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy5.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.enemy6.hitTest(_x, _y, true)) {
_root.HP.play();
}
}
onClipEvent (enterFrame) {
if (_root.end.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (_root.end2.hitTest(_x, _y, true)) {
_root.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin1)) {
_root.coin.play();
_root.coins++;
_root.coin1.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin2)) {
_root.coin.play();
_root.coins++;
_root.coin2.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin3)) {
_root.coin.play();
_root.coins++;
_root.coin3.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin4)) {
_root.coin.play();
_root.coins++;
_root.coin4.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin5)) {
_root.coin.play();
_root.coins++;
_root.coin5.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin6)) {
_root.coin.play();
_root.coins++;
_root.coin6.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin7)) {
_root.coin.play();
_root.coins++;
_root.coin7.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin8)) {
_root.coin.play();
_root.coins++;
_root.coin8.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin9)) {
_root.coin.play();
_root.coins++;
_root.coin9.gotoAndStop(21);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.coin10)) {
_root.coin.play();
_root.coins++;
_root.coin10.gotoAndStop(21);
}
}
Frame 31
if (_root.coins == 50) {
_root.stop();
} else if (_root.coins < 50) {
_root.nextFrame();
}
Instance of Symbol 302 MovieClip "CURSOR" in Frame 31
onClipEvent (enterFrame) {
startDrag ("_root.CURSOR", true);
Mouse.hide();
}
Instance of Symbol 302 MovieClip "CURSOR" in Frame 33
onClipEvent (enterFrame) {
startDrag ("_root.CURSOR", true);
Mouse.hide();
}
Frame 34
onLoad = function () {
i = 0;
};
onEnterFrame = function () {
if (random(35) == 0) {
i++;
duplicateMovieClip (_root.fireball, "fireball" + i, i);
}
};
coins = 0;
Instance of Symbol 191 MovieClip "mario" in Frame 34
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bowser)) {
_root.HP2.play();
_root.bowser.craft.play();
_root.bowser.craft.hover.eye.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.lava)) {
_root.HP.play();
}
}
Instance of Symbol 588 MovieClip "fireball" in Frame 34
onClipEvent (load) {
this._x = random(Stage.width);
this._y = Stage.height + this._height;
speed = (Math.random() + 1) * 5;
}
onClipEvent (enterFrame) {
if (this._y < -250) {
this.removeMovieClip();
}
this._y = this._y - speed;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.HP.play();
this.play();
}
}
Instance of Symbol 302 MovieClip "CURSOR" in Frame 35
onClipEvent (enterFrame) {
startDrag ("_root.CURSOR", true);
Mouse.hide();
}
Frame 37
onLoad = function () {
i = 0;
};
onEnterFrame = function () {
if (random(75) == 0) {
i++;
duplicateMovieClip (_root.nothing, "nothing" + i, i);
}
};
Frame 39
onLoad = function () {
i = 0;
};
onEnterFrame = function () {
if (random(30) == 0) {
i++;
duplicateMovieClip (_root.fireball, "fireball" + i, i);
}
if (random(30) == 0) {
i++;
duplicateMovieClip (_root.coin, "coin" + i, i);
}
if (random(150) == 0) {
i++;
duplicateMovieClip (_root.good, "good" + i, i);
}
if (random(150) == 0) {
i++;
duplicateMovieClip (_root.bad, "bad" + i, i);
}
if (random(250) == 0) {
i++;
duplicateMovieClip (_root.speed, "speed" + i, i);
}
if (random(250) == 0) {
i++;
duplicateMovieClip (_root.jump, "jump" + i, i);
}
};
coins = 0;
Instance of Symbol 191 MovieClip "mario" in Frame 39
onClipEvent (load) {
grav = 0;
speed = 4;
jumpHeight = 15;
scale = _xscale;
slowfall = 0.8;
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (Key.isDown(65)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true)) {
this.gotoAndStop(1);
} else {
this.gotoAndStop(2);
}
} else if (_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) {
this.gotoAndStop(3);
}
if (Key.isDown(83)) {
grav = grav * slowfall;
}
if (((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) {
this.gotoAndStop(4);
}
if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(2);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bowser)) {
_root.HP2.play();
_root.bowser.craft.play();
_root.bowser.craft.hover.eye.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.lava)) {
_root.HP.play();
}
}
Instance of Symbol 588 MovieClip "fireball" in Frame 39
onClipEvent (load) {
this._x = random(Stage.width);
this._y = Stage.height + this._height;
speed = (Math.random() + 0.75) * 5;
}
onClipEvent (enterFrame) {
if (this._y < -250) {
this.removeMovieClip();
}
this._y = this._y - speed;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.HP.play();
this.play();
}
}
Instance of Symbol 172 MovieClip "Coin" in Frame 39
onClipEvent (load) {
this._x = random(Stage.width);
this._y = Stage.height + this._height;
speed = (Math.random() + 0.5) * 5;
}
onClipEvent (enterFrame) {
if (this._y < -250) {
this.removeMovieClip();
}
this._y = this._y - speed;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.coins++;
this.gotoAndStop(21);
_root.sfx.play();
}
}
Instance of Symbol 297 MovieClip "good" in Frame 39
onClipEvent (load) {
this._x = random(Stage.width);
this._y = Stage.height + this._height;
speed = (Math.random() + 0.75) * 5;
}
onClipEvent (enterFrame) {
if (this._y < -250) {
this.removeMovieClip();
}
this._y = this._y - speed;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.mario._xscale = _root.mario._xscale + 1;
_root.mario._yscale = _root.mario._yscale + 1;
this.play();
}
}
Instance of Symbol 297 MovieClip "bad" in Frame 39
onClipEvent (load) {
this._x = random(Stage.width);
this._y = Stage.height + this._height;
speed = (Math.random() + 0.75) * 5;
}
onClipEvent (enterFrame) {
if (this._y < -250) {
this.removeMovieClip();
}
this._y = this._y - speed;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.mario._xscale = _root.mario._xscale - 1;
_root.mario._yscale = _root.mario._yscale - 1;
this.play();
}
}
Instance of Symbol 297 MovieClip "speed" in Frame 39
onClipEvent (load) {
this._x = random(Stage.width);
this._y = Stage.height + this._height;
speed = (Math.random() + 1) * 5;
}
onClipEvent (enterFrame) {
if (this._y < -250) {
this.removeMovieClip();
}
this._y = this._y - speed;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.mario.speed = _root.mario.speed + 0.25;
_root.mario.speed = _root.mario.speed + 0.25;
this.play();
}
}
Instance of Symbol 297 MovieClip "jump" in Frame 39
onClipEvent (load) {
this._x = random(Stage.width);
this._y = Stage.height + this._height;
speed = (Math.random() + 0.75) * 5;
}
onClipEvent (enterFrame) {
if (this._y < -250) {
this.removeMovieClip();
}
this._y = this._y - speed;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.mario)) {
_root.mario.jump = _root.mario.jump + 0.25;
_root.mario.jump = _root.mario.jump + 0.25;
this.play();
}
}
Frame 40
coins = 0;
Instance of Symbol 302 MovieClip "CURSOR" in Frame 40
onClipEvent (enterFrame) {
startDrag ("_root.CURSOR", true);
Mouse.hide();
}
Symbol 9 Button
on (press) {
rocket.boom.thrust = rocket.boom.thrust + 0.1;
}
Symbol 13 Button
on (press) {
rocket.boom.thrust = rocket.boom.thrust - 0.1;
}
Symbol 16 Button
on (press) {
rocket.boom.maxSpeed = rocket.boom.maxSpeed + 0.5;
}
Symbol 17 Button
on (press) {
rocket.boom.maxSpeed = rocket.boom.maxSpeed - 0.5;
}
Symbol 18 Button
on (press) {
rocket.boom.decay = rocket.boom.decay + 0.01;
}
Symbol 19 Button
on (press) {
rocket.boom.decay = rocket.boom.decay - 0.01;
}
Symbol 22 Button
on (press) {
_root.rocket.boom._xscale = _root.rocket.boom._xscale + 1;
_root.rocket.boom._yscale = _root.rocket.boom._yscale + 1;
}
Symbol 23 Button
on (press) {
_root.rocket.boom._xscale = _root.rocket.boom._xscale - 1;
_root.rocket.boom._yscale = _root.rocket.boom._yscale - 1;
}
Symbol 27 Button
on (release) {
_root.info.play();
}
Symbol 31 Button
on (press) {
if (_quality == "HIGH") {
_quality = "MEDIUM";
} else if (_quality == "MEDIUM") {
_quality = "LOW";
} else if (_quality == "LOW") {
_quality = "HIGH";
}
}
Symbol 72 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 2
stopAllSounds();
Symbol 72 MovieClip Frame 22
_root.rocket.play();
Symbol 73 MovieClip Frame 39
stop();
Instance of Symbol 72 MovieClip "boom" in Symbol 73 MovieClip Frame 39
onClipEvent (load) {
thrust = 0.5;
decay = 0.97;
maxSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_rotation = (_rotation + 10);
}
if (Key.isDown(37)) {
_rotation = (_rotation - 10);
}
if (Key.isDown(38)) {
xSpeed = xSpeed + (thrust * Math.sin(_rotation * (Math.PI/180)));
ySpeed = ySpeed + (thrust * Math.cos(_rotation * (Math.PI/180)));
flames._visible = 1;
} else {
xSpeed = xSpeed * decay;
ySpeed = ySpeed * decay;
flames._visible = 0;
}
speed = Math.sqrt((xSpeed * xSpeed) + (ySpeed * ySpeed));
if (speed > maxSpeed) {
xSpeed = xSpeed * (maxSpeed / speed);
ySpeed = ySpeed * (maxSpeed / speed);
}
_y = (_y - ySpeed);
_x = (_x + xSpeed);
}
Symbol 84 MovieClip Frame 1
stop();
Symbol 84 MovieClip Frame 15
stop();
Symbol 89 MovieClip Frame 225
stop();
Symbol 101 Button
on (release) {
play();
}
Symbol 106 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop (3);
}
Symbol 106 MovieClip Frame 2
gotoAndPlay (1);
Instance of Symbol 3 MovieClip in Symbol 106 MovieClip Frame 26
on (release) {
getURL ("http://www.freewebs.com/pyroflameproductions/index.htm", "blank");
}
Symbol 106 MovieClip Frame 170
_root.gotoAndStop(38);
Symbol 110 Button
on (release) {
_root.gotoAndStop(11);
}
Symbol 111 MovieClip Frame 1
stop();
Symbol 115 Button
on (release) {
_root.gotoAndStop(24);
}
Symbol 116 MovieClip Frame 1
stop();
Symbol 127 Button
on (release) {
_root.gotoAndStop(37);
}
Symbol 128 MovieClip Frame 1
stop();
Symbol 164 MovieClip Frame 1
stop();
Symbol 164 MovieClip Frame 10
stop();
Symbol 164 MovieClip Frame 19
stop();
Symbol 164 MovieClip Frame 28
stop();
Symbol 164 MovieClip Frame 37
stop();
Symbol 164 MovieClip Frame 50
stop();
_root.gotoAndStop(36);
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 99
_root.gotoAndStop(16);
Instance of Symbol 181 MovieClip "enemy1" in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Symbol 200 MovieClip Frame 1
stop();
Symbol 211 MovieClip Frame 1
stop();
Symbol 211 MovieClip Frame 2
_root.gotoAndStop();
Instance of Symbol 181 MovieClip in Symbol 224 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Instance of Symbol 181 MovieClip in Symbol 232 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Instance of Symbol 181 MovieClip in Symbol 233 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Symbol 237 MovieClip Frame 1
stop();
Symbol 244 MovieClip Frame 1
stop();
Instance of Symbol 237 MovieClip in Symbol 244 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
this.removeMovieClip();
_root.ground.play();
}
}
Instance of Symbol 237 MovieClip in Symbol 244 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
this.removeMovieClip();
_root.ground.play();
}
}
Instance of Symbol 237 MovieClip in Symbol 244 MovieClip Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
this.removeMovieClip();
_root.ground.play();
}
}
Instance of Symbol 237 MovieClip in Symbol 244 MovieClip Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
this.removeMovieClip();
_root.ground.play();
}
}
Instance of Symbol 237 MovieClip in Symbol 244 MovieClip Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
this.removeMovieClip();
_root.ground.play();
}
}
Instance of Symbol 237 MovieClip in Symbol 244 MovieClip Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
this.removeMovieClip();
_root.ground.play();
}
}
Instance of Symbol 237 MovieClip in Symbol 244 MovieClip Frame 32
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
this.removeMovieClip();
_root.ground.play();
}
}
Instance of Symbol 237 MovieClip in Symbol 244 MovieClip Frame 37
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
this.removeMovieClip();
_root.ground.play();
}
}
Symbol 246 MovieClip Frame 1
stop();
Instance of Symbol 181 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Instance of Symbol 181 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Instance of Symbol 181 MovieClip in Symbol 255 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player.hitTest(_x, _y, true)) {
_root.HP.nextFrame();
}
}
Symbol 289 MovieClip Frame 233
stop();
Symbol 297 MovieClip Frame 1
stop();
Symbol 297 MovieClip Frame 4
stop();
Symbol 298 Button
on (release) {
gotoAndStop (33);
_root.level2.gotoAndStop(2);
}
Symbol 312 MovieClip Frame 1
stop();
Symbol 312 MovieClip Frame 57
gotoAndStop (1);
Symbol 312 MovieClip Frame 80
stop();
Symbol 312 MovieClip Frame 101
gotoAndStop (1);
Symbol 322 MovieClip Frame 66
stop();
Symbol 323 Button
on (release) {
_root.gotoAndStop(33);
}
Symbol 339 MovieClip Frame 1
stop();
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 352 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Symbol 353 MovieClip Frame 1
stop();
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 26
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 31
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 36
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 41
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 46
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 51
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 56
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 61
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 66
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 71
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 81
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 86
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 91
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 151
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 161
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 169
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 175
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 181
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 186
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 190
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 193
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 195
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 197
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 199
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 201
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 203
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 205
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Instance of Symbol 339 MovieClip in Symbol 353 MovieClip Frame 207
onClipEvent (enterFrame) {
if (this.hitTest(_root.player1)) {
_root.sound3.play();
this.gotoAndStop(2);
_root.ground.play();
}
}
Symbol 417 MovieClip Frame 1
stop();
Symbol 421 Button
on (release) {
gotoAndStop (33);
_root.level3.gotoAndStop(2);
}
Symbol 425 Button
on (release) {
gotoAndStop (33);
}
Instance of Symbol 437 MovieClip in Symbol 438 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 3);
}
Instance of Symbol 437 MovieClip in Symbol 466 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 1.5);
}
Instance of Symbol 464 MovieClip in Symbol 466 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 1.5);
}
Instance of Symbol 437 MovieClip in Symbol 466 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - -1.5);
}
Instance of Symbol 464 MovieClip in Symbol 466 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - -1.5);
}
Instance of Symbol 480 MovieClip in Symbol 481 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - -3);
}
Instance of Symbol 480 MovieClip in Symbol 481 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 3);
}
Symbol 497 Button
on (release) {
gotoAndStop (33);
_root.level4.gotoAndStop(2);
}
Symbol 498 MovieClip Frame 237
stop();
Symbol 544 MovieClip Frame 30
stop();
Symbol 549 Button
on (release) {
gotoAndStop (42);
}
Symbol 552 Button
on (release) {
gotoAndStop (41);
}
Symbol 555 Button
on (release) {
gotoAndStop (40);
}
Symbol 558 Button
on (press) {
if (_quality == "HIGH") {
_quality = "MEDIUM";
} else if (_quality == "MEDIUM") {
_quality = "LOW";
} else if (_quality == "LOW") {
_quality = "HIGH";
}
}
Symbol 559 Button
on (release) {
gotoAndStop (2);
}
Symbol 564 MovieClip Frame 1
stop();
Symbol 578 MovieClip Frame 1
stop();
Symbol 579 MovieClip Frame 861
_root.ground.play();
Symbol 579 MovieClip Frame 1000
_root.ground.gotoAndPlay(60);
Symbol 579 MovieClip Frame 1200
_root.ground.play();
Symbol 588 MovieClip Frame 1
stop();
Symbol 588 MovieClip Frame 5
stop();
Symbol 613 MovieClip Frame 1
stop();
Symbol 613 MovieClip Frame 10
stop();
Symbol 613 MovieClip Frame 20
stop();
Symbol 613 MovieClip Frame 30
stop();
Symbol 613 MovieClip Frame 40
stop();
Symbol 613 MovieClip Frame 50
stop();
Symbol 613 MovieClip Frame 60
stop();
Symbol 613 MovieClip Frame 70
stop();
Symbol 613 MovieClip Frame 80
stop();
Symbol 613 MovieClip Frame 90
stop();
Symbol 613 MovieClip Frame 100
stop();
Symbol 613 MovieClip Frame 110
stop();
Symbol 613 MovieClip Frame 120
stop();
Symbol 613 MovieClip Frame 130
stop();
Symbol 613 MovieClip Frame 140
stop();
Symbol 613 MovieClip Frame 150
stop();
Symbol 613 MovieClip Frame 160
stop();
Symbol 613 MovieClip Frame 170
stop();
Symbol 613 MovieClip Frame 180
stop();
Symbol 613 MovieClip Frame 190
stop();
Symbol 613 MovieClip Frame 200
stop();
Symbol 613 MovieClip Frame 210
stop();
Symbol 613 MovieClip Frame 220
stop();
Symbol 613 MovieClip Frame 230
stop();
Symbol 613 MovieClip Frame 240
stop();
Symbol 613 MovieClip Frame 250
stop();
Symbol 613 MovieClip Frame 260
stop();
Symbol 613 MovieClip Frame 270
stop();
Symbol 613 MovieClip Frame 280
stop();
Symbol 613 MovieClip Frame 290
stop();
Symbol 613 MovieClip Frame 300
stop();
_root.nextFrame();
Symbol 628 MovieClip Frame 260
stop();
Symbol 641 Button
on (release) {
gotoAndStop (34);
}
Symbol 661 Button
on (release) {
gotoAndPlay (1250);
}
Symbol 667 Button
on (release) {
play();
}
Symbol 675 MovieClip Frame 1
stop();
Symbol 679 MovieClip Frame 660
stop();
Symbol 679 MovieClip Frame 1195
stop();
Symbol 679 MovieClip Frame 1252
_root.gotoAndStop(33);
Symbol 687 Button
on (release) {
gotoAndStop (39);
}
Symbol 700 Button
on (release) {
_root.GotoAndStop(33);
}
Symbol 704 Button
on (release) {
getURL ("http://www.freewebs.com/pyroflameproductions/index.htm", "blank");
}
Symbol 705 MovieClip Frame 440
stop();