Frame 1
Stage.showMenu = false;
Frame 2
stop();
lives = 10;
Frame 3
stop();
Frame 4
stop();
Frame 5
stop();
Frame 6
stop();
Instance of Symbol 59 MovieClip in Frame 6
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 8
stop();
Instance of Symbol 59 MovieClip "player" in Frame 8
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 10
stop();
Instance of Symbol 59 MovieClip in Frame 10
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 12
stop();
Instance of Symbol 59 MovieClip in Frame 12
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 14
stop();
Instance of Symbol 59 MovieClip in Frame 14
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if ((_y > Stage.height) || (this.hitTest(_root.ground.spikes))) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 16
stop();
Instance of Symbol 98 MovieClip "sign" in Frame 16
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_x = (_x - 5);
}
if (Key.isDown(37)) {
_x = (_x + 5);
}
}
Instance of Symbol 59 MovieClip in Frame 16
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
boatx = _root.boat._x;
boaty = _root.boat._y;
signx = _root.sign._x;
signy = _root.sign._y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if ((_y > Stage.height) || (_root.ground.water.hitTest(_x, _y + 1, true))) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
_root.boat._x = boatx;
_root.boat._y = boaty;
_root.sign._x = signx;
_root.sign._y = signy;
}
if (Key.isDown(39) && (!_root.boat.hitTest(_x, _y + 1, true))) {
_root.boat._x = _root.boat._x - speed;
}
if (Key.isDown(37) && (!_root.boat.hitTest(_x, _y + 1, true))) {
_root.boat._x = _root.boat._x + speed;
}
if (_root.boat.hitTest(_x, _y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 18
stop();
Instance of Symbol 59 MovieClip in Frame 18
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 20
stop();
Instance of Symbol 59 MovieClip "player" in Frame 20
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > (Stage.height + 20)) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 22
stop();
Instance of Symbol 59 MovieClip "player" in Frame 22
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 24
stop();
Instance of Symbol 128 MovieClip "boulder" in Frame 24
onClipEvent (enterFrame) {
if (this.hitTest(_root.ground.tall)) {
_root.ground._x = _root.ground._x + 5;
}
if (!_root.ground.hitTest(_x, _y + (_height / 2), true)) {
_y = (_y + 10);
}
}
Instance of Symbol 59 MovieClip in Frame 24
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
boulderx = _root.boulder._x;
bouldery = _root.boulder._y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (Key.isDown(39) && (!_root.boulder.hitTest(_x + (_width / 2), _y - (_height / 2), true))) {
_root.boulder._x = _root.boulder._x - speed;
mr = speed;
}
if (Key.isDown(37) && (!_root.boulder.hitTest(_x - (_width / 2), _y - (_height / 2), true))) {
_root.boulder._x = _root.boulder._x + speed;
ml = speed;
}
if (Key.isDown(39) && (_root.boulder.hitTest(_x + (_width / 2), _y - (_height / 2), true))) {
_root.boulder._rotation = _root.boulder._rotation + 2;
ml = 2;
}
if (Key.isDown(37) && (_root.boulder.hitTest(_x - (_width / 2), _y - (_height / 2), true))) {
_root.boulder._rotation = _root.boulder._rotation - 2;
mr = 2;
}
if (_root.boulder.hitTest(_x, _y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
_root.boulder._x = boulderx;
_root.boulder._y = bouldery;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1004
stop();
Instance of Symbol 59 MovieClip "player" in Frame 1004
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if ((_y > Stage.height) || (_root.ground.lava.hitTest(_x, _y + 1, true))) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1006
stop();
Instance of Symbol 59 MovieClip "player" in Frame 1006
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1008
stop();
Instance of Symbol 59 MovieClip "player" in Frame 1008
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1010
stop();
Instance of Symbol 59 MovieClip "player" in Frame 1010
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if (_y > Stage.height) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1012
stop();
Instance of Symbol 204 MovieClip in Frame 1012
onClipEvent (load) {
_y = (Math.random() * Stage.height);
}
onClipEvent (enterFrame) {
_x = (_x - 7);
if (_x <= 0) {
_y = (Math.random() * Stage.height);
_x = Stage.width;
}
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
_y = (Math.random() * Stage.height);
_x = Stage.width;
}
}
Instance of Symbol 204 MovieClip in Frame 1012
onClipEvent (load) {
_y = (Math.random() * Stage.height);
}
onClipEvent (enterFrame) {
_x = (_x - 7);
if (_x <= 0) {
_y = (Math.random() * Stage.height);
_x = Stage.width;
}
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
_y = (Math.random() * Stage.height);
_x = Stage.width;
}
}
Instance of Symbol 59 MovieClip "player" in Frame 1012
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if ((_y > Stage.height) || (_root.ground.lava.hitTest(_x, _y + 1, true))) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1014
stop();
Instance of Symbol 59 MovieClip "player" in Frame 1014
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if ((_y > Stage.height) || (_root.ground.lava.hitTest(_x, _y + 1, true))) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1016
stop();
Instance of Symbol 59 MovieClip "player" in Frame 1016
onClipEvent (load) {
speed = 7;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if ((_y > Stage.height) || (_root.ground.lava.hitTest(_x, _y + 1, true))) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1018
stop();
Instance of Symbol 59 MovieClip "player" in Frame 1018
onClipEvent (load) {
speed = 7;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if ((_y > Stage.height) || (_root.ground.lava.hitTest(_x, _y + 1, true))) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1020
stop();
Instance of Symbol 204 MovieClip in Frame 1020
onClipEvent (load) {
_y = (Math.random() * Stage.height);
}
onClipEvent (enterFrame) {
_x = (_x - 9);
if (_x <= 0) {
_y = (Math.random() * Stage.height);
_x = Stage.width;
}
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
_y = (Math.random() * Stage.height);
_x = Stage.width;
}
}
Instance of Symbol 59 MovieClip "player" in Frame 1020
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 25;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(38)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_root.ground._x = _root.ground._x - ml;
_xscale = 100;
}
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + mr;
_xscale = -100;
}
if (_root.ground.hitTest(_x, _y - _height, true)) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (_root.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
ml = 0;
} else {
ml = speed;
}
if (_root.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
mr = 0;
} else {
mr = speed;
}
if ((_y > Stage.height) || (_root.ground.lava.hitTest(_x, _y + 1, true))) {
_root.lives--;
_y = orangey;
_x = orangex;
_root.ground._x = groundx;
_root.ground._y = groundy;
}
if (_root.lives <= 0) {
_root.gotoAndPlay("gameover");
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 1465
stop();
Frame 1466
function newBarrel() {
count++;
_root.barrel.duplicateMovieClip("barrel" + count, _root.getNextHighestDepth());
}
count = 1;
setInterval(function () {
newBarrel();
}, 1200);
stop();
Instance of Symbol 301 MovieClip "barrel" in Frame 1466
onClipEvent (load) {
right = true;
left = false;
_x = 52;
_y = -76;
currentframe = _root._currentframe;
if (_name == "barrel") {
_y = 8000;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
}
if (right) {
_x = (_x + 4);
barrel._rotation = barrel._rotation + 4;
}
if (left) {
_x = (_x - 4);
barrel._rotation = barrel._rotation - 4;
}
if (_x > Stage.width) {
right = false;
left = true;
}
if (_x < 0) {
right = true;
left = false;
}
while (_root.ground.hitTest(_x, _y, true)) {
_y = (_y-1);
}
if (!_root.ground.hitTest(_x, _y, true)) {
_y = (_y + 4);
}
if (this.hitTest(_root.stopper)) {
this.removeMovieClip();
}
if (currentframe != _root._currentframe) {
this.removeMovieClip();
}
}
Instance of Symbol 303 MovieClip "stopper" in Frame 1466
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 305 MovieClip in Frame 1466
onClipEvent (load) {
_visible = false;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y - 5, true)) {
_root.play();
}
}
Instance of Symbol 59 MovieClip "player" in Frame 1466
onClipEvent (load) {
speed = 5;
mr = speed;
ml = speed;
gravity = 15;
maxjump = gravity;
falling = true;
fallspeed = 0;
jumping = false;
groundx = _root.ground._x;
groundy = _root.ground._y;
orangex = _x;
orangey = _y;
}
onClipEvent (enterFrame) {
if (falling) {
fallspeed++;
_y = (_y + fallspeed);
}
while (_root.ground.hitTest(this._x, this._y, true)) {
falling = false;
fallspeed = 0;
_y = (_y-1);
if (Key.isDown(32)) {
falling = false;
fallspeed = 0;
jumping = true;
}
}
if (!_root.ground.hitTest(_x, _y, true)) {
falling = true;
}
if (jumping) {
gravity--;
_y = (_y - gravity);
}
if (gravity < 0) {
jumping = false;
falling = true;
gravity = maxjump;
}
if (Key.isDown(39)) {
_x = (_x + ml);
_xscale = 100;
}
if (Key.isDown(37)) {
_x = (_x - mr);
_xscale = -100;
}
if (Key.isDown(38) && ((this.hitTest(_root.l1) || (this.hitTest(_root.l2))) || (this.hitTest(_root.l3)))) {
_y = (_y - 15);
}
if (_y > Stage.height) {
_y = orangey;
_x = orangex;
}
if (this.hitTest(_root.ground.warp)) {
_root.play();
}
}
Frame 2453
stop();
Frame 2454
stop();
Symbol 9 Button
on (release) {
_root.play();
}
Symbol 10 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 10 MovieClip Frame 2
gotoAndPlay (1);
Symbol 21 Button
on (release) {
gotoAndPlay (6);
}
Symbol 25 Button
on (release) {
gotoAndPlay (3);
}
Symbol 29 Button
on (release) {
gotoAndPlay (5);
}
Symbol 33 Button
on (release) {
_root.gotoAndPlay(2);
}
Symbol 42 Button
on (press) {
if (_root.pass == "omgircomin'") {
_root.gotoAndPlay(8);
}
if (_root.pass == "illbethere") {
_root.gotoAndPlay(10);
}
if (_root.pass == "zomgsux") {
_root.gotoAndPlay(12);
}
if (_root.pass == "gettingtired") {
_root.gotoAndPlay(14);
}
if (_root.pass == "omgspikes") {
_root.gotoAndPlay(16);
}
if (_root.pass == "irodeaboat") {
_root.gotoAndPlay(18);
}
if (_root.pass == "justwhy?") {
_root.gotoAndPlay(20);
}
if (_root.pass == "thtwasweird") {
_root.gotoAndPlay(22);
}
if (_root.pass == "iseethelair!") {
_root.gotoAndPlay(24);
}
if (_root.pass == "holyhell") {
_root.gotoAndPlay(1004);
}
if (_root.pass == "lockssuck") {
_root.gotoAndPlay(1006);
}
if (_root.pass == "7togoyay!") {
_root.gotoAndPlay(1008);
}
if (_root.pass == "omgwtfbbq") {
_root.gotoAndPlay(1010);
}
if (_root.pass == "lawlbeeb") {
_root.gotoAndPlay(1012);
}
if (_root.pass == "clocks4ever") {
_root.gotoAndPlay(1014);
}
if (_root.pass == "locks=not") {
_root.gotoAndPlay(1016);
}
if (_root.pass == "clocks=hot") {
_root.gotoAndPlay(1018);
}
if (_root.pass == "glocks=wot?") {
_root.gotoAndPlay(1020);
}
}
Instance of Symbol 50 MovieClip in Symbol 51 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 10);
}
Symbol 64 MovieClip Frame 1
_root.stop();
Symbol 64 MovieClip Frame 5
_root.play();
Instance of Symbol 15 MovieClip in Symbol 65 MovieClip Frame 1
onClipEvent (load) {
speed = 4;
right = false;
left = true;
}
onClipEvent (enterFrame) {
if (right) {
_x = (_x + speed);
}
if (left) {
_x = (_x - speed);
}
if (_x <= Stage.width) {
left = false;
right = true;
}
if (_x >= 1291) {
right = false;
left = true;
}
}
Instance of Symbol 15 MovieClip in Symbol 89 MovieClip Frame 1
onClipEvent (load) {
speed = 3;
down = true;
up = false;
}
onClipEvent (enterFrame) {
if (down) {
_y = (_y + speed);
}
if (up) {
_y = (_y - speed);
}
if (_y <= -121.8) {
up = false;
down = true;
}
if (_y >= 80) {
down = false;
up = true;
}
}
Instance of Symbol 104 MovieClip in Symbol 105 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 2);
}
Instance of Symbol 110 MovieClip in Symbol 111 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Instance of Symbol 111 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (load) {
startcount = false;
time = 10;
falling = false;
fallspeed = 5;
oldx = _x;
oldy = _y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
startcount = true;
}
if (startcount) {
time--;
}
if (time <= 0) {
falling = true;
startcount = false;
time = 10;
}
if (falling) {
_y = (_y + fallspeed);
}
if (_root.player._y > Stage.height) {
falling = false;
_x = oldx;
_y = oldy;
}
}
Symbol 122 MovieClip Frame 1
stop();
Symbol 122 MovieClip Frame 7
stop();
Instance of Symbol 15 MovieClip "inviso" in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 122 MovieClip "lever" in Symbol 123 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player) && (_currentframe == 1)) {
play();
_root.ground.inviso._visible = true;
}
}
Instance of Symbol 176 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 176 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 176 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 176 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y + 1, true)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 204 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) {
up = false;
down = false;
time = 10;
speed = 5;
}
onClipEvent (enterFrame) {
if ((!up) && (!down)) {
time--;
}
if (time <= 0) {
up = true;
time = 10;
}
if (up) {
_y = (_y - speed);
_yscale = 100;
}
if (down) {
_y = (_y + speed);
_yscale = -100;
}
if (_y <= 22) {
up = false;
down = true;
}
if (_y >= 231) {
down = false;
up = false;
}
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 204 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) {
up = false;
down = false;
time = 10;
speed = 5;
}
onClipEvent (enterFrame) {
if ((!up) && (!down)) {
time--;
}
if (time <= 0) {
up = true;
time = 10;
}
if (up) {
_y = (_y - speed);
_yscale = 100;
}
if (down) {
_y = (_y + speed);
_yscale = -100;
}
if (_y <= 22) {
up = false;
down = true;
}
if (_y >= 231) {
down = false;
up = false;
}
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 204 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) {
up = false;
down = false;
time = 10;
speed = 5;
}
onClipEvent (enterFrame) {
if ((!up) && (!down)) {
time--;
}
if (time <= 0) {
up = true;
time = 10;
}
if (up) {
_y = (_y - speed);
_yscale = 100;
}
if (down) {
_y = (_y + speed);
_yscale = -100;
}
if (_y <= 22) {
up = false;
down = true;
}
if (_y >= 231) {
down = false;
up = false;
}
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 204 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) {
up = false;
down = false;
time = 10;
speed = 5;
}
onClipEvent (enterFrame) {
if ((!up) && (!down)) {
time--;
}
if (time <= 0) {
up = true;
time = 10;
}
if (up) {
_y = (_y - speed);
_yscale = 100;
}
if (down) {
_y = (_y + speed);
_yscale = -100;
}
if (_y <= 22) {
up = false;
down = true;
}
if (_y >= 231) {
down = false;
up = false;
}
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 210 MovieClip in Symbol 213 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 220 MovieClip in Symbol 221 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 221 MovieClip in Symbol 222 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 2);
}
Instance of Symbol 221 MovieClip in Symbol 222 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 2);
}
Instance of Symbol 231 MovieClip in Symbol 232 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 4);
}
Instance of Symbol 238 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 238 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.lives--;
_root.player._y = _root.player.orangey;
_root.player._x = _root.player.orangex;
_root.ground._x = _root.player.groundx;
_root.ground._y = _root.player.groundy;
}
}
Instance of Symbol 245 MovieClip in Symbol 246 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_y = 700;
}
}
Symbol 291 Button
on (press) {
nextFrame();
}
Symbol 294 Button
on (press) {
_root.play();
}
Symbol 295 MovieClip Frame 1
stop();
Symbol 295 MovieClip Frame 2
stop();
Symbol 344 MovieClip Frame 70
stop();
Symbol 348 Button
on (release) {
_root.gotoAndPlay(1);
}
Symbol 355 MovieClip Frame 70
stop();