Frame 1
function itemHandler1(obj, item) {
getURL ("http://lostsolution.net");
}
function itemHandler1(obj, item) {
getURL ("http://lostsolution.net");
}
var myMenu = new ContextMenu();
myMenu.hideBuiltInItems();
item1 = new ContextMenuItem("Visit LOSTSOLUTION", itemHandler1);
myMenu.customItems.push(item1);
myMenu.customItems.push(new ContextMenuItem("Visit LOSTSOLUTION", itemHandler1));
_root.menu = myMenu;
var level = 1;
var health = 25;
var score = 0;
var bg_color = 0;
_root._quality = "MEDIUM";
Frame 2
stopAllSounds();
Sound1 = new Sound(this);
Sound1.attachSound("Sound1");
Sound1.start(0, 99999);
stop();
var score = 0;
amount = 100;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 2) + 0.2;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Frame 3
stopAllSounds();
Sound2 = new Sound(this);
Sound2.attachSound("Sound2");
Sound2.start(0, 99999);
Frame 4
stop();
_root.bg_color = _root.bg_color + 3.5;
amount = 100;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 2) + 0.2;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Frame 5
var level = 1;
var health = 25;
var bg_color = 0;
onEnterFrame = function () {
if (_root.score == 0) {
_root.scoredisplay.text = "0000";
} else if ((_root.score < 10) && (_root.score != 0)) {
_root.scoredisplay.text = "000" + _root.score;
} else if ((_root.score < 100) && (_root.score != 0)) {
_root.scoredisplay.text = "00" + _root.score;
} else if ((_root.score >= 100) && (_root.score <= 1000)) {
_root.scoredisplay.text = "0" + _root.score;
} else if (_root.score >= 1000) {
_root.scoredisplay.text = _root.score;
} else if (_root.score >= 9999) {
_root.scoredisplay.text = 9999;
}
};
amount = 100;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 2) + 0.2;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Frame 6
onEnterFrame = function () {
if (_root.score == 0) {
_root.scoredisplay.text = "0000";
} else if ((_root.score < 10) && (_root.score != 0)) {
_root.scoredisplay.text = "000" + _root.score;
} else if ((_root.score < 100) && (_root.score != 0)) {
_root.scoredisplay.text = "00" + _root.score;
} else if ((_root.score >= 100) && (_root.score <= 1000)) {
_root.scoredisplay.text = "0" + _root.score;
} else if (_root.score >= 1000) {
_root.scoredisplay.text = _root.score;
} else if (_root.score >= 9999) {
_root.scoredisplay.text = 9999;
}
};
amount = 100;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 2) + 0.2;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Instance of Symbol 89 MovieClip in Frame 6
onClipEvent (load) {
this._alpha = this._alpha - _root.bg_color;
}
Instance of Symbol 92 MovieClip in Frame 6
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 6
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 6
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 6
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 6
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 6
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 115 MovieClip "player" in Frame 6
onClipEvent (load) {
xScale = this._xscale;
speed = 0.5;
myx = 0;
dead = false;
}
onClipEvent (enterFrame) {
if (dead == false) {
if (!this.hitTest()) {
_root.dSpeed = _root.dSpeed + 0.5;
}
if (_root.dSpeed >= 10) {
_root.dSpeed = 10;
}
_y = (_y + _root.dSpeed);
this._x = this._x + myx;
if (Key.isDown(37)) {
_rotation = 175;
_xscale = ((xScale - xScale) - xScale);
myx = myx - speed;
} else if (Key.isDown(39)) {
_rotation = 185;
_xscale = xScale;
myx = myx + speed;
} else if (myx > 0) {
myx = myx - speed;
} else if (myx < 0) {
myx = myx + speed;
}
} else if (dead == true) {
this._y = this._y - 16;
this._alpha = 75;
this.gotoAndStop("die");
}
}
Instance of Symbol 117 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.poo.hitTest(_root.player)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 121 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.dSpeed = -7;
_root.jumping = true;
_root.player.myx = 7;
}
}
Instance of Symbol 121 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.dSpeed = -7;
_root.jumping = true;
_root.player.myx = -7;
}
}
Instance of Symbol 123 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.poo)) {
_root.player.dead = false;
_root.player._x = 70;
_root.player._y = 404;
_root.player._alpha = 100;
_root.player.gotoAndStop(1);
_root.player.myx = 0;
_root.player.myy = 0;
_root.jumping = false;
}
}
Instance of Symbol 132 MovieClip in Frame 6
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 132 MovieClip in Frame 6
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 140 MovieClip "comp" in Frame 6
onClipEvent (enterFrame) {
if (_root.health <= 0) {
_root.gotoAndStop("over");
}
}
Instance of Symbol 142 MovieClip in Frame 6
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.l1)) {
_root.comp.play();
_root.player._x = 5000;
}
}
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 159 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.boop.hitTest(_root.player)) {
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.health++;
}
}
Instance of Symbol 176 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 159 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.boop.hitTest(_root.player)) {
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.health++;
}
}
Instance of Symbol 176 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 11
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 103 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet) && (_root.player.dead == false)) {
cloud.nextFrame();
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
} else if (_root.player.dead == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 148 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 12
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 159 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.boop.hitTest(_root.player)) {
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.health++;
}
}
Instance of Symbol 176 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 13
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 103 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet) && (_root.player.dead == false)) {
cloud.nextFrame();
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
} else if (_root.player.dead == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 103 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet) && (_root.player.dead == false)) {
cloud.nextFrame();
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
} else if (_root.player.dead == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 103 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet) && (_root.player.dead == false)) {
cloud.nextFrame();
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
} else if (_root.player.dead == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 14
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 176 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 159 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.boop.hitTest(_root.player)) {
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.health++;
}
}
Instance of Symbol 159 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.boop.hitTest(_root.player)) {
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.health++;
}
}
Instance of Symbol 176 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 17
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 19
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 159 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.boop.hitTest(_root.player)) {
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.health++;
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 20
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 176 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 192 MovieClip "spike2" in Frame 20
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 176 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 159 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.boop.hitTest(_root.player)) {
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.health++;
}
}
Instance of Symbol 176 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 159 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.boop.hitTest(_root.player)) {
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.health++;
}
}
Instance of Symbol 176 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 176 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 176 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 23
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike1" in Frame 24
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike2" in Frame 24
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike3" in Frame 24
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike4" in Frame 24
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike5" in Frame 24
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 192 MovieClip "spike6" in Frame 24
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 148 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
Instance of Symbol 176 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
Instance of Symbol 123 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.poo)) {
_root.player.dead = false;
_root.player._x = 70;
_root.player._y = 350;
_root.player._alpha = 100;
_root.player.gotoAndStop(1);
_root.player.myx = 0;
_root.player.myy = 0;
}
}
Instance of Symbol 197 MovieClip "comp" in Frame 25
onClipEvent (enterFrame) {
if (_root.health <= 0) {
_root.gotoAndStop("over");
}
}
Instance of Symbol 142 MovieClip in Frame 25
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.l1)) {
_root.comp.play();
}
}
Frame 26
var level = 1;
var health = 25;
var bg_color = 0;
onEnterFrame = function () {
if (_root.score == 0) {
_root.scoredisplay.text = "0000";
} else if ((_root.score < 10) && (_root.score != 0)) {
_root.scoredisplay.text = "000" + _root.score;
} else if ((_root.score < 100) && (_root.score != 0)) {
_root.scoredisplay.text = "00" + _root.score;
} else if ((_root.score >= 100) && (_root.score <= 1000)) {
_root.scoredisplay.text = "0" + _root.score;
} else if (_root.score >= 1000) {
_root.scoredisplay.text = _root.score;
} else if (_root.score >= 9999) {
_root.scoredisplay.text = 9999;
}
};
amount = 100;
mWidth = Stage.width;
mHeight = Stage.height;
var i = 0;
while (i < amount) {
thisFlake = this.attachMovie("flake", "flake" + i, i);
with (thisFlake) {
_x = Math.random() * mWidth;
_y = Math.random() * mHeight;
_xscale = (_yscale = (_alpha = 40 + (Math.random() * 60)));
}
thisFlake.yspeed = (Math.random() * 2) + 0.2;
thisFlake.increment = -0.025 + (Math.random() * 0.05);
thisFlake.radian = 0;
thisFlake.onEnterFrame = function () {
this.radians = this.radians + this.increment;
this._x = this._x + Math.sin(this.radians);
this._y = this._y + this.yspeed;
if (this._y >= mHeight) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
if ((this._x >= mWidth) || (this._x <= 0)) {
this._y = -10;
this._x = -10 + (Math.random() * mWidth);
}
};
i++;
}
Instance of Symbol 89 MovieClip in Frame 27
onClipEvent (load) {
this._alpha = this._alpha - _root.bg_color;
}
Instance of Symbol 92 MovieClip in Frame 27
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 27
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 27
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 27
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 27
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 92 MovieClip in Frame 27
onClipEvent (load) {
this._x = Math.random() * Stage.width;
this._y = Math.random() * Stage.height;
}
Instance of Symbol 115 MovieClip "player" in Frame 27
onClipEvent (load) {
xScale = this._xscale;
speed = 0.5;
myx = 0;
dead = false;
}
onClipEvent (enterFrame) {
if (dead == false) {
if (!this.hitTest()) {
_root.dSpeed = _root.dSpeed + 0.5;
}
if (_root.dSpeed >= 10) {
_root.dSpeed = 10;
}
_y = (_y + _root.dSpeed);
this._x = this._x + myx;
if (Key.isDown(37)) {
_rotation = 175;
_xscale = ((xScale - xScale) - xScale);
myx = myx - speed;
} else if (Key.isDown(39)) {
_rotation = 185;
_xscale = xScale;
myx = myx + speed;
} else if (myx > 0) {
myx = myx - speed;
} else if (myx < 0) {
myx = myx + speed;
}
} else if (dead == true) {
this._y = this._y - 16;
this._alpha = 75;
this.gotoAndStop("die");
}
}
Instance of Symbol 117 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poo.hitTest(_root.player)) {
_root.player.dead = true;
_root.health--;
}
}
Instance of Symbol 121 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.dSpeed = -7;
_root.jumping = true;
_root.player.myx = 7;
}
}
Instance of Symbol 121 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.dSpeed = -7;
_root.jumping = true;
_root.player.myx = -7;
}
}
Instance of Symbol 123 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.poo)) {
_root.player.dead = false;
_root.player._x = 70;
_root.player._y = 350;
_root.player._alpha = 100;
_root.player.gotoAndStop(1);
_root.player.myx = 0;
_root.player.myy = 0;
}
}
Instance of Symbol 132 MovieClip in Frame 27
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 142 MovieClip in Frame 27
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.l1)) {
_root.gotoAndStop("menu");
}
}
Instance of Symbol 132 MovieClip in Frame 27
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 213 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 216 MovieClip "spike1" in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 214 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.boo.hitTest(_root.player.l1)) {
_root.player.dead = true;
this.gotoAndStop(2);
_root.health--;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 211 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.poon.hitTest(_root.player.l1)) {
this.gotoAndStop(2);
_root.score++;
}
}
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Instance of Symbol 212 MovieClip in Frame 27
on (press) {
this.startDrag(true);
}
on (release) {
this.stopDrag();
}
Symbol 42 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
_root.nextFrame();
}
Symbol 42 MovieClip Frame 2
gotoAndPlay (1);
Symbol 49 Button
on (press) {
_root.gotoAndPlay("hi");
}
Symbol 52 Button
on (press) {
getURL ("http://armorgames.com", "_blank");
}
Symbol 55 Button
on (press) {
getURL ("http://lostsolution.net", "_blank");
}
Symbol 58 Button
on (press) {
_root.gotoAndStop("edit");
}
Symbol 68 Button
on (press) {
_root.gotoAndStop("l" + _root.level);
}
Symbol 74 Button
on (press) {
_root.gotoAndStop("menu");
}
Symbol 77 Button
on (press) {
getURL ("http://armorgames.com", "_blank");
}
Symbol 80 Button
on (press) {
getURL ("http://lostsolution.net", "_blank");
}
Symbol 95 MovieClip Frame 11
stop();
Symbol 96 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 1
stop();
Symbol 102 MovieClip Frame 11
stop();
Symbol 103 MovieClip Frame 1
stop();
Instance of Symbol 98 MovieClip "poop" in Symbol 103 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.feet)) {
_root.player.play();
}
}
Symbol 104 MovieClip Frame 1
stop();
Instance of Symbol 103 MovieClip in Symbol 104 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet) && (_root.player.dead == false)) {
cloud.nextFrame();
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
} else if (_root.player.dead == true) {
this.gotoAndStop(1);
}
}
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 2
Symbol 115 MovieClip Frame 3
gotoAndStop (1);
Symbol 131 MovieClip Frame 1
stop();
Symbol 132 MovieClip Frame 1
stop();
Instance of Symbol 131 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.feet) && (_root.dSpeed >= 0)) {
_root.dSpeed = -10;
_root.jumping = true;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player.feet)) {
_root.player.play();
}
}
Symbol 132 MovieClip Frame 2
Symbol 140 MovieClip Frame 1
stop();
Symbol 140 MovieClip Frame 72
_root.level++;
_root.gotoAndStop("select");
Symbol 147 MovieClip Frame 12
stop();
Symbol 148 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 1
stop();
Symbol 175 MovieClip Frame 35
stop();
Symbol 176 MovieClip Frame 1
stop();
Symbol 176 MovieClip Frame 2
stop();
Symbol 182 MovieClip Frame 6
stop();
Symbol 184 MovieClip Frame 1
stop();
Instance of Symbol 179 MovieClip "poop" in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
this._visible = false;
}
Instance of Symbol 184 MovieClip "button" in Symbol 185 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet)) {
_root.spike1.gotoAndStop(2);
_root.spike2.gotoAndStop(2);
button.nextFrame();
_root.dSpeed = -13;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.player.myy = 0;
}
}
Symbol 190 MovieClip Frame 7
stop();
Symbol 192 MovieClip Frame 1
stop();
Symbol 193 MovieClip Frame 1
stop();
Instance of Symbol 103 MovieClip in Symbol 193 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet) && (_root.player.dead == false)) {
cloud.nextFrame();
_root.dSpeed = -22;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
} else if (_root.player.dead == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 184 MovieClip "button" in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet)) {
_root.spike1.gotoAndStop(2);
_root.spike2.gotoAndStop(2);
_root.spike3.gotoAndStop(2);
_root.spike4.gotoAndStop(2);
_root.spike5.gotoAndStop(2);
_root.spike6.gotoAndStop(2);
button.nextFrame();
_root.dSpeed = -13;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.player.myy = 0;
}
}
Symbol 197 MovieClip Frame 1
stop();
Symbol 197 MovieClip Frame 72
_root.gotoAndStop("done");
Symbol 211 MovieClip Frame 1
stop();
Symbol 212 MovieClip Frame 1
stop();
Instance of Symbol 103 MovieClip in Symbol 212 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet) && (_root.player.dead == false)) {
cloud.nextFrame();
_root.dSpeed = -11.8;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
} else if (_root.player.dead == true) {
this.gotoAndStop(1);
}
}
Instance of Symbol 184 MovieClip "button" in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.poop.hitTest(_root.player.feet)) {
_root.spike1.gotoAndStop(2);
button.nextFrame();
_root.dSpeed = -13;
_root.jumping = true;
this.nextFrame();
_root.player.myx = 0;
_root.player.myy = 0;
}
}
Symbol 214 MovieClip Frame 1
stop();
Symbol 214 MovieClip Frame 2
stop();
Symbol 216 MovieClip Frame 1
stop();