Frame 1
stop();
Instance of Symbol 8 MovieClip in Frame 1
onClipEvent (enterFrame) {
ifFrameLoaded (22) {
unloadMovie (this);
}
}
Frame 2
hp = 100;
score = 0;
lvl = 1;
Instance of Symbol 112 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 115 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 2
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Instance of Symbol 140 MovieClip in Frame 2
onClipEvent (enterFrame) {
_x = (_x + ((_root.pinkie._x - _x) / 1));
if (this.hitTest(_root.pinkie)) {
_root.hp = 0;
unloadMovie (_root.pinkie);
}
}
Instance of Symbol 142 MovieClip "cam" in Frame 2
onClipEvent (enterFrame) {
_x = (_x + ((_root.pinkie._x - _x) / 3));
}
Instance of Symbol 158 MovieClip in Frame 2
onClipEvent (enterFrame) {
_x = (_x + ((_root.pinkie._x - _x) / 3));
if (_root.hp <= 0) {
_root.gotoAndStop("gameover");
}
}
Frame 4
stop();
lvl = 2;
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 115 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 112 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 4
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Frame 6
stop();
lvl = 3;
Instance of Symbol 114 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 115 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 112 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 6
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Frame 8
stop();
lvl = 4;
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 115 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 8
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Frame 10
stop();
lvl = 5;
Instance of Symbol 115 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 10
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Frame 12
stop();
lvl = 6;
Instance of Symbol 115 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 12
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Frame 14
stop();
lvl = 7;
Instance of Symbol 115 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 114 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 14
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Frame 16
stop();
lvl = 8;
Instance of Symbol 115 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 114 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 16
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Frame 18
stop();
lvl = 9;
Instance of Symbol 115 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 18
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 187 MovieClip "ground" in Frame 18
onClipEvent (enterFrame) {
_x = (_x + ((_root.pinkie._x - _x) / 5));
}
Frame 20
stop();
lvl = 10;
Instance of Symbol 115 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.play();
}
}
Instance of Symbol 114 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 135 MovieClip "pinkie" in Frame 20
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 2;
var speed = 8;
var maxJump = -20;
var touchingGround = false;
moving = true;
}
onClipEvent (enterFrame) {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (((Key.isDown(65) || (Key.isDown(68))) || (Key.isDown(87))) || (touchingGround == false)) {
moving = true;
} else {
moving = false;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = -100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
if (touchingGround == true) {
gotoAndStop ("walk");
}
this._xscale = 100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
gotoAndStop ("jump");
grav = maxJump;
}
if (moving == false) {
gotoAndStop ("stand");
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
if (_root.hp <= 0) {
unloadMovie (this);
}
}
Instance of Symbol 112 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 112 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.cam) && (_root.hp > 0)) {
_x = (_x + ((_root.pinkie._x - _x) / 40));
_y = (_y + ((_root.pinkie._y - _y) / 40));
}
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
_root.hp--;
}
}
Instance of Symbol 114 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Instance of Symbol 114 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
_root.score = _root.score + 10;
unloadMovie (this);
}
}
Frame 21
stop();
done = true;
Frame 22
stop();
Instance of Symbol 149 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (_root.cupcakes == true) {
_root.score = "You shoudlent have done that..";
}
}
Symbol 44 MovieClip Frame 15
gotoAndPlay (1);
Symbol 82 Button
on (release) {
ifFrameLoaded (22) {
_root.gotoAndStop(2);
}
}
Symbol 101 MovieClip Frame 1
stop();
Symbol 101 MovieClip Frame 8
gotoAndStop (1);
Instance of Symbol 101 MovieClip in Symbol 102 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Symbol 134 MovieClip Frame 7
stop();
Symbol 135 MovieClip Frame 1
stop();
Symbol 142 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
parentColor.setTransform(camColor.getTransform());
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Instance of Symbol 149 MovieClip in Symbol 158 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.cupcakes == true) {
_root.score = "You shoudlent have done that..";
}
}
Instance of Symbol 101 MovieClip in Symbol 160 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 101 MovieClip in Symbol 160 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 101 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 101 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 101 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 101 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 101 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 101 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 165 MovieClip in Symbol 166 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 166 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 166 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 166 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 166 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 166 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 168 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Symbol 179 MovieClip Frame 1
stop();
Symbol 179 MovieClip Frame 10
stop();
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 179 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 179 MovieClip in Symbol 180 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 182 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 101 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 165 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 101 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie)) {
this.gotoAndPlay(2);
tellTarget (_root.pinkie) {
gotoAndStop ("jump");
grav = -25;
};
}
}
Instance of Symbol 165 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 165 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this._y = this._y + 1.5;
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 179 MovieClip in Symbol 189 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.pinkie) && (_root.hp > 0)) {
this.play();
}
}
Instance of Symbol 149 MovieClip in Symbol 193 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.cupcakes == true) {
_root.score = "You shoudlent have done that..";
}
}
Symbol 196 Button
on (release) {
_root.gotoAndStop(1);
}