Frame 1
function general() {
}
_focusrect = false;
onLoad = function () {
};
var menu = new ContextMenu();
menu.hideBuiltInItems();
var general = new ContextMenuItem("Alucard drew, tomylee made it move", general);
menu.customItems.push(general);
menu.onSelect = menuHandler;
_root.menu = menu;
stop();
_root._x = 0;
_root._y = 0;
_root.frameNumber = 1;
Instance of Symbol 73 MovieClip "cursor" in Frame 1
onClipEvent (enterFrame) {
Mouse.hide();
}
onClipEvent (enterFrame) {
_root.cursor._x = _root._xmouse;
_root.cursor._y = _root._ymouse;
}
Frame 2
stop();
_root._x = 0;
_root._y = 0;
_root.frameNumber = 2;
Frame 3
_root.frameNumber = 3;
Frame 4
_root.frameNumber = 4;
Frame 5
_root.frameNumber = 5;
Frame 6
_root.frameNumber = 6;
Frame 7
_root.frameNumber = 7;
Frame 8
_root.frameNumber = 8;
Frame 9
_root.frameNumber = 9;
_root.counter.timer = 0;
i = 0;
onEnterFrame = function () {
i++;
if ((i > 48) && (_root.stopped != 1)) {
_root.counter.timer++;
i = 0;
}
};
_root.inventory.score = 0;
_root.lives.lives = 3;
function savegame() {
savefile = SharedObject.getLocal("pumpkincollector");
_root.savefile.data.yourtime = _root.counter.timer;
_root.savefile.data.level = _root.frameNumber;
_root.savefile.data.lives = _root.lives.lives;
_root.savefile.flush();
}
function loadgame() {
savefile = SharedObject.getLocal("pumpkincollector");
_root.counter.timer = _root.savefile.data.yourtime;
_root.frameNumber = _root.savefile.data.level;
_root.lives.lives = _root.savefile.data.lives;
stopAllSounds();
if (frameNumber == 9) {
_root.player._x = 100;
_root.player._y = 150;
}
if (frameNumber == 10) {
_root.player._x = -650;
_root.player._y = 100;
}
if (frameNumber == 11) {
_root.player._x = 250;
_root.player._y = 350;
}
if (frameNumber == 12) {
_root.player._x = -880;
_root.player._y = 150;
}
_root.menugame.gotoAndStop(1);
_root.gotoAndStop(_root.frameNumber);
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 249 MovieClip "player" in Frame 9
onClipEvent (load) {
grav = 0;
speed = 9;
jumpHeight = 16;
scale = _xscale;
slowfall = 0.8;
clavado = false;
}
onClipEvent (enterFrame) {
_root.playerx = this._x;
_root.playery = this._y;
this._x = _root.playerx;
this._y = _root.playery;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68) && (clavado == false)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true) && (clavado == false)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else if (Key.isDown(65) && (clavado == false)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true) && (clavado == false)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (clavado == false)) {
this.gotoAndStop(1);
}
if (Key.isDown(83) && (clavado == false)) {
grav = grav * slowfall;
}
if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (clavado == false)) {
this.gotoAndStop(4);
}
if ((Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) && (clavado == false)) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (load) {
CamX = _x;
CamY = _y;
}
onClipEvent (enterFrame) {
CamY = CamY + ((_y - CamY) / 10);
_root._y = (Stage.height / 2) - CamY;
CamX = CamX + ((_x - CamX) / 10);
_root._x = (Stage.height / 2) - CamX;
_root.inventory._x = CamX;
_root.inventory._y = CamY;
_root.back._x = CamX;
_root.back._y = CamY;
_root.test._x = (Stage.height / 2) - CamX;
_root.test._y = (Stage.height / 2) - CamY;
_root.menugame._x = CamX;
_root.menugame._y = CamY;
_root.lives._x = CamX;
_root.lives._y = CamY;
_root.counter._x = CamX;
_root.counter._y = CamY;
_root.intermenu._x = CamX;
_root.intermenu._y = CamY;
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 283 MovieClip "enemy" in Frame 9
onClipEvent (load) {
hitted = false;
speed = 3;
dead = false;
attacking = false;
}
onClipEvent (enterFrame) {
if (((hitted == false) && (dead == false)) && (attacking == false)) {
this._x = this._x - speed;
gotoAndStop (2);
this._xscale = 35;
}
if (((hitted == true) && (dead == false)) && (attacking == false)) {
this._x = this._x + speed;
gotoAndStop (2);
this._xscale = -35;
}
if (dead == true) {
this.gotoAndStop("dead");
speed = 0;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.hittest1) && (dead == false)) && (attacking == false)) {
hitted = true;
}
if ((this.hitTest(_root.hittest2) && (dead == false)) && (attacking == false)) {
hitted = false;
}
}
onClipEvent (enterFrame) {
if ((attacking == true) && (dead == false)) {
this.gotoAndStop("attacking");
speed = 0;
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 284 MovieClip in Frame 9
onClipEvent (load) {
hitted = false;
speed = 5;
}
onClipEvent (enterFrame) {
if (hitted == false) {
this._x = this._x - speed;
this._xscale = -35;
}
if (hitted == true) {
this._x = this._x + speed;
this._xscale = 35;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hittest3)) {
hitted = true;
}
if (this.hitTest(_root.hittest4)) {
hitted = false;
}
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(6);
}
}
Instance of Symbol 343 MovieClip "inventory" in Frame 9
onClipEvent (enterFrame) {
if (this.score == 50) {
stopAllSounds();
_root.gotoAndStop("level2");
}
}
Instance of Symbol 345 MovieClip "loader" in Frame 9
onClipEvent (load) {
pumpkinnew = true;
}
Instance of Symbol 347 MovieClip "lives" in Frame 9
onClipEvent (enterFrame) {
if (this.lives == -1) {
stopAllSounds();
_root.gotoAndStop("gameover");
}
}
Frame 10
_root.frameNumber = 10;
_root.inventory.score = 0;
Instance of Symbol 371 MovieClip "player" in Frame 10
onClipEvent (load) {
grav = 0;
speed = 9;
jumpHeight = 16;
scale = _xscale;
slowfall = 0.8;
clavado = false;
}
onClipEvent (enterFrame) {
_root.playerx = this._x;
_root.playery = this._y;
this._x = _root.playerx;
this._y = _root.playery;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68) && (clavado == false)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true) && (clavado == false)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else if (Key.isDown(65) && (clavado == false)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true) && (clavado == false)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (clavado == false)) {
this.gotoAndStop(1);
}
if (Key.isDown(83) && (clavado == false)) {
grav = grav * slowfall;
}
if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (clavado == false)) {
this.gotoAndStop(4);
}
if ((Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) && (clavado == false)) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (load) {
CamX = _x;
CamY = _y;
}
onClipEvent (enterFrame) {
CamY = CamY + ((_y - CamY) / 10);
_root._y = (Stage.height / 2) - CamY;
CamX = CamX + ((_x - CamX) / 10);
_root._x = (Stage.height / 2) - CamX;
_root.inventory._x = CamX;
_root.inventory._y = CamY;
_root.back._x = CamX;
_root.back._y = CamY;
_root.test._x = (Stage.height / 2) - CamX;
_root.test._y = (Stage.height / 2) - CamY;
_root.menugame._x = CamX;
_root.menugame._y = CamY;
_root.lives._x = CamX;
_root.lives._y = CamY;
_root.counter._x = CamX;
_root.counter._y = CamY;
_root.intermenu._x = CamX;
_root.intermenu._y = CamY;
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader1.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 284 MovieClip in Frame 10
onClipEvent (load) {
hitted = false;
speed = 4;
}
onClipEvent (enterFrame) {
if (hitted == false) {
this._x = this._x - speed;
this._xscale = -35;
}
if (hitted == true) {
this._x = this._x + speed;
this._xscale = 35;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hittest5)) {
hitted = true;
}
if (this.hitTest(_root.hittest6)) {
hitted = false;
}
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(6);
}
}
Instance of Symbol 284 MovieClip in Frame 10
onClipEvent (load) {
hitted = false;
speed = 4;
}
onClipEvent (enterFrame) {
if (hitted == false) {
this._x = this._x - speed;
this._xscale = -35;
}
if (hitted == true) {
this._x = this._x + speed;
this._xscale = 35;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hittest5)) {
hitted = true;
}
if (this.hitTest(_root.hittest6)) {
hitted = false;
}
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(6);
}
}
Instance of Symbol 284 MovieClip in Frame 10
onClipEvent (load) {
hitted = false;
speed = 4;
}
onClipEvent (enterFrame) {
if (hitted == false) {
this._x = this._x - speed;
this._xscale = -35;
}
if (hitted == true) {
this._x = this._x + speed;
this._xscale = 35;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hittest5)) {
hitted = true;
}
if (this.hitTest(_root.hittest6)) {
hitted = false;
}
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(6);
}
}
Instance of Symbol 376 MovieClip "inventory" in Frame 10
onClipEvent (enterFrame) {
if (this.score == 100) {
stopAllSounds();
_root.gotoAndStop("level3");
}
}
Instance of Symbol 345 MovieClip "loader1" in Frame 10
onClipEvent (load) {
pumpkinnew = true;
}
Frame 11
_root.frameNumber = 11;
_root.inventory.score = 0;
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 213 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
Instance of Symbol 404 MovieClip "player" in Frame 11
onClipEvent (load) {
grav = 0;
speed = 9;
jumpHeight = 16;
scale = _xscale;
slowfall = 0.8;
clavado = false;
}
onClipEvent (enterFrame) {
_root.playerx = this._x;
_root.playery = this._y;
this._x = _root.playerx;
this._y = _root.playery;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68) && (clavado == false)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true) && (clavado == false)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else if (Key.isDown(65) && (clavado == false)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true) && (clavado == false)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (clavado == false)) {
this.gotoAndStop(1);
}
if (Key.isDown(83) && (clavado == false)) {
grav = grav * slowfall;
}
if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (clavado == false)) {
this.gotoAndStop(4);
}
if ((Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) && (clavado == false)) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (load) {
CamX = _x;
CamY = _y;
}
onClipEvent (enterFrame) {
CamY = CamY + ((_y - CamY) / 10);
_root._y = (Stage.height / 2) - CamY;
CamX = CamX + ((_x - CamX) / 10);
_root._x = (Stage.height / 2) - CamX;
_root.inventory._x = CamX;
_root.inventory._y = CamY;
_root.back._x = CamX;
_root.back._y = CamY;
_root.test._x = (Stage.height / 2) - CamX;
_root.test._y = (Stage.height / 2) - CamY;
_root.menugame._x = CamX;
_root.menugame._y = CamY;
_root.lives._x = CamX;
_root.lives._y = CamY;
_root.counter._x = CamX;
_root.counter._y = CamY;
_root.intermenu._x = CamX;
_root.intermenu._y = CamY;
}
Instance of Symbol 208 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader2.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 283 MovieClip "enemy" in Frame 11
onClipEvent (load) {
hitted = false;
speed = 3;
dead = false;
attacking = false;
}
onClipEvent (enterFrame) {
if (((hitted == false) && (dead == false)) && (attacking == false)) {
this._x = this._x - speed;
gotoAndStop (2);
this._xscale = 35;
}
if (((hitted == true) && (dead == false)) && (attacking == false)) {
this._x = this._x + speed;
gotoAndStop (2);
this._xscale = -35;
}
if (dead == true) {
this.gotoAndStop("dead");
speed = 0;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.hittest8) && (dead == false)) && (attacking == false)) {
hitted = true;
}
if ((this.hitTest(_root.hittest7) && (dead == false)) && (attacking == false)) {
hitted = false;
}
}
onClipEvent (enterFrame) {
if ((attacking == true) && (dead == false)) {
this.gotoAndStop("attacking");
speed = 0;
}
}
Instance of Symbol 284 MovieClip in Frame 11
onClipEvent (load) {
hitted = false;
speed = 5;
}
onClipEvent (enterFrame) {
if (hitted == false) {
this._x = this._x - speed;
this._xscale = -35;
}
if (hitted == true) {
this._x = this._x + speed;
this._xscale = 35;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hittest9)) {
hitted = true;
}
if (this.hitTest(_root.hittest10)) {
hitted = false;
}
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(6);
}
}
Instance of Symbol 407 MovieClip "inventory" in Frame 11
onClipEvent (enterFrame) {
if (this.score == 150) {
stopAllSounds();
_root.gotoAndStop("level4");
}
}
Instance of Symbol 345 MovieClip "loader2" in Frame 11
onClipEvent (load) {
pumpkinnew = true;
}
Frame 12
_root.frameNumber = 12;
_root.inventory.score = 0;
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 208 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.play();
}
}
onClipEvent (load) {
if (_root.loader3.pumpkinnew == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 433 MovieClip "player" in Frame 12
onClipEvent (load) {
grav = 0;
speed = 9;
jumpHeight = 16;
scale = _xscale;
slowfall = 0.8;
clavado = false;
}
onClipEvent (enterFrame) {
_root.playerx = this._x;
_root.playery = this._y;
this._x = _root.playerx;
this._y = _root.playery;
grav++;
_y = (_y + grav);
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
grav = 0;
}
if (Key.isDown(68) && (clavado == false)) {
_x = (_x + speed);
_xscale = scale;
if (_root.ground.hitTest(_x, _y + 3, true) && (clavado == false)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else if (Key.isDown(65) && (clavado == false)) {
_x = (_x - speed);
_xscale = (-scale);
if (_root.ground.hitTest(_x, _y + 3, true) && (clavado == false)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(4);
}
} else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (clavado == false)) {
this.gotoAndStop(1);
}
if (Key.isDown(83) && (clavado == false)) {
grav = grav * slowfall;
}
if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (clavado == false)) {
this.gotoAndStop(4);
}
if ((Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) && (clavado == false)) {
grav = -jumpHeight;
_y = (_y - 4);
this.gotoAndStop(4);
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x + (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x - speed);
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true) || (_root.ground.hitTest(_x - (_width / 2), _y - ((_height / 6) * 4), true))) {
_x = (_x + speed);
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
grav = 2;
}
}
onClipEvent (load) {
CamX = _x;
CamY = _y;
}
onClipEvent (enterFrame) {
CamY = CamY + ((_y - CamY) / 10);
_root._y = (Stage.height / 2) - CamY;
CamX = CamX + ((_x - CamX) / 10);
_root._x = (Stage.height / 2) - CamX;
_root.inventory._x = CamX;
_root.inventory._y = CamY;
_root.back._x = CamX;
_root.back._y = CamY;
_root.test._x = (Stage.height / 2) - CamX;
_root.test._y = (Stage.height / 2) - CamY;
_root.menugame._x = CamX;
_root.menugame._y = CamY;
_root.lives._x = CamX;
_root.lives._y = CamY;
_root.counter._x = CamX;
_root.counter._y = CamY;
_root.intermenu._x = CamX;
_root.intermenu._y = CamY;
}
Instance of Symbol 284 MovieClip in Frame 12
onClipEvent (load) {
hitted = false;
speed = 5;
}
onClipEvent (enterFrame) {
if (hitted == false) {
this._x = this._x - speed;
this._xscale = -35;
}
if (hitted == true) {
this._x = this._x + speed;
this._xscale = 35;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hittestt)) {
hitted = true;
}
if (this.hitTest(_root.hittestg)) {
hitted = false;
}
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(6);
}
}
Instance of Symbol 284 MovieClip in Frame 12
onClipEvent (load) {
hitted = false;
speed = 5;
}
onClipEvent (enterFrame) {
if (hitted == false) {
this._x = this._x - speed;
this._xscale = -35;
}
if (hitted == true) {
this._x = this._x + speed;
this._xscale = 35;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hittestf)) {
hitted = true;
}
if (this.hitTest(_root.hittesth)) {
hitted = false;
}
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(6);
}
}
Instance of Symbol 284 MovieClip in Frame 12
onClipEvent (load) {
hitted = false;
speed = 5;
}
onClipEvent (enterFrame) {
if (hitted == false) {
this._x = this._x - speed;
this._xscale = -35;
}
if (hitted == true) {
this._x = this._x + speed;
this._xscale = 35;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hittesti)) {
hitted = true;
}
if (this.hitTest(_root.hittestj)) {
hitted = false;
}
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(6);
}
}
Instance of Symbol 283 MovieClip "enemy" in Frame 12
onClipEvent (load) {
hitted = false;
speed = 3;
dead = false;
attacking = false;
}
onClipEvent (enterFrame) {
if (((hitted == false) && (dead == false)) && (attacking == false)) {
this._x = this._x - speed;
gotoAndStop (2);
this._xscale = 35;
}
if (((hitted == true) && (dead == false)) && (attacking == false)) {
this._x = this._x + speed;
gotoAndStop (2);
this._xscale = -35;
}
if (dead == true) {
this.gotoAndStop("dead");
speed = 0;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.hittestq) && (dead == false)) && (attacking == false)) {
hitted = true;
}
if ((this.hitTest(_root.hittestw) && (dead == false)) && (attacking == false)) {
hitted = false;
}
}
onClipEvent (enterFrame) {
if ((attacking == true) && (dead == false)) {
this.gotoAndStop("attacking");
speed = 0;
}
}
Instance of Symbol 436 MovieClip "inventory" in Frame 12
onClipEvent (enterFrame) {
if (this.score == 200) {
stopAllSounds();
_root.gotoAndStop("final");
}
}
Instance of Symbol 345 MovieClip "loader3" in Frame 12
onClipEvent (load) {
pumpkinnew = true;
}
Frame 13
stop();
_root._x = 0;
_root._y = 0;
_root.frameNumber = 13;
stopAllSounds();
_root.stopped = 1;
Frame 14
stop();
_root._x = 0;
_root._y = 0;
_root.frameNumber = 14;
stopAllSounds();
_root.stopped = 1;
Frame 15
stop();
_root._x = 0;
_root._y = 0;
_root.frameNumber = 15;
_root.stopped = 1;
Frame 16
stop();
_root._x = 0;
_root._y = 0;
_root.frameNumber = 16;
stopAllSounds();
_root.stopped = 1;
Symbol 15 Button
on (release) {
getURL ("http://www.newgrounds.com", "blank");
}
Symbol 20 Button
on (release) {
_root.play();
}
Symbol 21 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 21 MovieClip Frame 2
gotoAndPlay (1);
Instance of Symbol 70 MovieClip in Symbol 71 MovieClip Frame 1
on (release) {
getURL ("http://newgrounds.com/collection/halloween2006.html", "blank");
}
Symbol 85 MovieClip Frame 558
stop();
_root.nextFrame();
Symbol 96 Button
on (release) {
stopAllSounds();
gotoAndStop ("level1");
}
Symbol 100 Button
on (release) {
gotoAndStop ("instructions");
}
Symbol 102 Button
on (release) {
getURL ("http://www.armorbot.com/mytable/?id=460", "blank");
}
Symbol 106 Button
on (release) {
getURL ("http://newgrounds.com/collection/halloween2006.html", "blank");
}
Symbol 109 MovieClip Frame 21
stop();
Symbol 120 Button
on (release) {
nextFrame();
}
Symbol 123 Button
on (release) {
gotoAndStop ("menu");
}
Symbol 142 Button
on (release) {
nextFrame();
}
Symbol 143 Button
on (release) {
prevFrame();
}
Symbol 144 Button
on (release) {
stopAllSounds();
gotoAndStop ("menu");
}
Instance of Symbol 200 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 201 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 202 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 203 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 204 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 202 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Symbol 208 MovieClip Frame 1
stop();
Symbol 208 MovieClip Frame 2
_root.inventory.score = _root.inventory.score + 1;
Symbol 208 MovieClip Frame 31
stop();
Symbol 213 MovieClip Frame 1
stop();
Symbol 213 MovieClip Frame 2
_root.lives.lives = _root.lives.lives + 1;
Symbol 213 MovieClip Frame 26
stop();
Symbol 231 MovieClip Frame 100
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = 100;
_root.player._y = 150;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 237 MovieClip Frame 100
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = 100;
_root.player._y = 150;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 248 MovieClip Frame 113
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = 100;
_root.player._y = 150;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 249 MovieClip Frame 1
stop();
Symbol 268 MovieClip Frame 152
stop();
this._parent.dead = false;
this._parent.speed = 3;
Instance of Symbol 263 MovieClip in Symbol 282 MovieClip Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(7);
}
}
Symbol 282 MovieClip Frame 30
stop();
this._parent.attacking = false;
this._parent.speed = 3;
Symbol 283 MovieClip Frame 1
stop();
Instance of Symbol 263 MovieClip in Symbol 283 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this._parent.dead = true;
_root.player.grav--;
_root.player.grav = -10;
_root.player._y = _root.player._y - 40;
}
}
Instance of Symbol 263 MovieClip in Symbol 283 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this._parent.attacking = true;
}
}
Symbol 295 Button
on (release) {
_root.menugame.gotoAndStop(1);
}
Symbol 299 Button
on (release) {
_root.menugame.gotoAndStop(3);
}
Symbol 303 Button
on (release) {
_root.menugame.gotoAndStop(4);
}
Symbol 307 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 312 Button
on (release) {
_root.loadgame();
}
Symbol 315 Button
on (release) {
_root.savegame();
}
Symbol 321 Button
on (release) {
_quality = "HIGH";
}
Symbol 325 Button
on (release) {
_quality = "MEDIUM";
}
Symbol 329 Button
on (release) {
_quality = "LOW";
}
Symbol 330 MovieClip Frame 1
stop();
Symbol 341 Button
on (release) {
_root.menugame.gotoAndStop(2);
}
Symbol 356 MovieClip Frame 114
stop();
Instance of Symbol 202 MovieClip in Symbol 362 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 202 MovieClip in Symbol 362 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Symbol 364 MovieClip Frame 100
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = -650;
_root.player._y = 100;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 370 MovieClip Frame 100
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = -650;
_root.player._y = 100;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 371 MovieClip Frame 1
stop();
Symbol 382 MovieClip Frame 114
stop();
Instance of Symbol 200 MovieClip in Symbol 388 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 200 MovieClip in Symbol 388 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 200 MovieClip in Symbol 388 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Instance of Symbol 200 MovieClip in Symbol 388 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.clavado = true;
_root.player.gotoAndStop(5);
}
}
Symbol 390 MovieClip Frame 100
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = 250;
_root.player._y = 350;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 396 MovieClip Frame 100
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = 250;
_root.player._y = 350;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 403 MovieClip Frame 113
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = 250;
_root.player._y = 350;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 404 MovieClip Frame 1
stop();
Symbol 413 MovieClip Frame 114
stop();
Symbol 425 MovieClip Frame 100
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = -880;
_root.player._y = 150;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 432 MovieClip Frame 113
stop();
_root.lives.lives = _root.lives.lives - 1;
_root.player._x = -880;
_root.player._y = 150;
_root.player.clavado = false;
_root.player.gotoAndStop(1);
Symbol 433 MovieClip Frame 1
stop();
Symbol 442 MovieClip Frame 114
stop();
Symbol 458 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 459 MovieClip Frame 195
stop();
Symbol 469 MovieClip Frame 1
function camControl() {
var _local4 = _parent;
var _local3 = this;
parentColor.setTransform(camColor.getTransform());
var _local5 = sX / _local3._width;
var _local6 = sY / _local3._height;
_local4._x = cX - (_local3._x * _local5);
_local4._y = cY - (_local3._y * _local6);
_local4._xscale = 100 * _local5;
_local4._yscale = 100 * _local6;
}
function resetStage() {
var _local2 = _parent;
var _local3 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local3);
_local2._xscale = 100;
_local2._yscale = 100;
_local2._x = 0;
_local2._y = 0;
}
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;
stop();
Symbol 469 MovieClip Frame 20
stop();
Instance of Symbol 469 MovieClip in Symbol 501 MovieClip Frame 1
onClipEvent (enterFrame) {
this._x = this._x + ((_root.hero._x - this._x) * 0.03);
this._y = this._y + ((_root.hero._y - this._y) * 0.03);
}
Symbol 501 MovieClip Frame 955
stop();
_root.play();
Symbol 508 MovieClip Frame 1030
stop();
_root.gotoAndStop("submit");
Symbol 513 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("submit");
}
Symbol 527 Button
on (release) {
stopAllSounds();
ab20_09 = new LoadVars();
ab20_09.z = _root.namevar;
ab20_09.x = _root.counter.timer;
ab20_09.c = 460;
ab20_09.v = "MTQFEA";
ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST");
_root.gotoAndStop("menu");
}
Symbol 531 Button
on (release) {
stopAllSounds();
gotoAndStop ("menu");
}