Instance of Symbol 24 MovieClip in Frame 1
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2
stop();
Instance of Symbol 26 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 34 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 41 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 44 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 64 MovieClip "character" in Frame 2
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 3
stop();
Instance of Symbol 30 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 69 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.gotoAndPlay(3);
}
}
Instance of Symbol 77 MovieClip "character" in Frame 3
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 75
stop();
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 44 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.gotoAndStop(2);
}
}
Instance of Symbol 129 MovieClip in Frame 75
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 130 MovieClip "character" in Frame 75
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 76
stop();
Instance of Symbol 26 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 34 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 41 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 134 MovieClip in Frame 76
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 64 MovieClip "character" in Frame 76
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 130
stop();
Instance of Symbol 24 MovieClip in Frame 130
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 131
stop();
Instance of Symbol 26 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 34 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 34 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 164 MovieClip in Frame 131
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 131
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 132
stop();
Instance of Symbol 30 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 177 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 132
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 133
stop();
Instance of Symbol 30 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 181 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 133
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Instance of Symbol 194 MovieClip in Frame 133
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
this.gotoAndPlay(2);
} else {
this.gotoAndPlay(1);
}
}
Instance of Symbol 24 MovieClip in Frame 133
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 134
stop();
stop();
stop();
stop();
Frame 135
stop();
stop();
stop();
stop();
Frame 136
stop();
stop();
Frame 137
stop();
Frame 138
stop();
Frame 139
stop();
Frame 140
stop();
stop();
Instance of Symbol 30 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 166 MovieClip "character" in Frame 140
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Instance of Symbol 194 MovieClip in Frame 140
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
this.gotoAndPlay(2);
} else {
this.gotoAndPlay(1);
}
}
Frame 141
stop();
Instance of Symbol 30 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 214 MovieClip in Frame 141
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 141
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 142
stop();
Instance of Symbol 30 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 229 MovieClip in Frame 142
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 142
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 186
stop();
Instance of Symbol 24 MovieClip in Frame 186
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 279
stop();
Instance of Symbol 24 MovieClip in Frame 279
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 327
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 369
stop();
Instance of Symbol 24 MovieClip in Frame 369
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 371
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 387
stop();
Instance of Symbol 24 MovieClip in Frame 387
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 475
stop();
Instance of Symbol 24 MovieClip in Frame 475
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 30 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 428 MovieClip in Frame 491
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 491
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 492
stop();
Instance of Symbol 30 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 24 MovieClip in Frame 492
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 428 MovieClip in Frame 492
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 492
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 603
stop();
Instance of Symbol 30 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 466 MovieClip in Frame 603
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 603
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 716
stop();
Instance of Symbol 24 MovieClip in Frame 716
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 542 MovieClip in Frame 777
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 872
stop();
Instance of Symbol 24 MovieClip in Frame 872
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 616 MovieClip in Frame 887
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 917
stop();
Instance of Symbol 24 MovieClip in Frame 917
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 665 MovieClip in Frame 1008
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1053
stop();
Instance of Symbol 24 MovieClip in Frame 1053
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1128
stop();
Instance of Symbol 24 MovieClip in Frame 1128
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 30 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 30 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 26 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 24 MovieClip in Frame 1286
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 32 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 780 MovieClip in Frame 1286
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 1286
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 1302
stop();
Instance of Symbol 32 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 32 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 30 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x - 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 26 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._x = _root.character._x + 20;
}
}
Instance of Symbol 28 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (this.hitTest(_root.character)) {
_root.character._y = _root.character._y - 20;
}
}
Instance of Symbol 789 MovieClip in Frame 1303
onClipEvent (enterFrame) {
if (_parent.character.hitTest(this)) {
_parent.play();
}
}
Instance of Symbol 166 MovieClip "character" in Frame 1303
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_y = (_y - 10);
_rotation = 0;
this.gotoAndStop(2);
}
if (Key.isDown(40)) {
_y = (_y + 10);
_rotation = 0;
this.gotoAndStop(1);
}
if (Key.isDown(39)) {
_x = (_x + 10);
_rotation = 0;
this.gotoAndStop(4);
}
if (Key.isDown(37)) {
_x = (_x - 10);
_rotation = 0;
this.gotoAndStop(3);
}
}
onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(32) && (_root.character.hitTest(_root.car))) {
speed = speed + 1;
}
if (Key.isDown(40) && (_root.character.hitTest(_root.car))) {
speed = speed - 1;
}
if (Math.abs(speed) > 25) {
speed = speed * 0.6;
}
if (Key.isDown(37) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation - 15);
}
if (Key.isDown(39) && (_root.character.hitTest(_root.car))) {
_rotation = (_rotation + 15);
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.move.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.car)) {
_root.character._visible = false;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(65)) {
_root.character._visible = true;
}
}
onClipEvent (enterFrame) {
if ((visible = true)) {
speed = 0;
_rotation = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (_visible == true)) {
_y = (_y - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(40) && (_visible == true)) {
_y = (_y + 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37) && (_visible == true)) {
_x = (_x - 5);
}
}
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_visible == true)) {
_x = (_x + 5);
}
}
onClipEvent (enterFrame) {
if (_root.character._visible == false) {
_y = _root.car._y;
_x = _root.car._x;
}
}
Frame 1337
stop();
Frame 1474
stopAllSounds();
Frame 1479
stop();
Instance of Symbol 24 MovieClip in Frame 1479
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1556
stopAllSounds();
Frame 1563
stop();
Instance of Symbol 24 MovieClip in Frame 1563
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1637
stopAllSounds();
Frame 1644
stop();
Instance of Symbol 24 MovieClip in Frame 1644
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 844 MovieClip in Frame 1659
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 1685
stopAllSounds();
Frame 1691
stop();
Instance of Symbol 24 MovieClip in Frame 1691
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2002
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2076
stopAllSounds();
Frame 2082
stop();
Instance of Symbol 24 MovieClip in Frame 2082
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2083
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2085
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2113
stopAllSounds();
Instance of Symbol 316 MovieClip in Frame 2140
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2159
stopAllSounds();
Frame 2160
stop();
Instance of Symbol 24 MovieClip in Frame 2160
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2161
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2208
stopAllSounds();
Frame 2209
stop();
Instance of Symbol 24 MovieClip in Frame 2209
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2210
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2256
stopAllSounds();
Frame 2257
stop();
Instance of Symbol 24 MovieClip in Frame 2257
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Instance of Symbol 316 MovieClip in Frame 2258
onClipEvent (load) {
startDrag ("", true);
Mouse.hide();
}
Frame 2301
stopAllSounds();
Symbol 10 Button
on (release) {
getURL ("http://www.newgrounds.com", "_blank");
}
Symbol 18 Button
on (release) {
_root.play();
}
Symbol 19 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 19 MovieClip Frame 2
gotoAndPlay (1);
Symbol 64 MovieClip Frame 1
stop();
Instance of Symbol 49 MovieClip "player" in Symbol 64 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!Key.isDown(40)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 64 MovieClip Frame 2
stop();
Instance of Symbol 53 MovieClip in Symbol 64 MovieClip Frame 2
onClipEvent (enterFrame) {
if (!Key.isDown(38)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 64 MovieClip Frame 3
stop();
Instance of Symbol 58 MovieClip in Symbol 64 MovieClip Frame 3
onClipEvent (enterFrame) {
if (!Key.isDown(37)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 64 MovieClip Frame 4
stop();
Instance of Symbol 63 MovieClip in Symbol 64 MovieClip Frame 4
onClipEvent (enterFrame) {
if (!Key.isDown(39)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 69 MovieClip Frame 17
stop();
Symbol 77 MovieClip Frame 1
stop();
Instance of Symbol 49 MovieClip "player" in Symbol 77 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!Key.isDown(40)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 77 MovieClip Frame 2
stop();
Instance of Symbol 53 MovieClip in Symbol 77 MovieClip Frame 2
onClipEvent (enterFrame) {
if (!Key.isDown(38)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 77 MovieClip Frame 3
stop();
Instance of Symbol 58 MovieClip in Symbol 77 MovieClip Frame 3
onClipEvent (enterFrame) {
if (!Key.isDown(37)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 77 MovieClip Frame 4
stop();
Instance of Symbol 63 MovieClip in Symbol 77 MovieClip Frame 4
onClipEvent (enterFrame) {
if (!Key.isDown(39)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 130 MovieClip Frame 1
stop();
Instance of Symbol 49 MovieClip "player" in Symbol 130 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!Key.isDown(40)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 130 MovieClip Frame 2
stop();
Instance of Symbol 53 MovieClip in Symbol 130 MovieClip Frame 2
onClipEvent (enterFrame) {
if (!Key.isDown(38)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 130 MovieClip Frame 3
stop();
Instance of Symbol 58 MovieClip in Symbol 130 MovieClip Frame 3
onClipEvent (enterFrame) {
if (!Key.isDown(37)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 130 MovieClip Frame 4
stop();
Instance of Symbol 63 MovieClip in Symbol 130 MovieClip Frame 4
onClipEvent (enterFrame) {
if (!Key.isDown(39)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 141 MovieClip Frame 7
stop();
Symbol 150 MovieClip Frame 8
stop();
Symbol 160 Button
on (release) {
play();
}
Symbol 162 MovieClip Frame 20
stop();
Symbol 166 MovieClip Frame 1
stop();
Instance of Symbol 49 MovieClip "player" in Symbol 166 MovieClip Frame 1
onClipEvent (enterFrame) {
if (!Key.isDown(40)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 166 MovieClip Frame 2
stop();
Instance of Symbol 53 MovieClip in Symbol 166 MovieClip Frame 2
onClipEvent (enterFrame) {
if (!Key.isDown(38)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 166 MovieClip Frame 3
stop();
Instance of Symbol 58 MovieClip in Symbol 166 MovieClip Frame 3
onClipEvent (enterFrame) {
if (!Key.isDown(37)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 166 MovieClip Frame 4
stop();
Instance of Symbol 63 MovieClip in Symbol 166 MovieClip Frame 4
onClipEvent (enterFrame) {
if (!Key.isDown(39)) {
this._y = this._y - speed;
this.gotoAndStop(1);
} else {
this.play();
}
}
Symbol 187 Button
on (press) {
gotoAndStop (141);
}
Symbol 194 MovieClip Frame 1
stop();
Symbol 202 Button
on (press) {
play();
}
Symbol 218 MovieClip Frame 5
stop();
Symbol 276 Button
on (press) {
play();
}
Symbol 278 Button
on (press) {
gotoAndPlay (425);
}
Symbol 280 Button
on (press) {
gotoAndPlay (392);
}
Symbol 282 MovieClip Frame 11
stop();
Symbol 302 Button
on (press) {
play();
}
Symbol 304 Button
on (press) {
gotoAndPlay (425);
}
Symbol 305 Button
on (press) {
gotoAndPlay (187);
}
Symbol 311 Button
on (press) {
gotoAndPlay (371);
}
Symbol 358 MovieClip Frame 34
stop();
Symbol 365 Button
on (press) {
gotoAndPlay (143);
}
Symbol 369 MovieClip Frame 9
stop();
Symbol 388 Button
on (press) {
gotoAndPlay (491);
}
Symbol 442 MovieClip Frame 40
stop();
Symbol 519 Button
on (press) {
play();
}
Symbol 540 Button
on (press) {
gotoAndPlay (873);
}
Symbol 584 MovieClip Frame 95
stop();
Symbol 589 MovieClip Frame 23
stop();
Symbol 591 MovieClip Frame 33
stop();
Symbol 592 MovieClip Frame 26
stop();
Symbol 596 MovieClip Frame 27
stop();
Symbol 598 Button
on (press) {
gotoAndPlay (632);
}
Symbol 614 Button
on (press) {
gotoAndPlay (918);
}
Symbol 663 Button
on (press) {
gotoAndPlay (1054);
}
Symbol 726 Button
on (release) {
play();
}
Symbol 813 Button
on (keyPress "<Up>") {
gotoAndPlay (1481);
}
Symbol 827 Button
on (press) {
gotoAndPlay (1373);
}
Symbol 828 Button
on (keyPress "<Up>") {
gotoAndPlay (109);
}
Symbol 829 Button
on (keyPress "<Up>") {
gotoAndPlay (1565);
}
Symbol 834 Button
on (keyPress "<Up>") {
gotoAndPlay (1646);
}
Symbol 845 Button
on (press) {
gotoAndPlay (1693);
}
Symbol 944 Button
on (press) {
gotoAndPlay (2083);
}
Symbol 983 MovieClip Frame 40
stop();
Symbol 986 Button
on (press) {
gotoAndPlay (1989);
}
Symbol 1024 Button
on (press) {
gotoAndPlay (2161);
}
Symbol 1035 Button
on (press) {
gotoAndPlay (2114);
}
Symbol 1039 Button
on (press) {
gotoAndPlay (16);
}
Symbol 1041 Button
on (press) {
gotoAndPlay (16);
}
Symbol 1051 Button
on (press) {
gotoAndPlay (2);
}
Symbol 1063 MovieClip Frame 1
stop();
Symbol 1063 MovieClip Frame 7
stop();
Symbol 1063 MovieClip Frame 9
stop();
Symbol 1063 MovieClip Frame 13
stop();
Symbol 1063 MovieClip Frame 15
stop();
Symbol 1063 MovieClip Frame 21
stop();
Symbol 1063 MovieClip Frame 23
stop();
Symbol 1068 Button
on (press) {
gotoAndPlay (2211);
}
Symbol 1076 Button
on (press) {
gotoAndPlay (2258);
}