Frame 1
Stage.showMenu = false;
Frame 2
stop();
Stage.showMenu = false;
Instance of Symbol 166 MovieClip "player" in Frame 2
onClipEvent (load) {
var grav = 0;
var speed = 10;
var jumpHeight = 15;
var slow = 0.7;
var slowspd = (speed / 1.5);
var setspeed = speed;
var scale = _xscale;
var ex = 5;
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (_root.water.hitTest(_x, _y, true)) {
if (grav > 0) {
grav = grav * slow;
}
speed = slowspd;
} else {
speed = setspeed;
}
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))) && (!Key.isDown(73))) {
this.gotoAndStop(3);
}
if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) {
this.gotoAndStop(5);
}
if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) {
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)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) {
_x = (_x - speed);
}
if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) {
grav = 1;
}
}
Instance of Symbol 169 MovieClip in Frame 2
onClipEvent (enterFrame) {
_x = (_x + ((_root.player._x - _x) / 4));
}
Frame 3
stop();
Stage.showMenu = false;
Instance of Symbol 185 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.gotoAndStop(5);
}
if (Key.isDown(32)) {
stopAllSounds();
}
}
Frame 4
stop();
stopAllSounds();
score = 0;
Stage.showMenu = false;
Frame 5
stop();
var monedas = 0;
Stage.showMenu = false;
_root.sound.gotoAndPlay(2);
Instance of Symbol 225 MovieClip in Frame 5
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 5
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 5
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 5
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 5
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 5
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 230 MovieClip "door_end" in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(6);
}
}
Instance of Symbol 231 MovieClip "player" in Frame 5
onClipEvent (load) {
var grav = 0;
var speed = 10;
var jumpHeight = 15;
var slow = 0.7;
var slowspd = (speed / 1.5);
var setspeed = speed;
var scale = _xscale;
var ex = 5;
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (_root.water.hitTest(_x, _y, true)) {
if (grav > 0) {
grav = grav * slow;
}
speed = slowspd;
} else {
speed = setspeed;
}
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))) && (!Key.isDown(73))) {
this.gotoAndStop(3);
}
if ((((Key.isDown() && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) {
this.gotoAndStop(5);
}
if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) {
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)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) {
_x = (_x - speed);
}
if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) {
grav = 1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.door_end)) {
_root.gotoAndStop(6);
}
}
Instance of Symbol 169 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x + ((_root.player._x - _x) / 4));
_y = (_y + ((_root.player._y - _y) / 4));
}
Frame 6
stop();
var monedas = 0;
Stage.showMenu = false;
Frame 7
stop();
var monedas = 0;
Stage.showMenu = false;
_root.sound.gotoAndPlay(1276);
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 220 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(8);
}
}
Instance of Symbol 298 MovieClip "button" in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.button.gotoAndStop(2);
}
}
Instance of Symbol 300 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(8);
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 300 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(8);
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 220 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(8);
}
}
Instance of Symbol 220 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(8);
}
}
Instance of Symbol 230 MovieClip "door_end" in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(9);
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 7
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 231 MovieClip "player" in Frame 7
onClipEvent (load) {
var grav = 0;
var speed = 10;
var jumpHeight = 15;
var slow = 0.7;
var slowspd = (speed / 1.5);
var setspeed = speed;
var scale = _xscale;
var ex = 5;
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (_root.water.hitTest(_x, _y, true)) {
if (grav > 0) {
grav = grav * slow;
}
speed = slowspd;
} else {
speed = setspeed;
}
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))) && (!Key.isDown(73))) {
this.gotoAndStop(3);
}
if ((((Key.isDown() && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) {
this.gotoAndStop(5);
}
if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) {
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)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) {
_x = (_x - speed);
}
if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) {
grav = 1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die2)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
Instance of Symbol 303 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(8);
}
}
Instance of Symbol 169 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x + ((_root.player._x - _x) / 4));
_y = (_y + ((_root.player._y - _y) / 4));
}
Frame 8
stop();
Stage.showMenu = false;
Frame 9
stop();
Stage.showMenu = false;
Frame 10
stop();
Stage.showMenu = false;
var monedas = 0;
_root.sound.gotoAndPlay(6293);
Instance of Symbol 314 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 352 MovieClip "button_2" in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.button_2.gotoAndStop(2);
}
}
Instance of Symbol 367 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(11);
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 10
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 231 MovieClip "player" in Frame 10
onClipEvent (load) {
var grav = 0;
var speed = 10;
var jumpHeight = 15;
var slow = 0.7;
var slowspd = (speed / 1.5);
var setspeed = speed;
var scale = _xscale;
var ex = 5;
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (_root.water.hitTest(_x, _y, true)) {
if (grav > 0) {
grav = grav * slow;
}
speed = slowspd;
} else {
speed = setspeed;
}
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))) && (!Key.isDown(73))) {
this.gotoAndStop(3);
}
if ((((Key.isDown() && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) {
this.gotoAndStop(5);
}
if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) {
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)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) {
_x = (_x - speed);
}
if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) {
grav = 1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die2)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
Instance of Symbol 220 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 375 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 375 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 375 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 375 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 375 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 375 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 375 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 220 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 220 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(12);
}
}
Instance of Symbol 169 MovieClip in Frame 10
onClipEvent (enterFrame) {
_x = (_x + ((_root.player._x - _x) / 4));
_y = (_y + ((_root.player._y - _y) / 4));
}
Frame 11
stop();
Stage.showMenu = false;
var monedas = 0;
Frame 12
stop();
Stage.showMenu = false;
var monedas = 0;
Frame 13
stop();
Stage.showMenu = false;
var monedas = 0;
_root.sound.gotoAndPlay(1276);
Instance of Symbol 414 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(14);
}
}
Instance of Symbol 418 MovieClip "switch1" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.ground.gotoAndStop(2);
}
if (this.hitTest(_root.player)) {
_root.switch1.gotoAndStop(2);
}
}
Instance of Symbol 421 MovieClip "switch2" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.ground.gotoAndStop(3);
}
if (this.hitTest(_root.player)) {
_root.switch2.gotoAndStop(2);
}
}
Instance of Symbol 424 MovieClip "switch3" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.ground.gotoAndStop(4);
}
if (this.hitTest(_root.player)) {
_root.switch3.gotoAndStop(2);
}
}
Instance of Symbol 447 MovieClip "player" in Frame 13
onClipEvent (load) {
var grav = 0;
var speed = 10;
var jumpHeight = 15;
var slow = 0.7;
var slowspd = (speed / 1.5);
var setspeed = speed;
var scale = _xscale;
var ex = 5;
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (_root.water.hitTest(_x, _y, true)) {
if (grav > 0) {
grav = grav * slow;
}
speed = slowspd;
} else {
speed = setspeed;
}
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))) && (!Key.isDown(73))) {
this.gotoAndStop(3);
}
if ((((Key.isDown() && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) {
this.gotoAndStop(5);
}
if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) {
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)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) {
_x = (_x - speed);
}
if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) {
grav = 1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die2)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
Instance of Symbol 230 MovieClip "door_end" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(15);
}
}
Instance of Symbol 453 MovieClip "switch4" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.ground.gotoAndStop(5);
}
if (this.hitTest(_root.player)) {
_root.switch4.gotoAndStop(2);
}
}
Instance of Symbol 456 MovieClip "switch5" in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.ground.gotoAndStop(6);
}
if (this.hitTest(_root.player)) {
_root.switch5.gotoAndStop(2);
}
}
Instance of Symbol 450 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(14);
}
}
Instance of Symbol 503 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(14);
}
}
Instance of Symbol 503 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(14);
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 169 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x + ((_root.player._x - _x) / 4));
_y = (_y + ((_root.player._y - _y) / 4));
}
Frame 14
stop();
Stage.showMenu = false;
var monedas = 0;
Frame 15
stop();
Stage.showMenu = false;
var monedas = 0;
Frame 16
stop();
Stage.showMenu = false;
var monedas = 0;
_root.sound.gotoAndPlay(6293);
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 503 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 447 MovieClip "player" in Frame 16
onClipEvent (load) {
var grav = 0;
var speed = 10;
var jumpHeight = 15;
var slow = 0.7;
var slowspd = (speed / 1.5);
var setspeed = speed;
var scale = _xscale;
var ex = 5;
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (_root.water.hitTest(_x, _y, true)) {
if (grav > 0) {
grav = grav * slow;
}
speed = slowspd;
} else {
speed = setspeed;
}
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))) && (!Key.isDown(73))) {
this.gotoAndStop(3);
}
if ((((Key.isDown() && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) {
this.gotoAndStop(5);
}
if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) {
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)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) {
_x = (_x - speed);
}
if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) {
grav = 1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die2)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
Instance of Symbol 450 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(17);
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 225 MovieClip in Frame 16
onClipEvent (load) {
grabCoin = true;
}
onClipEvent (enterFrame) {
if (grabCoin) {
if (this.hitTest(_root.player)) {
_root.monedas = _root.monedas + 1;
this._visible = false;
grabCoin = false;
} else {
grabCoin = true;
}
}
}
Instance of Symbol 531 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(18);
}
}
Instance of Symbol 169 MovieClip in Frame 16
onClipEvent (enterFrame) {
_x = (_x + ((_root.player._x - _x) / 4));
_y = (_y + ((_root.player._y - _y) / 4));
}
Frame 17
stop();
Stage.showMenu = false;
var monedas = 0;
Frame 18
stop();
Stage.showMenu = false;
var monedas = 0;
Frame 19
stop();
Stage.showMenu = false;
var monedas = 0;
Frame 20
stop();
Stage.showMenu = false;
var monedas = 0;
_root.sound.gotoAndPlay(12527);
Instance of Symbol 592 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 220 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 220 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 220 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 220 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 166 MovieClip "player" in Frame 20
onClipEvent (load) {
var grav = 0;
var speed = 10;
var jumpHeight = 15;
var slow = 0.7;
var slowspd = (speed / 1.5);
var setspeed = speed;
var scale = _xscale;
var ex = 5;
this.gotoAndStop(2);
}
onClipEvent (enterFrame) {
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (_root.water.hitTest(_x, _y, true)) {
if (grav > 0) {
grav = grav * slow;
}
speed = slowspd;
} else {
speed = setspeed;
}
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))) && (!Key.isDown(73))) {
this.gotoAndStop(3);
}
if ((((Key.isDown() && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) {
this.gotoAndStop(5);
}
if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) {
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)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) {
_x = (_x - speed);
}
if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) {
grav = 1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.die2)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy)) {
this._x = -481.9;
this._y = 824.6;
var grav = 0;
}
}
Instance of Symbol 375 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 375 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 375 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 503 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 503 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 503 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 503 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 503 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 503 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(21);
}
}
Instance of Symbol 599 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.gotoAndStop(22);
}
}
Instance of Symbol 169 MovieClip in Frame 20
onClipEvent (enterFrame) {
_x = (_x + ((_root.player._x - _x) / 4));
_y = (_y + ((_root.player._y - _y) / 4));
}
Frame 21
stop();
Stage.showMenu = false;
var monedas = 0;
Frame 22
stop();
Stage.showMenu = false;
var monedas = 0;
Symbol 17 Button
on (release) {
_root.play();
}
Symbol 18 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 18 MovieClip Frame 2
gotoAndPlay (1);
Symbol 18 MovieClip Frame 3
_root.gotoAndPlay(2);
Symbol 127 Button
on (press) {
gotoAndStop (3);
}
Symbol 132 Button
on (press) {
gotoAndStop (4);
}
Symbol 139 Button
on (press) {
getURL ("http://www.newgrounds.com/refer/jectcartoonmkr");
eval (undefined)();
}
Symbol 142 Button
on (press) {
getURL ("http://jectcartoon.deviantart.com");
eval (undefined)();
}
Symbol 166 MovieClip Frame 1
stop();
Symbol 166 MovieClip Frame 2
stop();
Symbol 166 MovieClip Frame 3
stop();
Symbol 169 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
parentColor.setTransform(camColor.getTransform());
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 174 Button
on (press) {
nextFrame();
}
Symbol 183 Button
on (press) {
_root.gotoAndStop(5);
stopAllSounds();
}
Symbol 185 MovieClip Frame 1
stop();
Symbol 185 MovieClip Frame 2
stop();
Symbol 185 MovieClip Frame 3
stop();
Symbol 185 MovieClip Frame 4
stop();
Symbol 196 Button
on (press) {
_root.gotoAndStop(2);
}
Symbol 238 Button
on (keyPress "<Left>") {
_root.sound.gotoAndStop(1275);
}
on (keyPress "<Right>") {
_root.sound.gotoAndPlay(2);
}
Symbol 239 Button
on (keyPress "<Left>") {
_root.sound.gotoAndStop(6292);
}
on (keyPress "<Right>") {
_root.sound.gotoAndPlay(1276);
}
Symbol 240 Button
on (keyPress "<Left>") {
_root.sound.gotoAndStop(12526);
}
on (keyPress "<Right>") {
_root.sound.gotoAndPlay(6293);
}
Symbol 241 Button
on (keyPress "<Left>") {
_root.sound.gotoAndStop(14994);
}
on (keyPress "<Right>") {
_root.sound.gotoAndPlay(12527);
}
Symbol 242 MovieClip Frame 1274
_root.sound.gotoAndPlay(2);
Symbol 242 MovieClip Frame 1275
stop();
stopAllSounds();
Symbol 242 MovieClip Frame 6291
_root.sound.gotoAndPlay(1276);
Symbol 242 MovieClip Frame 6292
stop();
stopAllSounds();
Symbol 242 MovieClip Frame 12525
_root.sound.gotoAndPlay(6293);
Symbol 242 MovieClip Frame 12526
stop();
stopAllSounds();
Symbol 242 MovieClip Frame 14993
_root.sound.gotoAndPlay(12527);
Symbol 242 MovieClip Frame 14994
stop();
stopAllSounds();
Symbol 247 Button
on (press) {
gotoAndStop (7);
}
Symbol 250 Button
on (keyPress "<Space>") {
gotoAndStop (7);
}
Symbol 259 MovieClip Frame 77
stop();
Symbol 273 MovieClip Frame 120
stop();
Symbol 295 MovieClip Frame 1
stop();
Symbol 298 MovieClip Frame 1
stop();
Symbol 298 MovieClip Frame 2
stop();
_root.ground.gotoAndStop(2);
Symbol 307 Button
on (press) {
gotoAndStop (2);
}
Symbol 309 Button
on (keyPress "<Space>") {
gotoAndStop (10);
}
Symbol 348 MovieClip Frame 169
stop();
_root.button_2.gotoAndStop(1);
_root.ground.gotoAndStop(1);
Symbol 349 MovieClip Frame 1
stop();
Symbol 349 MovieClip Frame 2
stop();
Symbol 352 MovieClip Frame 1
stop();
Symbol 352 MovieClip Frame 2
stop();
_root.ground.gotoAndStop(2);
Symbol 408 MovieClip Frame 89
stop();
Symbol 409 Button
on (keyPress "<Space>") {
_root.gotoAndStop(13);
}
Symbol 418 MovieClip Frame 1
stop();
Symbol 418 MovieClip Frame 2
stop();
Symbol 421 MovieClip Frame 1
stop();
Symbol 421 MovieClip Frame 2
stop();
Symbol 424 MovieClip Frame 1
stop();
Symbol 424 MovieClip Frame 2
stop();
Symbol 433 MovieClip Frame 1
stop();
Symbol 433 MovieClip Frame 2
stop();
Symbol 433 MovieClip Frame 3
stop();
Symbol 433 MovieClip Frame 4
stop();
Symbol 433 MovieClip Frame 5
stop();
Symbol 433 MovieClip Frame 6
stop();
Symbol 447 MovieClip Frame 1
stop();
Symbol 447 MovieClip Frame 2
stop();
Symbol 447 MovieClip Frame 3
stop();
Symbol 453 MovieClip Frame 1
stop();
Symbol 453 MovieClip Frame 2
stop();
Symbol 456 MovieClip Frame 1
stop();
Symbol 456 MovieClip Frame 2
stop();
Symbol 506 Button
on (keyPress "<Space>") {
gotoAndStop (13);
}
Symbol 508 Button
on (keyPress "<Space>") {
gotoAndStop (16);
}
Symbol 510 MovieClip Frame 110
stop();
stopAllSounds();
Symbol 533 Button
on (keyPress "<Space>") {
_root.gotoAndStop(19);
}
Symbol 579 MovieClip Frame 70
stop();
Symbol 588 Button
on (press) {
_root.gotoAndStop(20);
}
Symbol 589 MovieClip Frame 1
stop();
Symbol 589 MovieClip Frame 2
stop();
Symbol 589 MovieClip Frame 3
stop();
Symbol 589 MovieClip Frame 4
stop();
Symbol 602 Button
on (keyPress "<Space>") {
gotoAndStop (20);
}