Frame 1
stop();
Frame 2
function scott() {
getURL ("http://www.welcome-to-life.ca.tf/", "_blank");
}
function david() {
getURL ("http://www.freewebs.com/true_darkness/index.htm", "_blank");
}
var menu = new ContextMenu();
menu.hideBuiltInItems();
var welcometolife = new ContextMenuItem("Welcome To Life", scott);
var truedarkness = new ContextMenuItem("True_Darkness", david);
menu.customItems.push(welcometolife, truedarkness);
menu.onSelect = menuHandler;
_root.menu = menu;
stop();
Instance of Symbol 25 MovieClip "Bodys" in Frame 2
onClipEvent (enterFrame) {
this._width = _root.Body._width;
this._height = _root.Body._height;
}
Instance of Symbol 27 MovieClip "Body" in Frame 2
onClipEvent (load) {
function CheckDrag() {
var _local3 = _root._xmouse - _x;
var _local4 = _root._ymouse - _y;
var _local5 = Math.sqrt((_local3 * _local3) + (_local4 * _local4));
if (_local5 <= radius) {
_root.drag = this;
}
}
var ys = 0;
var xs = 0;
var radius = (_width / 2);
var lx = _root._xmouse;
var ly = _root._ymouse;
var lasty = _y;
var lastx = _x;
}
onClipEvent (enterFrame) {
if (_root.drag == this) {
xs = _root._xmouse - lx;
ys = _root._ymouse - ly;
} else {
xs = _x - lastx;
ys = (_y - lasty) + 1;
}
lasty = _y;
lastx = _x;
_x = (_x + xs);
_y = (_y + ys);
if ((_x + radius) > Stage.width) {
lastx = (Stage.width - radius) + (xs * 0.3);
_x = (Stage.width - radius);
} else if ((_x - radius) < 0) {
lastx = radius + (xs * 0.3);
_x = radius;
}
if ((_y + radius) > Stage.height) {
lasty = (Stage.height - radius) + (ys * 0.4);
_y = (Stage.height - radius);
} else if ((((_y - radius) < 0) && (_root.cheatB == 1)) && (Key.isToggled(144))) {
lasty = radius + (ys * 0.4);
_y = radius;
}
lx = _root._xmouse;
ly = _root._ymouse;
_root.Bodys._x = _x + 10;
_root.Bodys._y = _y + 10;
_root.distance = (int(this._y) - 482) * -1;
if (_root.distance >= _root.best) {
_root.best = _root.distance;
}
_root.Distance = _root.distance + " ft";
_root.Best = _root.best + " ft";
_root.Distancec.textColor = 16776960 /* 0xFFFF00 */;
_root.Distanceb.textColor = 16763904 /* 0xFFCC00 */;
if ((_root.best >= 100000) && (_root.cheat == 0)) {
_root.Bestc.textColor = 16711680 /* 0xFF0000 */;
_root.Bestb.textColor = 13369344 /* 0xCC0000 */;
} else {
_root.Bestc.textColor = 16776960 /* 0xFFFF00 */;
_root.Bestb.textColor = 16763904 /* 0xFFCC00 */;
}
if (Key.isToggled(20) && (_root.cheat == 1)) {
_y = (_y - 1);
}
}
onClipEvent (mouseDown) {
CheckDrag();
}
onClipEvent (mouseUp) {
if ((_root.PlayText._visible && (_root.drag == this)) && (_root.drag == null)) {
_root.play();
}
_root.drag = null;
}
Instance of Symbol 28 MovieClip "Heads" in Frame 2
onClipEvent (enterFrame) {
this._width = _root.Head._width;
this._height = _root.Head._height;
}
Instance of Symbol 30 MovieClip "LHand" in Frame 2
onClipEvent (load) {
function CheckDrag() {
var _local3 = _root._xmouse - _x;
var _local4 = _root._ymouse - _y;
var _local5 = Math.sqrt((_local3 * _local3) + (_local4 * _local4));
if (_local5 <= radius) {
_root.drag = this;
}
}
var ys = 0;
var xs = 0;
var radius = (_width / 2);
var lx = _root._xmouse;
var ly = _root._ymouse;
var lastx = _x;
var lasty = _y;
}
onClipEvent (enterFrame) {
if (_root.drag == this) {
xs = _root._xmouse - lx;
ys = _root._ymouse - ly;
} else {
xs = _x - lastx;
ys = (_y - lasty) + 1;
}
lasty = _y;
lastx = _x;
_x = (_x + xs);
_y = (_y + ys);
var dx = (_x - _root.Body._x);
var dy = (_y - _root.Body._y);
var d = Math.sqrt((dx * dx) + (dy * dy));
if (d > 30) {
if (_root.drag == this) {
_root.Body._x = _x + (((-dx) / d) * 30);
_root.Body._y = _y + (((-dy) / d) * 30);
} else {
_x = (_root.Body._x + ((dx / d) * 30));
_y = (_root.Body._y + ((dy / d) * 30));
}
}
if ((_x + radius) > Stage.width) {
lastx = (Stage.width - radius) + (xs * 0.3);
_x = (Stage.width - radius);
} else if ((_x - radius) < 0) {
lastx = radius + (xs * 0.3);
_x = radius;
}
if ((_y + radius) > Stage.height) {
lasty = (Stage.height - radius) + (ys * 0.4);
_y = (Stage.height - radius);
} else if ((((_y - radius) < 0) && (_root.cheatB == 1)) && (Key.isToggled(144))) {
lasty = radius + (ys * 0.4);
_y = radius;
}
lx = _root._xmouse;
ly = _root._ymouse;
_root.LHands._x = _x + 10;
_root.LHands._y = _y + 10;
}
onClipEvent (mouseDown) {
CheckDrag();
}
Instance of Symbol 30 MovieClip "RHand" in Frame 2
onClipEvent (load) {
function CheckDrag() {
var _local3 = _root._xmouse - _x;
var _local4 = _root._ymouse - _y;
var _local5 = Math.sqrt((_local3 * _local3) + (_local4 * _local4));
if (_local5 <= radius) {
_root.drag = this;
}
}
var ys = 0;
var xs = 0;
var radius = (_width / 2);
var lx = _root._xmouse;
var ly = _root._ymouse;
var lastx = _x;
var lasty = _y;
}
onClipEvent (enterFrame) {
if (_root.drag == this) {
xs = _root._xmouse - lx;
ys = _root._ymouse - ly;
} else {
xs = _x - lastx;
ys = (_y - lasty) + 1;
}
lasty = _y;
lastx = _x;
_x = (_x + xs);
_y = (_y + ys);
var dx = (_x - _root.Body._x);
var dy = (_y - _root.Body._y);
var d = Math.sqrt((dx * dx) + (dy * dy));
if (d > 30) {
if (_root.drag == this) {
_root.Body._x = _x + (((-dx) / d) * 30);
_root.Body._y = _y + (((-dy) / d) * 30);
} else {
_x = (_root.Body._x + ((dx / d) * 30));
_y = (_root.Body._y + ((dy / d) * 30));
}
}
if ((_x + radius) > Stage.width) {
lastx = (Stage.width - radius) + (xs * 0.3);
_x = (Stage.width - radius);
} else if ((_x - radius) < 0) {
lastx = radius + (xs * 0.3);
_x = radius;
}
if ((_y + radius) > Stage.height) {
lasty = (Stage.height - radius) + (ys * 0.4);
_y = (Stage.height - radius);
} else if ((((_y - radius) < 0) && (_root.cheatB == 1)) && (Key.isToggled(144))) {
lasty = radius + (ys * 0.4);
_y = radius;
}
lx = _root._xmouse;
ly = _root._ymouse;
_root.RHands._x = _x + 10;
_root.RHands._y = _y + 10;
}
onClipEvent (mouseDown) {
CheckDrag();
}
Instance of Symbol 30 MovieClip "RFoot" in Frame 2
onClipEvent (load) {
function CheckDrag() {
var _local3 = _root._xmouse - _x;
var _local4 = _root._ymouse - _y;
var _local5 = Math.sqrt((_local3 * _local3) + (_local4 * _local4));
if (_local5 <= radius) {
_root.drag = this;
}
}
var ys = 0;
var xs = 0;
var radius = (_width / 2);
var lx = _root._xmouse;
var ly = _root._ymouse;
var lastx = _x;
var lasty = _y;
}
onClipEvent (enterFrame) {
if (_root.drag == this) {
xs = _root._xmouse - lx;
ys = _root._ymouse - ly;
} else {
xs = _x - lastx;
ys = (_y - lasty) + 1;
}
lasty = _y;
lastx = _x;
_x = (_x + xs);
_y = (_y + ys);
var dx = (_x - _root.Body._x);
var dy = (_y - _root.Body._y);
var d = Math.sqrt((dx * dx) + (dy * dy));
if (d > 50) {
if (_root.drag == this) {
_root.Body._x = _x + (((-dx) / d) * 50);
_root.Body._y = _y + (((-dy) / d) * 50);
} else {
_x = (_root.Body._x + ((dx / d) * 50));
_y = (_root.Body._y + ((dy / d) * 50));
}
}
if ((_x + radius) > Stage.width) {
lastx = (Stage.width - radius) + (xs * 0.3);
_x = (Stage.width - radius);
} else if ((_x - radius) < 0) {
lastx = radius + (xs * 0.3);
_x = radius;
}
if ((_y + radius) > Stage.height) {
lasty = (Stage.height - radius) + (ys * 0.4);
_y = (Stage.height - radius);
} else if ((((_y - radius) < 0) && (_root.cheatB == 1)) && (Key.isToggled(144))) {
lasty = radius + (ys * 0.4);
_y = radius;
}
lx = _root._xmouse;
ly = _root._ymouse;
_root.RFoots._x = _x + 10;
_root.RFoots._y = _y + 10;
}
onClipEvent (mouseDown) {
CheckDrag();
}
Instance of Symbol 30 MovieClip "LFoot" in Frame 2
onClipEvent (load) {
function CheckDrag() {
var _local3 = _root._xmouse - _x;
var _local4 = _root._ymouse - _y;
var _local5 = Math.sqrt((_local3 * _local3) + (_local4 * _local4));
if (_local5 <= radius) {
_root.drag = this;
}
}
var ys = 0;
var xs = 0;
var radius = (_width / 2);
var lx = _root._xmouse;
var ly = _root._ymouse;
var lastx = _x;
var lasty = _y;
}
onClipEvent (enterFrame) {
if (_root.drag == this) {
xs = _root._xmouse - lx;
ys = _root._ymouse - ly;
} else {
xs = _x - lastx;
ys = (_y - lasty) + 1;
}
lasty = _y;
lastx = _x;
_x = (_x + xs);
_y = (_y + ys);
var dx = (_x - _root.Body._x);
var dy = (_y - _root.Body._y);
var d = Math.sqrt((dx * dx) + (dy * dy));
if (d > 50) {
if (_root.drag == this) {
_root.Body._x = _x + (((-dx) / d) * 50);
_root.Body._y = _y + (((-dy) / d) * 50);
} else {
_x = (_root.Body._x + ((dx / d) * 50));
_y = (_root.Body._y + ((dy / d) * 50));
}
}
if ((_x + radius) > Stage.width) {
lastx = (Stage.width - radius) + (xs * 0.3);
_x = (Stage.width - radius);
} else if ((_x - radius) < 0) {
lastx = radius + (xs * 0.3);
_x = radius;
}
if ((_y + radius) > Stage.height) {
lasty = (Stage.height - radius) + (ys * 0.4);
_y = (Stage.height - radius);
} else if ((((_y - radius) < 0) && (_root.cheatB == 1)) && (Key.isToggled(144))) {
lasty = radius + (ys * 0.4);
_y = radius;
}
lx = _root._xmouse;
ly = _root._ymouse;
_root.LFoots._x = _x + 10;
_root.LFoots._y = _y + 10;
}
onClipEvent (mouseDown) {
CheckDrag();
}
Instance of Symbol 32 MovieClip "Head" in Frame 2
onClipEvent (load) {
function CheckDrag() {
var _local3 = _root._xmouse - _x;
var _local4 = _root._ymouse - _y;
var _local5 = Math.sqrt((_local3 * _local3) + (_local4 * _local4));
if (_local5 <= radius) {
_root.drag = this;
}
}
var ys = 0;
var xs = 0;
var radius = (_width / 2);
var lx = _root._xmouse;
var ly = _root._ymouse;
var lasty = _y;
var lastx = _x;
}
onClipEvent (enterFrame) {
var dx = (_x - _root.Body._x);
var dy = (_y - _root.Body._y);
var d = Math.sqrt((dx * dx) + (dy * dy));
if (d > 35) {
if (_root.drag == this) {
_root.Body._x = _x + (((-dx) / d) * 35);
_root.Body._y = _y + (((-dy) / d) * 35);
} else {
_x = (_root.Body._x + ((dx / d) * 35));
_y = (_root.Body._y + ((dy / d) * 35));
}
}
if (_root.drag == this) {
xs = _root._xmouse - lx;
ys = _root._ymouse - ly;
} else {
xs = _x - lastx;
ys = (_y - lasty) + 1;
}
lasty = _y;
lastx = _x;
_x = (_x + xs);
_y = (_y + ys);
if ((_x + radius) > Stage.width) {
lastx = (Stage.width - radius) + (xs * 0.3);
_x = (Stage.width - radius);
} else if ((_x - radius) < 0) {
lastx = radius + (xs * 0.3);
_x = radius;
}
if ((_y + radius) > Stage.height) {
lasty = (Stage.height - radius) + (ys * 0.4);
_y = (Stage.height - radius);
} else if ((((_y - radius) < 0) && (_root.cheatB == 1)) && (Key.isToggled(144))) {
lasty = radius + (ys * 0.4);
_y = radius;
}
lx = _root._xmouse;
ly = _root._ymouse;
_root.Face._x = _x;
_root.Face._y = _y;
if (_root.drag != this) {
_root.Face._rotation = _root.Face._rotation + xs;
}
_root.Heads._x = _x + 10;
_root.Heads._y = _y + 10;
}
onClipEvent (mouseDown) {
CheckDrag();
}
onClipEvent (mouseUp) {
if (_root.Face._visible && (_root.drag == this)) {
_root.play();
}
_root.drag = null;
}
Instance of Symbol 48 MovieClip "bar" in Frame 2
onClipEvent (enterFrame) {
_visible = true;
_alpha = 100;
}
Instance of Symbol 50 MovieClip in Frame 2
on (release) {
_root.gotoAndStop("level");
}
Instance of Symbol 54 MovieClip "playa" in Frame 2
onClipEvent (enterFrame) {
_visible = true;
_alpha = 100;
}
on (release) {
_root.gotoAndPlay("intro");
}
Frame 485
stop();
Frame 525
stop();
Frame 526
stopAllSounds();
Frame 1018
_root.gotoAndStop("level");
Frame 1050
gotoAndPlay ("menutwoo");
Instance of Symbol 306 MovieClip "gearDrag" in Frame 1062
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 306 MovieClip "gearDrag" in Frame 1068
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Frame 1071
stop();
Instance of Symbol 257 MovieClip in Frame 1071
onClipEvent (enterFrame) {
if (this.hitTest(_root.gearDrag)) {
_root.def = "This is a gear. It spins so watch out, you might slip and fall!";
} else if (this.hitTest(_root.platDrag)) {
_root.def = "Watch out for this platform. It goes back and fourth, so be alert and ready to jump!";
} else if (this.hitTest(_root.platDrag2)) {
_root.def = "This is like a slow elevator. Time your jump and hop from one to the other.";
} else if (this.hitTest(_root.fuelDrag)) {
_root.def = "This is your fuel. If it runs out, you blow up. So you better move fast!";
} else if (this.hitTest(_root.fanDrag)) {
_root.def = "Say hello to Mr. Fan. This guy will push you up with the air current. Don't worry, he's one of the good guys!";
} else if (this.hitTest(_root.voltDrag)) {
_root.def = "This is a volt, which you collect to add to your final score.";
} else if (this.hitTest(_root.botDrag)) {
_root.def = "This is you, which is good. Left and right to move around and Space Bar to jump.";
} else if (this.hitTest(_root.headDrag)) {
_root.def = "This is one of the 5 lives that you have in every level. Each time you die, one life gets taken away. When you have 0 lives, its a Game Over for you, so just try not to die a lot.";
} else if (this.hitTest(_root.teleportDrag)) {
_root.def = "This...This is what you use to complete the level! At the end of each level you will see one of these. Simply move into it and you will be given your scores, along with a password to the next level, then the next level of fun will begin!";
}
}
Instance of Symbol 264 MovieClip "fuelDrag" in Frame 1071
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 271 MovieClip "fanDrag" in Frame 1071
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 304 MovieClip "voltDrag" in Frame 1071
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 308 MovieClip "platDrag2" in Frame 1071
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 310 MovieClip "platDrag" in Frame 1071
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 323 MovieClip "botDrag" in Frame 1071
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 326 MovieClip "headDrag" in Frame 1071
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Instance of Symbol 347 MovieClip "teleportDrag" in Frame 1071
on (press) {
startDrag (this);
}
on (release) {
stopDrag();
}
Frame 1087
gotoAndPlay ("menutwoo");
Frame 1088
stopAllSounds();
Frame 1138
gotoAndStop ("level2");
Frame 1139
stopAllSounds();
Frame 1189
gotoAndStop ("level3");
Frame 1190
stopAllSounds();
Frame 1240
gotoAndStop ("level4");
Frame 1241
stopAllSounds();
Frame 1291
gotoAndStop ("level5");
Frame 1292
stopAllSounds();
Frame 1342
gotoAndStop ("level6");
Frame 1343
stopAllSounds();
Frame 1393
gotoAndStop ("level7");
Frame 1394
stopAllSounds();
Frame 1444
gotoAndStop ("level8");
Frame 1445
stopAllSounds();
Frame 1495
gotoAndStop ("level9");
Frame 1496
stopAllSounds();
Frame 1698
gotoAndStop ("level10");
Instance of Symbol 383 MovieClip in Frame 1735
on (release) {
this.nextFrame();
}
Frame 1742
stop();
Instance of Symbol 383 MovieClip in Frame 1742
on (release) {
if (_quality == "HIGH") {
_quality = "MEDIUM";
} else if (_quality == "MEDIUM") {
_quality = "LOW";
} else if (_quality == "LOW") {
_quality = "HIGH";
}
}
on (release) {
this.nextFrame();
}
Instance of Symbol 383 MovieClip in Frame 1743
on (release) {
this.nextFrame();
}
Frame 1753
gotoAndPlay ("menutwoo");
Frame 2662
_root.gotoAndPlay("totalscore");
Frame 2849
stop();
Frame 2850
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
stop();
gotoAndStop ("level1");
Instance of Symbol 436 MovieClip "bg" in Frame 2850
onClipEvent (enterFrame) {
_x = _root.cameraa._x;
}
Instance of Symbol 218 MovieClip "player" in Frame 2850
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
this.gravity = 0.8;
this.speed = 5;
this.jump = true;
}
onClipEvent (enterFrame) {
_rotation = (this.Velocity._x * -0.75);
if (_currentframe == 1) {
if (Key.isDown(32) && (jump == false)) {
this._y = this._y - 1;
this.speed = -10;
}
if (true) {
if (_root.walls.hitTest(this._x + (this._width / 2), this._y, true)) {
this._x = this._x - 1;
// unexpected jump
}
}
if (true) {
if (_root.walls.hitTest(this._x - (this._width / 2), this._y, true)) {
this._x = this._x + 1;
// unexpected jump
}
}
if (_root.walls.hitTest((this._x - (this._width / 2)) + 1, this._y - (this._height / 2), true) || (_root.walls.hitTest((this._x + (this._width / 2)) - 1, this._y - (this._height / 2), true))) {
this.speed = Math.abs(speed);
this._y = this._y + 1;
}
i = 1;
while (i <= Math.abs(speed)) {
if (((!_root.walls.hitTest(this._x + (this._width / 2), (this._y + (this._height / 2)) + 1, true)) && (!_root.walls.hitTest(this._x - (this._width / 2), (this._y + (this._height / 2)) + 1, true))) && (!_root.walls.hitTest(this._x, (this._y + (this._height / 2)) + 1, true))) {
jump = true;
if (speed > 0) {
this._y = this._y + 1;
} else if (speed < 0) {
this._y = this._y - 1;
}
} else {
jump = false;
this._y = this._y - 0.5;
speed = 5;
}
i++;
}
this._y = this._y - 1;
speed = speed + gravity;
}
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
}
}
on (keyPress "<Left>") {
if (_currentframe == 1) {
this._xscale = -100;
}
}
on (keyPress "<Right>") {
if (_currentframe == 1) {
this._xscale = 100;
}
}
on (rollOver) {
this.useHandCursor = false;
}
Instance of Symbol 447 MovieClip "hud" in Frame 2850
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Instance of Symbol 448 MovieClip "lives" in Frame 2850
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Instance of Symbol 452 MovieClip in Frame 2850
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 453 MovieClip in Frame 2850
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 454 MovieClip in Frame 2850
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 455 MovieClip in Frame 2850
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 456 MovieClip in Frame 2850
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 457 MovieClip in Frame 2850
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 458 MovieClip in Frame 2850
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 459 MovieClip in Frame 2850
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 461 MovieClip "cameraa" in Frame 2850
onClipEvent (enterFrame) {
_x = _root.player._x;
}
Instance of Symbol 461 MovieClip "cameraaa" in Frame 2850
onClipEvent (enterFrame) {
_x = _root.camera._x;
}
Instance of Symbol 461 MovieClip "cameraaaa" in Frame 2850
onClipEvent (enterFrame) {
_x = _root.hud._x;
}
onClipEvent (enterFrame) {
_x = _root.lives._x;
}
onClipEvent (enterFrame) {
_x = _root.camera._x;
}
Instance of Symbol 464 MovieClip "white" in Frame 2850
onClipEvent (enterFrame) {
_x = _root.player._x;
}
Frame 2851
_root.totalpoints.totalpointsa = 0;
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 467 MovieClip "yay" in Frame 2851
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.gotoAndStop(1);
}
}
Instance of Symbol 469 MovieClip "launcher" in Frame 2851
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 25;
}
}
onClipEvent (enterFrame) {
if (_root.player._y <= 25) {
_root.player._y = 25;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.play("ya");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.gotoAndPlay("ya");
}
}
Instance of Symbol 472 MovieClip "line" in Frame 2851
onClipEvent (enterFrame) {
_x = _root.player._x;
if (this.hitTest(_root.player) && (this._currentframe == 1)) {
_root.player.play();
this.play();
_root.hud.fuel.bar._yscale = 100;
}
}
Instance of Symbol 474 MovieClip "test" in Frame 2851
onClipEvent (load) {
this._alpha = 0;
this._width = _root.player._width + 3;
this._height = _root.player._height + 3;
}
onClipEvent (enterFrame) {
this._x = _root.player._x;
this._y = _root.player._y;
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 467 MovieClip "yayagggasfasd" in Frame 2851
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.platet.gotoAndStop(1);
}
}
Instance of Symbol 469 MovieClip "launcheraggggggdsgsadg" in Frame 2851
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 25;
}
}
onClipEvent (enterFrame) {
if (_root.player._y <= 25) {
_root.player._y = 25;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.platet.play("ya");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.platet.gotoAndPlay("ya");
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2851
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 481 MovieClip "Floor" in Frame 2851
onClipEvent (enterFrame) {
_x = _root.player._x;
if (this.hitTest(_root.player) && (this._currentframe == 1)) {
_root.player.play();
this.play();
_root.hud.fuel.bar._yscale = 100;
}
}
Instance of Symbol 540 MovieClip "player" in Frame 2851
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
this.gravity = 0.8;
this.speed = 5;
this.jump = true;
}
onClipEvent (enterFrame) {
_rotation = (this.Velocity._x * -0.75);
if (_currentframe == 1) {
if (Key.isDown(32) && (jump == false)) {
this._y = this._y - 1;
this.speed = -10;
}
if (true) {
if (_root.walls.hitTest(this._x + (this._width / 2), this._y, true)) {
this._x = this._x - 1;
// unexpected jump
}
}
if (true) {
if (_root.walls.hitTest(this._x - (this._width / 2), this._y, true)) {
this._x = this._x + 1;
// unexpected jump
}
}
if (_root.walls.hitTest((this._x - (this._width / 2)) + 1, this._y - (this._height / 2), true) || (_root.walls.hitTest((this._x + (this._width / 2)) - 1, this._y - (this._height / 2), true))) {
this.speed = Math.abs(speed);
this._y = this._y + 1;
}
i = 1;
while (i <= Math.abs(speed)) {
if (((!_root.walls.hitTest(this._x + (this._width / 2), (this._y + (this._height / 2)) + 1, true)) && (!_root.walls.hitTest(this._x - (this._width / 2), (this._y + (this._height / 2)) + 1, true))) && (!_root.walls.hitTest(this._x, (this._y + (this._height / 2)) + 1, true))) {
jump = true;
if (speed > 0) {
this._y = this._y + 1;
} else if (speed < 0) {
this._y = this._y - 1;
}
} else {
jump = false;
this._y = this._y - 0.5;
speed = 5;
}
i++;
}
this._y = this._y - 1;
speed = speed + gravity;
}
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
}
}
on (keyPress "<Left>") {
if (_currentframe == 1) {
this._xscale = -100;
}
}
on (keyPress "<Right>") {
if (_currentframe == 1) {
this._xscale = 100;
}
}
on (rollOver) {
this.useHandCursor = false;
}
Instance of Symbol 461 MovieClip "camera" in Frame 2851
onClipEvent (enterFrame) {
_x = _root.cameraa._x;
}
Instance of Symbol 474 MovieClip "test" in Frame 2851
onClipEvent (load) {
this._alpha = 0;
this._width = _root.player._width + 3;
this._height = _root.player._height + 3;
}
onClipEvent (enterFrame) {
this._x = _root.player._x;
this._y = _root.player._y;
}
Instance of Symbol 570 MovieClip "scores" in Frame 2851
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Instance of Symbol 580 MovieClip "totalpoints" in Frame 2851
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Instance of Symbol 584 MovieClip "gameover" in Frame 2851
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2852
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 474 MovieClip "test" in Frame 2852
onClipEvent (load) {
this._alpha = 0;
this._width = _root.player._width + 3;
this._height = _root.player._height + 3;
}
onClipEvent (enterFrame) {
this._x = _root.player._x;
this._y = _root.player._y;
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 218 MovieClip "player" in Frame 2852
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
this.gravity = 0.8;
this.speed = 5;
this.jump = true;
}
onClipEvent (enterFrame) {
_rotation = (this.Velocity._x * -0.75);
if (_currentframe == 1) {
if (Key.isDown(32) && (jump == false)) {
this._y = this._y - 1;
this.speed = -10;
}
if (true) {
if (_root.walls.hitTest(this._x + (this._width / 2), this._y, true)) {
this._x = this._x - 1;
// unexpected jump
}
}
if (true) {
if (_root.walls.hitTest(this._x - (this._width / 2), this._y, true)) {
this._x = this._x + 1;
// unexpected jump
}
}
if (_root.walls.hitTest((this._x - (this._width / 2)) + 1, this._y - (this._height / 2), true) || (_root.walls.hitTest((this._x + (this._width / 2)) - 1, this._y - (this._height / 2), true))) {
this.speed = Math.abs(speed);
this._y = this._y + 1;
}
i = 1;
while (i <= Math.abs(speed)) {
if (((!_root.walls.hitTest(this._x + (this._width / 2), (this._y + (this._height / 2)) + 1, true)) && (!_root.walls.hitTest(this._x - (this._width / 2), (this._y + (this._height / 2)) + 1, true))) && (!_root.walls.hitTest(this._x, (this._y + (this._height / 2)) + 1, true))) {
jump = true;
if (speed > 0) {
this._y = this._y + 1;
} else if (speed < 0) {
this._y = this._y - 1;
}
} else {
jump = false;
this._y = this._y - 0.5;
speed = 5;
}
i++;
}
this._y = this._y - 1;
speed = speed + gravity;
}
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
}
}
on (keyPress "<Left>") {
if (_currentframe == 1) {
this._xscale = -100;
}
}
on (keyPress "<Right>") {
if (_currentframe == 1) {
this._xscale = 100;
}
}
on (rollOver) {
this.useHandCursor = false;
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform1.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform2.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform3.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform4.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform5.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform6.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform7.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform8.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2852
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform9.play();
}
}
Instance of Symbol 472 MovieClip "line" in Frame 2852
onClipEvent (enterFrame) {
_x = _root.player._x;
if (this.hitTest(_root.player) && (this._currentframe == 1)) {
_root.player.play();
this.play();
_root.hud.fuel.bar._yscale = 100;
}
}
Instance of Symbol 632 MovieClip "scores" in Frame 2852
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2853
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2853
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 218 MovieClip "player" in Frame 2853
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
this.gravity = 0.8;
this.speed = 5;
this.jump = true;
}
onClipEvent (enterFrame) {
_rotation = (this.Velocity._x * -0.75);
if (_currentframe == 1) {
if (Key.isDown(32) && (jump == false)) {
this._y = this._y - 1;
this.speed = -10;
}
if (true) {
if (_root.walls.hitTest(this._x + (this._width / 2), this._y, true)) {
this._x = this._x - 1;
// unexpected jump
}
}
if (true) {
if (_root.walls.hitTest(this._x - (this._width / 2), this._y, true)) {
this._x = this._x + 1;
// unexpected jump
}
}
if (_root.walls.hitTest((this._x - (this._width / 2)) + 1, this._y - (this._height / 2), true) || (_root.walls.hitTest((this._x + (this._width / 2)) - 1, this._y - (this._height / 2), true))) {
this.speed = Math.abs(speed);
this._y = this._y + 1;
}
i = 1;
while (i <= Math.abs(speed)) {
if (((!_root.walls.hitTest(this._x + (this._width / 2), (this._y + (this._height / 2)) + 1, true)) && (!_root.walls.hitTest(this._x - (this._width / 2), (this._y + (this._height / 2)) + 1, true))) && (!_root.walls.hitTest(this._x, (this._y + (this._height / 2)) + 1, true))) {
jump = true;
if (speed > 0) {
this._y = this._y + 1;
} else if (speed < 0) {
this._y = this._y - 1;
}
} else {
jump = false;
this._y = this._y - 0.5;
speed = 5;
}
i++;
}
this._y = this._y - 1;
speed = speed + gravity;
}
}
onClipEvent (enterFrame) {
if (_currentframe == 1) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
}
}
on (keyPress "<Left>") {
if (_currentframe == 1) {
this._xscale = -100;
}
}
on (keyPress "<Right>") {
if (_currentframe == 1) {
this._xscale = 100;
}
}
on (rollOver) {
this.useHandCursor = false;
}
Instance of Symbol 474 MovieClip "test" in Frame 2853
onClipEvent (load) {
this._alpha = 0;
this._width = _root.player._width + 3;
this._height = _root.player._height + 6;
}
onClipEvent (enterFrame) {
this._x = _root.player._x;
this._y = _root.player._y;
}
Instance of Symbol 467 MovieClip "yay" in Frame 2853
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.gotoAndStop(1);
}
}
Instance of Symbol 469 MovieClip "launcher" in Frame 2853
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 25;
}
}
onClipEvent (enterFrame) {
if (_root.player._y <= 25) {
_root.player._y = 25;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.play("ya");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.gotoandPlay("ya");
}
}
Instance of Symbol 461 MovieClip "camera" in Frame 2853
onClipEvent (enterFrame) {
_x = _root.player._x;
}
Instance of Symbol 674 MovieClip "scores" in Frame 2853
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2854
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 589 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform1.play();
}
}
Instance of Symbol 589 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.saw.play();
}
}
Instance of Symbol 589 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if (((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) && (_root.walls.saw._currentframe == 1)) {
_root.walls.saw.gotoAndStop(1);
}
}
Instance of Symbol 479 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 472 MovieClip "line" in Frame 2854
onClipEvent (enterFrame) {
_x = _root.player._x;
if (this.hitTest(_root.player) && (this._currentframe == 1)) {
_root.player.play();
this.play();
_root.hud.fuel.bar._yscale = 100;
}
}
Instance of Symbol 481 MovieClip "Floor" in Frame 2854
onClipEvent (enterFrame) {
_x = _root.player._x;
if (this.hitTest(_root.player) && (this._currentframe == 1)) {
_root.player.play();
this.play();
_root.hud.fuel.bar._yscale = 100;
}
}
Instance of Symbol 677 MovieClip in Frame 2854
onClipEvent (enterFrame) {
if (((this.hitTest(_root.player) && (_root.player._currentframe == 1)) && (this._currentframe == 1)) && (_root.walls.black._currentframe == 1)) {
_root.walls.black.play();
}
}
Instance of Symbol 708 MovieClip "scores" in Frame 2854
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2855
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 589 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if (((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) && (_root.walls.saw._currentframe == 1)) {
_root.walls.saw.gotoAndStop(1);
}
}
Instance of Symbol 589 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.saw.play();
}
}
Instance of Symbol 467 MovieClip "yay" in Frame 2855
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.gotoAndStop(1);
}
}
Instance of Symbol 469 MovieClip "launcher" in Frame 2855
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 25;
}
}
onClipEvent (enterFrame) {
if (_root.player._y <= 25) {
_root.player._y = 25;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.play("ya");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.gotoAndPlay("ya");
}
}
Instance of Symbol 479 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 474 MovieClip "test" in Frame 2855
onClipEvent (load) {
this._alpha = 0;
this._width = _root.player._width + 3;
this._height = _root.player._height + 6;
}
onClipEvent (enterFrame) {
this._x = _root.player._x;
this._y = _root.player._y;
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform1.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform2.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform3.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform4.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform5.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform6.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform7.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform8.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2855
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform9.play();
}
}
Instance of Symbol 452 MovieClip in Frame 2855
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 453 MovieClip in Frame 2855
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 454 MovieClip in Frame 2855
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 455 MovieClip in Frame 2855
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 456 MovieClip in Frame 2855
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 457 MovieClip in Frame 2855
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 458 MovieClip in Frame 2855
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 459 MovieClip in Frame 2855
onClipEvent (load) {
_root.cheat = 0;
}
Instance of Symbol 729 MovieClip "scores" in Frame 2855
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2856
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 472 MovieClip "line" in Frame 2856
onClipEvent (enterFrame) {
_x = _root.player._x;
if (this.hitTest(_root.player) && (this._currentframe == 1)) {
_root.player.play();
this.play();
_root.hud.fuel.bar._yscale = 100;
}
}
Instance of Symbol 481 MovieClip "Floor" in Frame 2856
onClipEvent (enterFrame) {
_x = _root.player._x;
if (this.hitTest(_root.player) && (this._currentframe == 1)) {
_root.player.play();
this.play();
_root.hud.fuel.bar._yscale = 100;
}
}
Instance of Symbol 467 MovieClip "yay" in Frame 2856
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.gotoAndStop(1);
}
}
Instance of Symbol 469 MovieClip "launcher" in Frame 2856
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 25;
}
}
onClipEvent (enterFrame) {
if (_root.player._y <= 25) {
_root.player._y = 25;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.play("ya");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.plateagain.gotoAndPlay("ya");
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 474 MovieClip "test" in Frame 2856
onClipEvent (load) {
this._alpha = 0;
this._width = _root.player._width + 3;
this._height = _root.player._height + 6;
}
onClipEvent (enterFrame) {
this._x = _root.player._x;
this._y = _root.player._y;
}
Instance of Symbol 589 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if (((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) && (_root.walls.saw._currentframe == 1)) {
_root.walls.saw.gotoAndStop(1);
}
}
Instance of Symbol 589 MovieClip in Frame 2856
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.saw.play();
}
}
Instance of Symbol 752 MovieClip "scores" in Frame 2856
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2857
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 474 MovieClip "test" in Frame 2857
onClipEvent (load) {
this._alpha = 0;
this._width = _root.player._width + 3;
this._height = _root.player._height + 6;
}
onClipEvent (enterFrame) {
this._x = _root.player._x;
this._y = _root.player._y;
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform1.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform2.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform3.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform4.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform5.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform6.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform7.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform8.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform9.play();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform11.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform12.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform13.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform14.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform15.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform16.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform17.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform18.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform19.play();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 614 MovieClip in Frame 2857
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform20.play();
}
}
Instance of Symbol 773 MovieClip "scores" in Frame 2857
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2858
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 467 MovieClip "yayagggasfasd" in Frame 2858
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.platet.gotoAndStop(1);
}
}
Instance of Symbol 469 MovieClip "launcheraggggggdsgsadg" in Frame 2858
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = _root.player._y - 25;
}
}
onClipEvent (enterFrame) {
if (_root.player._y <= 25) {
_root.player._y = 25;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.platet.play("ya");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.walls.platet.gotoAndPlay("ya");
}
}
Instance of Symbol 776 MovieClip "trap" in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
this.play();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 677 MovieClip in Frame 2858
onClipEvent (enterFrame) {
if (((this.hitTest(_root.player) && (_root.player._currentframe == 1)) && (this._currentframe == 1)) && (_root.walls.black._currentframe == 1)) {
_root.walls.black.play();
}
}
Instance of Symbol 798 MovieClip "scores" in Frame 2858
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2859
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 589 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if (((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) && (_root.walls.saw._currentframe == 1)) {
_root.walls.saw.gotoAndStop(1);
}
}
Instance of Symbol 589 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.saw.play();
}
}
Instance of Symbol 805 MovieClip "trap" in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
this.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform1.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform2.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform3.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform4.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform5.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform6.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform7.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform8.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform9.play();
}
}
Instance of Symbol 805 MovieClip "trap2" in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
this.play();
}
}
Instance of Symbol 479 MovieClip in Frame 2859
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 823 MovieClip "scores" in Frame 2859
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2860
stop();
_root.hud.points = 0;
_root.scores.pointsa = 0;
_root.scores.score = 0;
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform1.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform2.play();
}
}
Instance of Symbol 805 MovieClip "trap" in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
this.play();
}
}
Instance of Symbol 589 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if (((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) && (_root.walls.saw._currentframe == 1)) {
_root.walls.saw.gotoAndStop(1);
}
}
Instance of Symbol 589 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.saw2.play();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 479 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 479 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 478 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (this._currentframe == 1)) && (_root.player._currentframe == 1)) {
this.nextFrame();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform3.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform4.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform5.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform6.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform7.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform8.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform9.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform10.play();
}
}
Instance of Symbol 614 MovieClip in Frame 2860
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
_root.walls.platform11.play();
}
}
Instance of Symbol 831 MovieClip "hud" in Frame 2860
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Instance of Symbol 835 MovieClip in Frame 2860
onClipEvent (enterFrame) {
_x = _root.player._x;
}
Instance of Symbol 838 MovieClip in Frame 2860
onClipEvent (enterFrame) {
_x = _root.player._x;
}
Instance of Symbol 846 MovieClip in Frame 2860
onClipEvent (enterFrame) {
_x = _root.player._x;
}
Instance of Symbol 849 MovieClip in Frame 2860
onClipEvent (enterFrame) {
_x = _root.player._x;
}
Instance of Symbol 867 MovieClip "scores" in Frame 2860
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Frame 2861
_root.totalpoints.play();
stop();
stop();
stop();
stop();
Symbol 17 MovieClip Frame 177
stop();
_root.gotoAndPlay("preloader");
Symbol 23 Button
on (release) {
getURL ("http://www.gamesofgondor.com", "_blank");
}
Symbol 48 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
_root.playa.gotoAndStop(2);
gotoAndStop ("loaded");
}
Symbol 48 MovieClip Frame 2
gotoAndStop ("loaded");
Symbol 48 MovieClip Frame 3
stop();
_root.playa.gotoAndStop(2);
Symbol 54 MovieClip Frame 1
stop();
Symbol 54 MovieClip Frame 2
stop();
Instance of Symbol 66 MovieClip in Symbol 69 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.TestBubble1)) {
_root.test1 = "Touching";
} else {
_root.test1 = "Not touching";
}
}
Instance of Symbol 66 MovieClip in Symbol 69 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.TestBubble1)) {
_root.test1 = "Touching";
} else {
_root.test1 = "Not touching";
}
}
Instance of Symbol 66 MovieClip in Symbol 69 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.TestBubble1)) {
_root.test1 = "Touching";
} else {
_root.test1 = "Not touching";
}
}
Symbol 88 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 2
stop();
Symbol 120 MovieClip Frame 85
_root.hud.fuel.bar._yscale = _root.hud.fuel.bar._yscale - 3.5;
Symbol 121 MovieClip Frame 1
stop();
Symbol 146 Button
on (release) {
_root.gotoAndPlay("pass");
}
Symbol 147 Button
on (release) {
gotoAndPlay ("options");
}
Symbol 148 Button
on (release) {
gotoAndPlay ("play");
}
Symbol 149 Button
on (release) {
gotoAndPlay ("htp");
}
Symbol 178 Button
on (release) {
gotoAndPlay ("menu");
}
Symbol 185 Button
on (press) {
stopAllSounds();
if (_root.pass == "sparksshallfly") {
_root.gotoAndStop("level2");
}
if (_root.pass == "mrroboto") {
_root.gotoAndStop("level3");
}
if (_root.pass == "batteryacid") {
_root.gotoAndStop("level4");
}
if (_root.pass == "longliverobots") {
_root.gotoAndStop("level5");
}
if (_root.pass == "funkyrobot") {
_root.gotoAndStop("level6");
}
if (_root.pass == "youonlysparkonce") {
_root.gotoAndStop("level7");
}
if (_root.pass == "shortingthecircut") {
_root.gotoAndStop("level8");
}
if (_root.pass == "metalrusts") {
_root.gotoAndStop("level9");
}
if (_root.pass == "notsohuman") {
_root.gotoAndStop("level10");
}
}
Symbol 188 MovieClip Frame 85
_root.hud.fuel.bar._yscale = _root.hud.fuel.bar._yscale - 4.2;
Symbol 218 MovieClip Frame 1
stop();
Symbol 218 MovieClip Frame 2
_root.hud.fuel.bar._yscale = 100;
Symbol 218 MovieClip Frame 9
stop();
_root.Floor.play();
_root.lives.nextFrame();
Symbol 218 MovieClip Frame 31
stop();
_root.player.name = "newName";
_root.player._name = "newName";
Symbol 218 MovieClip Frame 64
gotoAndStop (1);
Symbol 218 MovieClip Frame 65
_root.hud.fuel.bar._yscale = 100;
Symbol 218 MovieClip Frame 72
stop();
_root.lives.nextFrame();
Symbol 221 Button
on (release) {
gotoAndPlay ("levelone");
}
Symbol 229 Button
on (press) {
stopAllSounds();
if (_root.pass == "sparksshallfly") {
_root.gotoAndStop("level");
}
}
Instance of Symbol 252 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.TestBubble1)) {
_root.test1 = "Touching";
} else {
_root.test1 = "Not touching";
}
}
Instance of Symbol 252 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.TestBubble1)) {
_root.test1 = "Touching";
} else {
_root.test1 = "Not touching";
}
}
Instance of Symbol 252 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.TestBubble1)) {
_root.test1 = "Touching";
} else {
_root.test1 = "Not touching";
}
}
Instance of Symbol 262 MovieClip "bar" in Symbol 264 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._yscale <= 0) {
_root.player.play();
this._yscale = 100;
}
}
Symbol 346 MovieClip Frame 1
stop();
Symbol 346 MovieClip Frame 15
stop();
Instance of Symbol 330 MovieClip in Symbol 347 MovieClip Frame 1
onClipEvent (enterFrame) {
this._alpha = 0;
if (this.hitTest(_root.player) && (_root.player._currentframe == 1)) {
_root.player.gotoAndPlay("teleport");
_parent.wire.play();
_root.scores.play();
_root.Floor.stop(1);
_root.line.gotoAndStop(1);
_root.totalpoints.totalpointsa = _root.totalpoints.totalpointsa + _root.scores.score;
_root.player._name = "robotooo";
}
}
Symbol 351 Button
on (press) {
_root.play();
}
Symbol 358 Button
on (press) {
gotoAndPlay ("htpm");
}
Symbol 383 MovieClip Frame 1
stop();
_quality == "HIGH";
Symbol 383 MovieClip Frame 2
stop();
_quality == "MEDIUM";
Symbol 383 MovieClip Frame 3
stop();
_quality == "LOW";
Symbol 383 MovieClip Frame 4
gotoAndStop (1);
Symbol 385 Button
on (release) {
gotoAndPlay ("options2");
}
Symbol 388 Button
on (release) {
stopAllSounds();
_root.music.gotoAndPlay("song1");
}
Symbol 391 Button
on (release) {
stopAllSounds();
_root.music.gotoAndPlay("song2");
}
Symbol 394 Button
on (release) {
stopAllSounds();
_root.music.gotoAndPlay("song3");
}
Symbol 398 MovieClip Frame 1
stop();
Symbol 398 MovieClip Frame 4
stop();
Symbol 398 MovieClip Frame 7
stop();
Symbol 398 MovieClip Frame 10
stop();
Symbol 433 Button
on (release) {
stopAllSounds();
}
on (release) {
_root.gotoAndPlay("menutwoo");
}
Instance of Symbol 441 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
this._alpha = 0;
if (this.hitTest(_root.player) && (_root.player._currentframe == 1)) {
_root.player.gotoAndPlay("teleport");
}
}
Symbol 442 MovieClip Frame 70
gotoAndPlay (2);
Instance of Symbol 443 MovieClip "bar" in Symbol 444 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._yscale <= 0) {
_root.player.play();
this._yscale = 100;
}
}
Symbol 448 MovieClip Frame 1
stop();
Symbol 448 MovieClip Frame 2
stop();
Symbol 448 MovieClip Frame 3
stop();
Symbol 448 MovieClip Frame 4
stop();
Symbol 448 MovieClip Frame 5
stop();
Symbol 448 MovieClip Frame 6
stop();
_root.gameover.play();
Symbol 448 MovieClip Frame 15
stop();
Symbol 452 MovieClip Frame 1
stop();
Instance of Symbol 450 MovieClip in Symbol 452 MovieClip Frame 1
on (keyPress "h") {
if (_root.cheat != 1) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 452 MovieClip Frame 2
on (keyPress "v") {
if (_root.cheat != 1) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 452 MovieClip Frame 3
on (keyPress "b") {
if (_root.cheat != 1) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 452 MovieClip Frame 4
on (keyPress "f") {
if (_root.cheat != 1) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 452 MovieClip Frame 5
on (keyPress "l") {
if (_root.cheat != 1) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 452 MovieClip Frame 6
on (keyPress "o") {
if (_root.cheat != 1) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 452 MovieClip Frame 7
on (keyPress "a") {
if (_root.cheat != 1) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 452 MovieClip Frame 8
on (keyPress "t") {
if (_root.cheat != 1) {
_parent.nextFrame();
}
}
Symbol 452 MovieClip Frame 9
stop();
_root.cheat = 1;
_root.walls.cheat.gotoAndStop(2);
Symbol 453 MovieClip Frame 1
stop();
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 1
on (keyPress "h") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 2
on (keyPress "v") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 3
on (keyPress "b") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 5
on (keyPress "i") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 6
on (keyPress "g") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 7
on (keyPress "h") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 8
on (keyPress "e") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 9
on (keyPress "a") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 453 MovieClip Frame 10
on (keyPress "d") {
if (_root.cheat != 2) {
_parent.nextFrame();
}
}
Symbol 453 MovieClip Frame 11
stop();
_root.cheat = 2;
_root.player.bot.head._xscale = 400;
_root.player.bot.head._yscale = 400;
Symbol 454 MovieClip Frame 1
stop();
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 1
on (keyPress "h") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 2
on (keyPress "v") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 3
on (keyPress "b") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 4
on (keyPress "i") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 5
on (keyPress "n") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 6
on (keyPress "v") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 7
on (keyPress "i") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 8
on (keyPress "s") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 9
on (keyPress "i") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 10
on (keyPress "b") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 11
on (keyPress "l") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 454 MovieClip Frame 12
on (keyPress "e") {
if (_root.cheat != 3) {
_parent.nextFrame();
}
}
Symbol 454 MovieClip Frame 13
stop();
_root.cheat = 3;
if ((_root.player._visible = true)) {
tellTarget (_root.player) {
_visible = false;
};
}
Symbol 455 MovieClip Frame 1
stop();
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 1
on (keyPress "h") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 2
on (keyPress "v") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 3
on (keyPress "b") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 4
on (keyPress "f") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 5
on (keyPress "u") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 6
on (keyPress "l") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 9
on (keyPress "i") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 10
on (keyPress "f") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 455 MovieClip Frame 11
on (keyPress "e") {
if (_root.cheat != 4) {
_parent.nextFrame();
}
}
Symbol 455 MovieClip Frame 12
stop();
_root.cheat = 4;
_root.lives.gotoAndStop("full");
Symbol 456 MovieClip Frame 1
stop();
Instance of Symbol 450 MovieClip in Symbol 456 MovieClip Frame 1
on (keyPress "h") {
if (_root.cheat != 6) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 456 MovieClip Frame 2
on (keyPress "v") {
if (_root.cheat != 6) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 456 MovieClip Frame 3
on (keyPress "b") {
if (_root.cheat != 6) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 456 MovieClip Frame 5
on (keyPress "o") {
if (_root.cheat != 6) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 456 MovieClip Frame 7
on (keyPress "m") {
if (_root.cheat != 6) {
_parent.nextFrame();
}
}
Symbol 456 MovieClip Frame 8
_root.cheat = 6;
_root.player.gotoAndPlay("booma");
_root.Floor.play();
gotoAndStop (1);
Symbol 457 MovieClip Frame 1
stop();
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 1
on (keyPress "h") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 2
on (keyPress "b") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 3
on (keyPress "v") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 4
on (keyPress "r") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 5
on (keyPress "e") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 6
on (keyPress "s") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 7
on (keyPress "t") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 8
on (keyPress "a") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 9
on (keyPress "r") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 457 MovieClip Frame 10
on (keyPress "t") {
if (_root.cheat != 5) {
_parent.nextFrame();
}
}
Symbol 457 MovieClip Frame 11
stop();
_root.cheat = 5;
stopAllSounds();
_root.gotoAndPlay("intro");
Symbol 458 MovieClip Frame 1
stop();
Instance of Symbol 450 MovieClip in Symbol 458 MovieClip Frame 1
on (keyPress "h") {
if (_root.cheat != 7) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 458 MovieClip Frame 2
on (keyPress "v") {
if (_root.cheat != 7) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 458 MovieClip Frame 3
on (keyPress "b") {
if (_root.cheat != 7) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 458 MovieClip Frame 5
on (keyPress "a") {
if (_root.cheat != 7) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 458 MovieClip Frame 6
on (keyPress "t") {
if (_root.cheat != 7) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 458 MovieClip Frame 8
on (keyPress "e") {
if (_root.cheat != 7) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 458 MovieClip Frame 9
on (keyPress "r") {
if (_root.cheat != 7) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 458 MovieClip Frame 10
on (keyPress "y") {
if (_root.cheat != 7) {
_parent.nextFrame();
}
}
Symbol 458 MovieClip Frame 11
stop();
_root.cheat = 7;
_root.hud.fuel.bar._yscale = 100;
_root.player.bot.gotoAndStop(1);
Symbol 459 MovieClip Frame 1
stop();
Instance of Symbol 450 MovieClip in Symbol 459 MovieClip Frame 1
on (keyPress "h") {
if (_root.cheat != 8) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 459 MovieClip Frame 2
on (keyPress "v") {
if (_root.cheat != 8) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 459 MovieClip Frame 3
on (keyPress "b") {
if (_root.cheat != 8) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 459 MovieClip Frame 4
on (keyPress "c") {
if (_root.cheat != 8) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 459 MovieClip Frame 5
on (keyPress "l") {
if (_root.cheat != 8) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 459 MovieClip Frame 6
on (keyPress "i") {
if (_root.cheat != 8) {
_parent.nextFrame();
}
}
Instance of Symbol 450 MovieClip in Symbol 459 MovieClip Frame 7
on (keyPress "p") {
if (_root.cheat != 8) {
_parent.nextFrame();
}
}
Symbol 459 MovieClip Frame 8
stop();
_root.cheat = 8;
_root.walls.name = "newName";
_root.walls._name = "newName";
Symbol 461 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;
}
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;
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 464 MovieClip Frame 1
stop();
Symbol 464 MovieClip Frame 7
gotoAndStop (1);
Symbol 472 MovieClip Frame 1
stop();
Symbol 472 MovieClip Frame 33
gotoAndPlay (1);
_root.player._x = 50;
_root.player._y = 300;
_root.player.gotoAndPlay("fade");
_root.hud.fuel.bar._yscale = 100;
_root.walls.platform1.gotoAndStop(1);
_root.walls.platform2.gotoAndStop(1);
_root.walls.platform3.gotoAndStop(1);
_root.walls.platform4.gotoAndStop(1);
_root.walls.platform5.gotoAndStop(1);
_root.walls.platform6.gotoAndStop(1);
_root.walls.platform7.gotoAndStop(1);
_root.walls.platform8.gotoAndStop(1);
_root.walls.platform9.gotoAndStop(1);
_root.walls.platform10.gotoAndStop(1);
Symbol 478 MovieClip Frame 1
stop();
Symbol 478 MovieClip Frame 2
_root.hud.points++;
_root.scores.pointsa++;
_root.scores.score = _root.scores.score + 2;
_root.cameraa.hud.points++;
Symbol 479 MovieClip Frame 1
stop();
Symbol 479 MovieClip Frame 2
_root.hud.points++;
_root.scores.pointsa++;
_root.scores.score = _root.scores.score + 2;
Symbol 481 MovieClip Frame 1
stop();
Symbol 481 MovieClip Frame 28
_root.white.play();
Symbol 481 MovieClip Frame 33
gotoAndPlay (1);
_root.player._x = 50;
_root.player._y = 300;
_root.player.gotoAndPlay("fade");
_root.hud.fuel.bar._yscale = 100;
if (_root.walls.platform1._currentframe == 16) {
_root.walls.platform1.gotoAndPlay("reset");
}
if (_root.walls.platform2._currentframe == 16) {
_root.walls.platform2.gotoAndPlay("reset");
}
if (_root.walls.platform3._currentframe == 16) {
_root.walls.platform3.gotoAndPlay("reset");
}
if (_root.walls.platform4._currentframe == 16) {
_root.walls.platform4.gotoAndPlay("reset");
}
if (_root.walls.platform5._currentframe == 16) {
_root.walls.platform5.gotoAndStop(1);
}
if (_root.walls.platform6._currentframe == 16) {
_root.walls.platform6.gotoAndPlay("reset");
}
if (_root.walls.platform7._currentframe == 16) {
_root.walls.platform7.gotoAndPlay("reset");
}
if (_root.walls.platform8._currentframe == 16) {
_root.walls.platform8.gotoAndPlay("reset");
}
if (_root.walls.platform9._currentframe == 16) {
_root.walls.platform9.gotoAndPlay("reset");
}
if (_root.walls.platform10._currentframe == 9) {
_root.walls.platform10.gotoAndPlay("restore");
}
if (_root.walls.platform11._currentframe == 16) {
_root.walls.platform11.gotoAndPlay("reset");
}
if (_root.walls.platform12._currentframe == 16) {
_root.walls.platform12.gotoAndPlay("reset");
}
if (_root.walls.platform13._currentframe == 16) {
_root.walls.platform13.gotoAndPlay("reset");
}
if (_root.walls.platform14._currentframe == 16) {
_root.walls.platform14.gotoAndPlay("reset");
}
if (_root.walls.platform15._currentframe == 16) {
_(root.walls.platform15.gotoAndPlay("reset"));
}
if (_root.walls.platform16._currentframe == 16) {
_root.walls.platform16.gotoAndPlay("reset");
}
if (_root.walls.platform17._currentframe == 16) {
_root.walls.platform17.gotoAndPlay("reset");
}
if (_root.walls.platform18._currentframe == 16) {
_root.walls.platform18.gotoAndPlay("reset");
}
if (_root.walls.platform19._currentframe == 16) {
_root.walls.platform19.gotoAndPlay("reset");
}
if (_root.walls.platform20._currentframe == 16) {
_root.walls.platform20.gotoAndPlay("reset");
}
if (_root.walls.platform21._currentframe == 16) {
_root.walls.platform21.gotoAndPlay("reset");
}
_root.walls.saw.gotoAndStop(1);
_root.walls.saw2.gotoAndStop(1);
if (_root.walls.black._currentframe == 40) {
_root.walls.black.gotoAndPlay("restart");
}
if (_root.walls.trap._currentframe == 10) {
_root.trap.gotoAndPlay("reset");
}
if (_root.walls.trap2._currentframe == 10) {
_root.trap2.gotoAndPlay("reset");
}
Instance of Symbol 485 MovieClip in Symbol 487 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)(_root.player.play)(_root.Floor.play)) {
}
}
Instance of Symbol 485 MovieClip in Symbol 487 MovieClip Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.play();
_root.Floor.play();
}
}
Instance of Symbol 485 MovieClip in Symbol 487 MovieClip Frame 47
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)(_root.player.play)(_root.line.play)) {
}
}
Instance of Symbol 485 MovieClip in Symbol 488 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)(_root.player.play)(_root.line.play)) {
}
}
Instance of Symbol 485 MovieClip in Symbol 488 MovieClip Frame 80
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.play();
_root.Floor.play();
}
}
Instance of Symbol 485 MovieClip in Symbol 488 MovieClip Frame 108
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)(_root.player.play)(_root.line.play)) {
}
}
Symbol 506 MovieClip Frame 1
stop();
Symbol 506 MovieClip Frame 2
play();
Symbol 506 MovieClip Frame 10
stop();
Symbol 506 MovieClip Frame 4849
stop();
Symbol 516 MovieClip Frame 1
stop();
Symbol 516 MovieClip Frame 2
stop();
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 517 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Symbol 540 MovieClip Frame 1
stop();
Symbol 540 MovieClip Frame 2
_root.hud.fuel.bar._yscale = 100;
Symbol 540 MovieClip Frame 9
stop();
_root.Floor.play();
_root.lives.nextFrame();
Symbol 540 MovieClip Frame 31
stop();
_root.player.name = "newName";
_root.player._name = "newName";
Symbol 540 MovieClip Frame 64
gotoAndStop (1);
Symbol 540 MovieClip Frame 65
_root.hud.fuel.bar._yscale = 100;
Symbol 540 MovieClip Frame 72
stop();
_root.lives.nextFrame();
Symbol 570 MovieClip Frame 1
stop();
Symbol 570 MovieClip Frame 286
_root.gotoAndPlay("leveltwoscreen");
Symbol 580 MovieClip Frame 1
stop();
Symbol 580 MovieClip Frame 286
_root.gotoAndPlay("passwordscreen");
Symbol 584 MovieClip Frame 1
stop();
Symbol 584 MovieClip Frame 2
_root.player._name = "newName";
Symbol 584 MovieClip Frame 147
stopAllSounds();
_root.gotoAndPlay("menutwoo");
Symbol 590 MovieClip Frame 1
stop();
Symbol 590 MovieClip Frame 16
stop();
Symbol 590 MovieClip Frame 51
gotoAndStop (1);
Symbol 591 MovieClip Frame 1
stop();
Symbol 591 MovieClip Frame 16
stop();
Symbol 591 MovieClip Frame 70
gotoAndStop (1);
Symbol 592 MovieClip Frame 1
stop();
Symbol 592 MovieClip Frame 16
stop();
Symbol 592 MovieClip Frame 75
gotoAndStop (1);
Symbol 593 MovieClip Frame 1
stop();
Symbol 593 MovieClip Frame 16
stop();
Symbol 593 MovieClip Frame 51
gotoAndStop (1);
Instance of Symbol 596 MovieClip in Symbol 598 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player) && (_root.player._currentframe == 1)) {
_root.player.play();
}
}
Symbol 600 MovieClip Frame 1
stop();
Symbol 600 MovieClip Frame 329
gotoAndStop (1);
Symbol 610 MovieClip Frame 1
stop();
Symbol 610 MovieClip Frame 9
stop();
Symbol 610 MovieClip Frame 54
gotoAndStop (1);
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 600 MovieClip "spike" in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.player._currentframe)) && (this._currentframe == 1)) {
this.play();
}
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 610 MovieClip "platform10" in Symbol 612 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.test)) {
this.play();
}
if (_root.player.hitTest(_root.Floor)) {
this.gotoAndPlay("restore");
}
}
Symbol 632 MovieClip Frame 1
stop();
Symbol 632 MovieClip Frame 286
_root.gotoAndPlay("levelthreescreen");
Instance of Symbol 636 MovieClip in Symbol 641 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.Floor.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.life.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player) && (_root.player._currentframe == 1)) {
_root.player.play();
}
}
Instance of Symbol 636 MovieClip in Symbol 648 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.Floor.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.life.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player) && (_root.player._currentframe == 1)) {
_root.player.play();
}
}
Instance of Symbol 636 MovieClip in Symbol 653 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.Floor.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.life.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player) && (_root.player._currentframe == 1)) {
_root.player.play();
}
}
Instance of Symbol 490 MovieClip in Symbol 656 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 656 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 656 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 656 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 656 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 656 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Symbol 674 MovieClip Frame 1
stop();
Symbol 674 MovieClip Frame 286
_root.gotoAndPlay("levelfourscreen");
Symbol 677 MovieClip Frame 1
stop();
Symbol 677 MovieClip Frame 40
stop();
Symbol 677 MovieClip Frame 56
gotoAndStop (1);
Symbol 688 MovieClip Frame 1
stop();
Instance of Symbol 687 MovieClip in Symbol 688 MovieClip Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.play();
}
if (this.hitTest(_root.player)) {
_root.Floor.play();
}
}
Instance of Symbol 680 MovieClip in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.play();
}
if (this.hitTest(_root.player)) {
_root.line.play();
}
}
Instance of Symbol 490 MovieClip in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 684 MovieClip in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
walls.saw.play();
}
}
Instance of Symbol 610 MovieClip "platform2" in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.test)) {
this.play();
}
if (_root.player.hitTest(_root.Floor)) {
this.gotoAndPlay("restore");
}
}
Instance of Symbol 490 MovieClip in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 690 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Symbol 708 MovieClip Frame 1
stop();
Symbol 708 MovieClip Frame 286
_root.gotoAndPlay("levelfivescreen");
Instance of Symbol 708 MovieClip "scores" in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
this._x = _root.player._x;
}
Instance of Symbol 490 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 600 MovieClip "spike" in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.player._currentframe)) && (this._currentframe == 1)) {
this.play();
}
}
Instance of Symbol 684 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
walls.saw.play();
}
}
Instance of Symbol 490 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 711 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Symbol 729 MovieClip Frame 1
stop();
Symbol 729 MovieClip Frame 286
_root.gotoAndPlay("levelsixscreen");
Instance of Symbol 490 MovieClip in Symbol 734 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 734 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 734 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 684 MovieClip in Symbol 734 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
walls.saw.play();
}
}
Instance of Symbol 490 MovieClip in Symbol 734 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Symbol 752 MovieClip Frame 1
stop();
Symbol 752 MovieClip Frame 286
_root.gotoAndPlay("levelsevenscreen");
Instance of Symbol 490 MovieClip in Symbol 755 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 755 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 610 MovieClip "platform10" in Symbol 755 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.test)) {
this.play();
}
if (_root.player.hitTest(_root.Floor)) {
this.gotoAndPlay("restore");
}
}
Instance of Symbol 600 MovieClip "spike" in Symbol 755 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.player._currentframe)) && (this._currentframe == 1)) {
this.play();
}
}
Instance of Symbol 490 MovieClip in Symbol 755 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 755 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Symbol 773 MovieClip Frame 1
stop();
Symbol 773 MovieClip Frame 286
_root.gotoAndPlay("leveleightscreen");
Symbol 776 MovieClip Frame 1
stop();
Symbol 776 MovieClip Frame 11
stop();
Symbol 776 MovieClip Frame 62
gotoAndStop (1);
Instance of Symbol 490 MovieClip in Symbol 780 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 780 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 680 MovieClip in Symbol 780 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.play();
}
if (this.hitTest(_root.player)) {
_root.line.play();
}
}
Instance of Symbol 677 MovieClip "black" in Symbol 780 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.player) && (_root.player._currentframe == 1)) && (this._currentframe == 1)) {
this.play();
}
}
Symbol 798 MovieClip Frame 1
stop();
Symbol 798 MovieClip Frame 286
_root.gotoAndPlay("levelninescreen");
Instance of Symbol 490 MovieClip in Symbol 803 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 803 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 610 MovieClip "platform10" in Symbol 803 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.test)) {
this.play();
}
if (_root.player.hitTest(_root.Floor)) {
this.gotoAndPlay("restore");
}
}
Instance of Symbol 684 MovieClip in Symbol 803 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
walls.saw.play();
}
}
Symbol 805 MovieClip Frame 1
stop();
Symbol 805 MovieClip Frame 10
stop();
Symbol 805 MovieClip Frame 59
gotoAndStop (1);
Symbol 823 MovieClip Frame 1
stop();
Symbol 823 MovieClip Frame 286
_root.gotoAndPlay("leveltenscreen");
Instance of Symbol 684 MovieClip in Symbol 828 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
walls.saw.play();
}
}
Instance of Symbol 600 MovieClip "spike" in Symbol 828 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.player._currentframe)) && (this._currentframe == 1)) {
this.play();
}
}
Instance of Symbol 490 MovieClip in Symbol 828 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 828 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.75);
}
Instance of Symbol 490 MovieClip in Symbol 828 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 0.75);
}
Instance of Symbol 684 MovieClip in Symbol 828 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((this.hitTest(_root.test) && (_root.test._currentframe == 1)) && (this._currentframe == 1)) {
walls.saw.play();
}
}
Instance of Symbol 443 MovieClip "bar" in Symbol 829 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this._yscale <= 0) {
_root.player.play();
this._yscale = 100;
}
}
Symbol 867 MovieClip Frame 1
stop();
Symbol 867 MovieClip Frame 339
_root.gotoAndPlay("end");