Frame 1 (579 B)
Stage.scaleMode = "noScale";
fscommand ("allowscale", "false");
totalBytes = Math.round(getBytesTotal() / 1024);
loadedBytes = Math.round(getBytesLoaded() / 1024);
percentDone = Math.round((loadedBytes / totalBytes) * 100);
if (_root._framesloaded >= _root._totalframes) {
gotoAndStop (3);
}
if (fpsCounterInterval == undefined) {
fpsTicks = 0;
fpsCounterInterval = setInterval(function () {
trace(fpsTicks);
fpsTicks = 0;
}, 1000);
_root.createEmptyMovieClip("fpsCounterMC", 99999);
fpsCounterMC.onEnterFrame = function () {
fpsTicks++;
};
}
Frame 2 (17 B)
gotoAndPlay (1);
Frame 3 (313 B)
function doSomething() {
}
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Game by GamersHood.com", doSomething);
MENU.customItems.push(Functioned);
_root.menu = MENU;
_quality = "high";
_level0.points = 0;
_level0.lives = 5;
_level0.level = 1;
_level0.keys = 0;
Frame 7 (20 B)
_quality = "high";
Frame 8 (20 B)
_quality = "high";
Frame 9 (20 B)
_quality = "high";
Frame 10 (8 B)
stop();
Frame 11 (1.68 KiB) ●
function move_wait(enterFrame) {
if (Key.isDown(Kleft)) {
this.hero._xscale = -100;
this.hero.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
this.hero._xscale = 100;
this.hero.gotoAndStop("walk");
}
}
function jump_wait() {
if (Key.isDown(Kjump)) {
this.hero.gotoAndStop("jumpUp");
}
}
function fall_wait() {
if (!_root.stage.plate.hitTest(this.hero._x, this.hero._y, true)) {
this.hero.gotoAndStop("jumpDown");
}
}
function move_left(valueX) {
if ((!_root.stage.plate.hitTest((this.hero._x - valueX) - 8, this.hero._y - 4, true)) && (!(_level0.keys === 1))) {
_root.stage._x = _root.stage._x + valueX;
_root.back._x = _root.back._x + (valueX / 4);
}
}
function move_right(valueX) {
if ((!_root.stage.plate.hitTest((this.hero._x + valueX) + 8, this.hero._y - 4, true)) && (!(_level0.keys === 1))) {
_root.stage._x = _root.stage._x - valueX;
_root.back._x = _root.back._x - (valueX / 4);
}
}
function jump_down(valueY) {
if (!_root.stage.plate.hitTest(this.hero._x + 0, this.hero._y - 2, true)) {
this.hero._y = this.hero._y + valueY;
} else {
i = 1;
while (i <= 20) {
if (!_root.stage.plate.hitTest(this.hero._x, this.hero._y - i, true)) {
this.hero._y = this.hero._y - (i - 1);
break;
}
i++;
}
this.hero.gotoAndStop("stand");
}
}
_quality = "low";
fscommand ("fullscreen", "false");
fscommand ("allowscale", "false");
Kleft = 37;
Kright = 39;
Kjump = 32;
walkSpeed = 1.6;
jumpHeight = 7.8;
jumpSpeed = 0.37;
fallSpeed = 2.5;
_level0[0()] = ;
_level0.mapX = _root.stage._x;
_level0.bgX = _root.back._x;
_level0.heroX = _root.hero._x;
_level0.heroY = _root.hero._y;
stop();
Instance of Symbol 167 MovieClip "stage" in Frame 11 (56 B)
onClipEvent (load) {
this.gotoAndStop(_level0.level);
}
Instance of Symbol 207 MovieClip in Frame 11 (142 B)
onClipEvent (enterFrame) {
if (_level0.points >= 100) {
_level0.lives = _level0.lives + 1;
_level0.points = _level0.points - 100;
}
}
Instance of Symbol 218 MovieClip in Frame 11 (107 B)
on (release) {
if (this._currentframe == 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
Symbol 15 Button (65 B)
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
Symbol 18 Button (91 B)
on (release) {
getURL ("http://www.gamershood.com/freegamesforyoursite.html", "_blank");
}
Symbol 21 Button (40 B)
on (release) {
_root.gotoAndStop(10);
}
Symbol 24 Button (39 B)
on (release) {
_root.gotoAndStop(4);
}
Symbol 25 Button (65 B)
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
Symbol 28 Button (39 B)
on (release) {
_root.gotoAndStop(5);
}
Symbol 37 Button (39 B)
on (release) {
_root.gotoAndStop(3);
}
Symbol 51 Button (66 B)
on (release) {
getURL ("http://www.gamershood.com", "_parent");
}
Symbol 56 Button (39 B)
on (release) {
_root.gotoAndStop(3);
}
Symbol 61 Button (223 B)
on (release) {
gotoAndStop (11);
_root.heroOVER._x = -10;
_root.heroOVER._y = -10;
_root.hero._y = 50;
_root.hero.gotoAndStop("stand");
_root.stage._x = _level0.mapX;
_root.back._x = _level0.bgX;
_level0.keys = 0;
}
Symbol 69 Button (64 B)
on (release) {
getURL ("http://www.gamershood.com", "_self");
}
Symbol 76 MovieClip Frame 1 (17 B)
stopAllSounds();
Symbol 76 MovieClip Frame 360 (23 B)
_root.gotoAndStop(11);
Symbol 94 MovieClip Frame 30 (17 B)
gotoAndPlay (1);
Symbol 94 MovieClip Frame 31 (37 B)
_level0.points = _level0.points + 2;
Symbol 94 MovieClip Frame 50 (8 B)
stop();
Symbol 110 MovieClip Frame 1 (8 B)
stop();
Symbol 110 MovieClip Frame 79 (8 B)
stop();
Instance of Symbol 100 MovieClip in Symbol 112 MovieClip Frame 1 (268 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_root.hero._y = -300;
_level0.lives = _level0.lives - 1;
box1 = down1;
}
}
Instance of Symbol 110 MovieClip "box1" in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box1 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box1;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box2 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box2;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box3 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box3;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box4 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box4;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box5 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box5;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box6 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box6;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box7 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box7;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box8 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box8;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (209 B)
onClipEvent (load) {
_level0.box9 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box9;
}
}
Instance of Symbol 110 MovieClip in Symbol 112 MovieClip Frame 1 (211 B)
onClipEvent (load) {
_level0.box10 = this._y;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this._y = this._y + 1;
} else if (_root.stage._x == _level0.mapX) {
this._y = _level0.box10;
}
}
Symbol 126 MovieClip Frame 65 (17 B)
gotoAndPlay (1);
Symbol 126 MovieClip Frame 66 (8 B)
stop();
Symbol 145 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 149 MovieClip in Symbol 151 MovieClip Frame 1 (268 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.lives = _level0.lives - 1;
_level0.keys = 1;
_root.hero._y = -300;
box1 = down1;
}
}
Instance of Symbol 156 MovieClip in Symbol 158 MovieClip Frame 1 (268 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.lives = _level0.lives - 1;
_level0.keys = 1;
_root.hero._y = -300;
box1 = down1;
}
}
Instance of Symbol 163 MovieClip in Symbol 165 MovieClip Frame 1 (268 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.lives = _level0.lives - 1;
_level0.keys = 1;
_root.hero._y = -300;
box1 = down1;
}
}
Symbol 167 MovieClip Frame 1 (145 B)
stop();
stopAllSounds();
my_sound1 = new Sound();
my_sound1.attachSound("worldsound1");
my_sound1.start(0, 9000);
my_sound1.setVolume(50);
Instance of Symbol 95 MovieClip "enemy4" in Symbol 167 MovieClip Frame 1 (551 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
_root.hero._y = _root.hero._y - 10;
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip "enemy5" in Symbol 167 MovieClip Frame 1 (551 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
_root.hero._y = _root.hero._y - 10;
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip "enemy6" in Symbol 167 MovieClip Frame 1 (551 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
_root.hero._y = _root.hero._y - 10;
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip "enemy7" in Symbol 167 MovieClip Frame 1 (551 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
_root.hero._y = _root.hero._y - 10;
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 134 MovieClip "enemy2" in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 95 MovieClip "enemy3" in Symbol 167 MovieClip Frame 1 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 135 MovieClip "enemy1" in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.lives = _level0.lives - 1;
_level0.keys = 1;
_root.hero._y = -300;
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 135 MovieClip "enemy8" in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 1 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 145 MovieClip in Symbol 167 MovieClip Frame 1 (139 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this.gotoAndPlay(2);
_root.heroEND.gotoAndPlay(2);
_level0.keys = 1;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 1 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 1 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 135 MovieClip "enemy8" in Symbol 167 MovieClip Frame 1 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 1 (551 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
_root.hero._y = _root.hero._y - 10;
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 1 (551 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
_root.hero._y = _root.hero._y - 10;
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 1 (551 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
_root.hero._y = _root.hero._y - 10;
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 2 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 2 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 2 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 2 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 134 MovieClip "enemy2" in Symbol 167 MovieClip Frame 2 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 145 MovieClip in Symbol 167 MovieClip Frame 2 (139 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this.gotoAndPlay(2);
_root.heroEND.gotoAndPlay(2);
_level0.keys = 1;
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 2 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 2 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 145 MovieClip in Symbol 167 MovieClip Frame 3 (139 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
this.gotoAndPlay(2);
_root.heroEND.gotoAndPlay(2);
_level0.keys = 1;
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 3 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 3 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 3 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 3 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 134 MovieClip in Symbol 167 MovieClip Frame 3 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 134 MovieClip in Symbol 167 MovieClip Frame 3 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 3 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 145 MovieClip in Symbol 167 MovieClip Frame 4 (163 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.gotoAndStop(7);
this.gotoAndPlay(2);
_root.heroEND.gotoAndPlay(2);
_level0.keys = 1;
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 134 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 134 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 126 MovieClip in Symbol 167 MovieClip Frame 4 (347 B)
onClipEvent (enterFrame) {
if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.gotoAndPlay(1);
} else if (_root.hero.hitTest(this)) {
_level0.points = _level0.points + 1;
this.gotoAndStop(66);
} else if ((_root.heroOVER._currentframe == 100) || (_root.heroEND._currentframe == 180)) {
this.gotoAndPlay(1);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 143 MovieClip in Symbol 167 MovieClip Frame 4 (252 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
}
}
Instance of Symbol 95 MovieClip in Symbol 167 MovieClip Frame 4 (513 B)
onClipEvent (enterFrame) {
if (_root.hero.hitTest(this.enemy3sees.down)) {
_root.heroOVER._x = _root.hero._x;
_root.heroOVER._y = _root.hero._y;
_root.heroOVER.gotoAndPlay(2);
_level0.keys = 1;
_level0.lives = _level0.lives - 1;
_root.hero._y = -300;
} else if (_root.hero.hitTest(this.enemy3sees.knock)) {
this.stop();
this.enemy3sees.gotoAndPlay(31);
} else if ((_root.stage._x == _level0.mapX) && (_root.hero._y == 50)) {
this.enemy3sees.gotoAndPlay(2);
this.gotoAndPlay(2);
}
}
Symbol 170 MovieClip Frame 1 (8 B)
stop();
Symbol 183 MovieClip Frame 24 (17 B)
gotoAndPlay (1);
Symbol 188 MovieClip Frame 1 (82 B)
JumpSound = new Sound();
JumpSound.attachSound("jumpSound");
JumpSound.start();
Symbol 188 MovieClip Frame 9 (22 B)
gotoAndPlay ("loop");
Symbol 194 MovieClip Frame 8 (17 B)
gotoAndPlay (1);
Symbol 195 MovieClip Frame 1 (30 B)
this.gotoAndStop("jumpDown");
Instance of Symbol 170 MovieClip in Symbol 195 MovieClip Frame 1 (48 B)
onClipEvent (enterFrame) {
_root.jump_down();
}
Instance of Symbol 170 MovieClip in Symbol 195 MovieClip Frame 2 (108 B)
onClipEvent (enterFrame) {
_root.jump_down();
_root.move_wait();
_root.jump_wait();
_root.fall_wait();
}
Instance of Symbol 170 MovieClip in Symbol 195 MovieClip Frame 3 (348 B)
onClipEvent (enterFrame) {
_root.jump_down();
if (_parent._xscale == 100) {
_root.move_right(_root.walkSpeed);
if (!Key.isDown(_root.Kright)) {
_parent.gotoAndStop("stand");
}
} else {
_root.move_left(_root.walkSpeed);
if (!Key.isDown(_root.Kleft)) {
_parent.gotoAndStop("stand");
}
}
_root.jump_wait();
_root.fall_wait();
}
Instance of Symbol 170 MovieClip in Symbol 195 MovieClip Frame 4 (406 B)
onClipEvent (load) {
jumpH = -_root.jumpHeight;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + jumpH;
jumpH = jumpH + _root.jumpSpeed;
if (jumpH >= 0) {
_parent.gotoAndStop("jumpDown");
}
if (Key.isDown(_root.Kright)) {
_parent._xscale = 100;
_root.move_right(_root.walkSpeed);
} else if (Key.isDown(_root.Kleft)) {
_parent._xscale = -100;
_root.move_left(_root.walkSpeed);
}
}
Instance of Symbol 170 MovieClip in Symbol 195 MovieClip Frame 5 (360 B)
onClipEvent (load) {
jumpH = 0;
}
onClipEvent (enterFrame) {
if (jumpH < _root.fallSpeed) {
jumpH = jumpH + _root.jumpSpeed;
}
_root.jump_down(jumpH);
if (Key.isDown(_root.Kright)) {
_parent._xscale = 100;
_root.move_right(_root.walkSpeed);
} else if (Key.isDown(_root.Kleft)) {
_parent._xscale = -100;
_root.move_left(_root.walkSpeed);
}
}
Symbol 203 MovieClip Frame 1 (8 B)
stop();
Symbol 203 MovieClip Frame 98 (53 B)
if (_level0.lives == 0) {
_root.gotoAndStop(8);
}
Symbol 203 MovieClip Frame 99 (22 B)
_root.gotoAndStop(9);
Symbol 203 MovieClip Frame 100 (187 B)
_root.heroOVER._x = -10;
_root.heroOVER._y = -10;
_root.hero._y = 50;
_root.hero.gotoAndStop("stand");
_root.stage._x = _level0.mapX;
_root.back._x = _level0.bgX;
_level0.keys = 0;
Symbol 205 MovieClip Frame 1 (8 B)
stop();
Symbol 205 MovieClip Frame 39 (116 B)
_root.heroEND._x = _root.hero._x;
_root.heroEND._y = _root.hero._y - 12;
_root.hero._x = -300;
gotoAndPlay (40);
Symbol 205 MovieClip Frame 180 (274 B)
_root.hero._x = _level0.heroX;
_root.hero._y = _level0.heroY;
_root.stage.nextFrame();
_level0.keys = 0;
_root.stage._x = _level0.mapX;
_root.back._x = _level0.bgX;
_root.heroEND._x = -20;
_root.heroEND._y = -20;
_level0.level = _level0.level + 1;
gotoAndStop (1);
Symbol 212 Button (65 B)
on (release) {
getURL ("http://www.gamershood.com", "_blank");
}
Symbol 218 MovieClip Frame 1 (17 B)
stopAllSounds();
Symbol 218 MovieClip Frame 2 (8 B)
stop();