Frame 1
stop();
Instance of Symbol 39 MovieClip in Frame 1
onClipEvent (load) {
total = _root.getBytesTotal();
}
onClipEvent (enterFrame) {
loaded = _root.getBytesLoaded();
percent = int((loaded / total) * 100);
perc = ("" + percent) + "%";
gotoAndStop(percent);
if (loaded == total) {
_root.gotoAndPlay(2);
}
}
Frame 2
stop();
_root.pressed = false;
_root.go = false;
_root.boomT = 0;
_root.minutes = 0;
_root.seconds = 0;
_root.hundredths = 0;
_root.finalT = 0;
_root.speed = 0;
_root.run = 1;
_root.go = false;
fis = new Sound(fscreen);
fis.attachSound("sk1");
fis.setVolume(20);
fis.start(0, 100);
Frame 3
stop();
_root.speed = 0;
stopAllSounds();
sk2 = new Sound(soundMC);
sk2.attachSound("sk2");
sk2.setVolume(30);
puck = new Sound(sema);
puck.attachSound("puck");
puck.setVolume(100);
rolz = new Sound(sema);
rolz.attachSound("rolz");
rolz.setVolume(20);
Instance of Symbol 121 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_root.run != 0)) {
if (_root.speed < 10) {
_root.speed = _root.speed + (_root.acc / 4);
}
if ((_root.speed >= 10) && (_root.speed < 20)) {
_root.speed = _root.speed + (_root.acc / 2);
}
if ((_root.speed >= 20) && (_root.speed < 30)) {
_root.speed = _root.speed + _root.acc;
}
if (_root.speed >= 30) {
_root.speed = _root.speed + (_root.acc * 3);
}
} else {
_root.speed = _root.speed - 0.5;
}
if (Key.isDown(37)) {
_root.speed = _root.speed - 1;
}
if (_root.speed < 0) {
_root.speed = 0;
}
if (Math.abs(_root.speed) > 40) {
_root.speed = 40;
}
this._x = this._x - _root.speed;
if (this._x <= -214) {
this._x = 680;
_root.clock++;
}
}
Instance of Symbol 227 MovieClip in Frame 3
onClipEvent (enterFrame) {
if ((((((((((((_root.clock == 5) || (_root.clock == 34)) || (_root.clock == 40)) || (_root.clock == 50)) || (_root.clock == 66)) || (_root.clock == 104)) || (_root.clock == 118)) || (_root.clock == 120)) || (_root.clock == 138)) || (_root.clock == 160)) || (_root.clock == 170)) || (_root.clock == 180)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 227 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (((((((((((((((((_root.clock == 12) || (_root.clock == 14)) || (_root.clock == 20)) || (_root.clock == 38)) || (_root.clock == 44)) || (_root.clock == 56)) || (_root.clock == 60)) || (_root.clock == 68)) || (_root.clock == 78)) || (_root.clock == 102)) || (_root.clock == 112)) || (_root.clock == 130)) || (_root.clock == 134)) || (_root.clock == 172)) || (_root.clock == 178)) || (_root.clock == 186)) || (_root.clock == 194)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 227 MovieClip in Frame 3
onClipEvent (enterFrame) {
if ((((((((((((_root.clock == 22) || (_root.clock == 28)) || (_root.clock == 54)) || (_root.clock == 64)) || (_root.clock == 72)) || (_root.clock == 74)) || (_root.clock == 76)) || (_root.clock == 110)) || (_root.clock == 136)) || (_root.clock == 162)) || (_root.clock == 168)) || (_root.clock == 176)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 227 MovieClip in Frame 3
onClipEvent (enterFrame) {
if ((((((((((((_root.clock == 9) || (_root.clock == 18)) || (_root.clock == 24)) || (_root.clock == 30)) || (_root.clock == 42)) || (_root.clock == 46)) || (_root.clock == 62)) || (_root.clock == 124)) || (_root.clock == 140)) || (_root.clock == 164)) || (_root.clock == 182)) || (_root.clock == 188)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 227 MovieClip in Frame 3
onClipEvent (enterFrame) {
if ((((((((_root.clock == 52) || (_root.clock == 108)) || (_root.clock == 114)) || (_root.clock == 128)) || (_root.clock == 138)) || (_root.clock == 174)) || (_root.clock == 190)) || (_root.clock == 196)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 227 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (((((((((((((_root.clock == 16) || (_root.clock == 26)) || (_root.clock == 36)) || (_root.clock == 48)) || (_root.clock == 58)) || (_root.clock == 70)) || (_root.clock == 100)) || (_root.clock == 106)) || (_root.clock == 116)) || (_root.clock == 122)) || (_root.clock == 126)) || (_root.clock == 184)) || (_root.clock == 192)) {
this._visible = true;
} else {
this._visible = false;
}
}
Frame 4
function Time() {
if (!_root.timing) {
if (_root.paused) {
_root.startTime = getTimer() - _root.elapsedTime;
} else {
_root.startTime = getTimer();
}
_root.paused = false;
_root.timing = true;
}
}
stop();
speed = 0;
acc = 1;
clock = 0;
run = 1;
stopit = false;
mori = 0;
go = true;
var timing = false;
var paused = false;
var remaining;
var elapsedTime;
var elapsedHours;
var elapsedM;
var elapsedS;
var elapsedH;
var startTime;
var remaining;
var hours;
var minutes;
var seconds;
var hundredths;
_root.stop_btn.onPress = function () {
_root.timing = false;
_root.paused = false;
_root.timer_txt = "00:00:00:00";
};
_root.pause_btn.onPress = function () {
if (_root.timing) {
_root.timing = false;
_root.paused = true;
}
};
_root.onEnterFrame = function () {
if (timing) {
elapsedTime = getTimer() - startTime;
elapsedHours = Math.floor(elapsedTime / 3600000);
remaining = elapsedTime - (elapsedHours * 3600000);
elapsedM = Math.floor(remaining / 60000);
remaining = remaining - (elapsedM * 60000);
elapsedS = Math.floor(remaining / 1000);
remaining = remaining - (elapsedS * 1000);
elapsedH = Math.floor(remaining / 10);
if (elapsedHours < 10) {
hours = "0" + elapsedHours.toString();
} else {
hours = elapsedHours.toString();
}
if (elapsedM < 10) {
minutes = "0" + elapsedM.toString();
} else {
minutes = elapsedM.toString();
}
if (elapsedS < 10) {
seconds = "0" + elapsedS.toString();
} else {
seconds = elapsedS.toString();
}
if (elapsedH < 10) {
hundredths = "0" + elapsedH.toString();
} else {
hundredths = elapsedH.toString();
}
_root.boomT = minutes + seconds;
_root.timer_txt = (((minutes + " : ") + seconds) + " : ") + hundredths;
}
if (hit == true) {
_root.sec = _root.boomT;
hit = false;
}
};
if (_root.go == true) {
Time();
}
fscommand ("allowscale", true);
Instance of Symbol 121 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_root.run != 0)) {
if (_root.speed < 10) {
_root.speed = _root.speed + (_root.acc / 4);
}
if ((_root.speed >= 10) && (_root.speed < 20)) {
_root.speed = _root.speed + (_root.acc / 2);
}
if ((_root.speed >= 20) && (_root.speed < 30)) {
_root.speed = _root.speed + _root.acc;
}
if (_root.speed >= 30) {
_root.speed = _root.speed + (_root.acc * 3);
}
} else {
_root.speed = _root.speed - 0.5;
}
if (Key.isDown(37)) {
_root.speed = _root.speed - 1;
}
if (_root.speed < 0) {
_root.speed = 0;
}
if (Math.abs(_root.speed) > 40) {
_root.speed = 40;
}
this._x = this._x - _root.speed;
if (this._x <= -214) {
this._x = 680;
_root.clock++;
_root.graph.gm._x++;
}
}
Instance of Symbol 225 MovieClip "car" in Frame 4
onClipEvent (enterFrame) {
if ((Key.isDown(39) && (this._x <= 35)) && (_root.run != 0)) {
this._x = this._x + 0.5;
}
if (((!Key.isDown(39)) && (this._x > 15)) && (_root.run != 0)) {
this._x = this._x - 0.5;
}
if ((Key.isDown(38) && (_root.car._y > 221)) && (_root.speed > 7)) {
this._y = this._y - 0.5;
}
if ((Key.isDown(40) && (_root.car._y < 341)) && (_root.speed > 7)) {
this._y = this._y + 0.5;
}
if (_root.car._y < 221) {
_root.car._y = 261;
}
if ((this._y <= 361) && (this._y > 341)) {
this.swapDepths(700);
}
if ((this._y <= 341) && (this._y > 321)) {
this.swapDepths(600);
}
if ((this._y <= 321) && (this._y > 301)) {
this.swapDepths(500);
}
if ((this._y <= 301) && (this._y > 281)) {
this.swapDepths(400);
}
if ((this._y <= 281) && (this._y > 261)) {
this.swapDepths(301);
}
if ((this._y <= 261) && (this._y > 241)) {
this.swapDepths(201);
}
if ((this._y <= 241) && (this._y > 221)) {
this.swapDepths(100);
}
}
Instance of Symbol 12 MovieClip [ob1] in Frame 4
onClipEvent (enterFrame) {
function Create(c, o, o1, xpos, ypos, depp) {
function Delete() {
if (_root.clock <= (c + 2)) {
this.removeMovieClip();
}
}
if (_root.clock == c) {
o = this.attachMovie(o1, "s", 0, {_x:xpos, _y:ypos});
o = this.swapDepths(depp);
o.onEnterFrame = Delete;
}
}
if (_root.stopit == false) {
_root.car.snd.start(0, 999999);
}
if (_root.speed <= 0) {
_root.car.snd.setVolume(0);
}
if ((_root.speed > 0) && (_root.speed <= 10)) {
_root.car.snd.setVolume(1);
}
if ((_root.speed <= 20) && (_root.speed > 10)) {
_root.car.snd.setVolume(2);
}
if ((_root.speed <= 30) && (_root.speed > 20)) {
_root.car.snd.setVolume(3);
}
if ((_root.speed <= 40) && (_root.speed > 30)) {
_root.car.snd.setVolume(4);
}
switch (_root.clock) {
case 5 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 261, 90);
break;
case 9 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 12 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 285, 200);
break;
case 14 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 16 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 600);
break;
case 18 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 325, 400);
break;
case 20 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 285, 200);
break;
case 22 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 24 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 26 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 600);
break;
case 28 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 305, 300);
break;
case 30 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 34 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 261, 90);
break;
case 36 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 361, 600);
break;
case 38 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 285, 200);
break;
case 40 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 42 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 44 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 285, 200);
break;
case 46 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 48 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 361, 600);
break;
case 50 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 261, 90);
break;
case 52 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 345, 450);
break;
case 54 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 56 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 285, 200);
break;
case 58 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 600);
break;
case 60 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 62 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 64 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 305, 300);
break;
case 66 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 68 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 285, 200);
break;
case 70 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 600);
break;
case 72 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 74 :
o.onEnterFrame = Create(_root.clock, mmct, "cauc", 800, 305, 300);
break;
case 76 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 78 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 100 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 600);
break;
case 102 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 285, 200);
break;
case 104 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 106 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 1001);
break;
case 108 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 345, 450);
break;
case 110 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 112 :
o.onEnterFrame = Create(_root.clock, cauc, "cauc", 800, 285, 200);
break;
case 114 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 345, 450);
break;
case 116 :
o.onEnterFrame = Create(_root.clock, mmct, "cauc", 800, 361, 600);
break;
case 118 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 120 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 122 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 600);
break;
case 124 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 126 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 601);
break;
case 128 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 345, 450);
break;
case 130 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 132 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 345, 450);
break;
case 134 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 136 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 138 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 140 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 160 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 162 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 164 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 168 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 170 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 172 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 174 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 345, 450);
break;
case 176 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 305, 300);
break;
case 178 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 180 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 261, 90);
break;
case 182 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 184 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 600);
break;
case 186 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 188 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 325, 400);
break;
case 190 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 345, 450);
break;
case 192 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 361, 600);
break;
case 194 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 285, 200);
break;
case 196 :
o.onEnterFrame = Create(_root.clock, mmct, "mmct", 800, 345, 450);
}
}
Instance of Symbol 227 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (((((((((((((((((((((_root.clock == 12) || (_root.clock == 14)) || (_root.clock == 20)) || (_root.clock == 38)) || (_root.clock == 44)) || (_root.clock == 56)) || (_root.clock == 60)) || (_root.clock == 68)) || (_root.clock == 78)) || (_root.clock == 102)) || (_root.clock == 112)) || (_root.clock == 130)) || (_root.clock == 134)) || (_root.clock == 172)) || (_root.clock == 178)) || (_root.clock == 186)) || (_root.clock == 194)) || (_root.clock == 121)) || (_root.clock == 131)) || (_root.clock == 161)) || (_root.clock == 170)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 227 MovieClip in Frame 4
onClipEvent (enterFrame) {
if ((((((((((((((((((((((((((((((((_root.clock == 22) || (_root.clock == 28)) || (_root.clock == 54)) || (_root.clock == 64)) || (_root.clock == 72)) || (_root.clock == 74)) || (_root.clock == 76)) || (_root.clock == 110)) || (_root.clock == 134)) || (_root.clock == 136)) || (_root.clock == 162)) || (_root.clock == 168)) || (_root.clock == 176)) || (_root.clock == 10)) || (_root.clock == 14)) || (_root.clock == 19)) || (_root.clock == 30)) || (_root.clock == 35)) || (_root.clock == 39)) || (_root.clock == 52)) || (_root.clock == 56)) || (_root.clock == 61)) || (_root.clock == 66)) || (_root.clock == 72)) || (_root.clock == 101)) || (_root.clock == 104)) || (_root.clock == 115)) || (_root.clock == 161)) || (_root.clock == 169)) || (_root.clock == 175)) || (_root.clock == 185)) || (_root.clock == 192)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 227 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (((((((((_root.clock == 52) || (_root.clock == 108)) || (_root.clock == 114)) || (_root.clock == 128)) || (_root.clock == 132)) || (_root.clock == 138)) || (_root.clock == 174)) || (_root.clock == 190)) || (_root.clock == 196)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 227 MovieClip in Frame 4
onClipEvent (enterFrame) {
if ((((((((((((((((((((((((((((((((((((((((((((_root.clock == 16) || (_root.clock == 26)) || (_root.clock == 36)) || (_root.clock == 48)) || (_root.clock == 58)) || (_root.clock == 70)) || (_root.clock == 100)) || (_root.clock == 106)) || (_root.clock == 116)) || (_root.clock == 122)) || (_root.clock == 126)) || (_root.clock == 184)) || (_root.clock == 192)) || (_root.clock == 16)) || (_root.clock == 21)) || (_root.clock == 26)) || (_root.clock == 45)) || (_root.clock == 59)) || (_root.clock == 68)) || (_root.clock == 76)) || (_root.clock == 103)) || (_root.clock == 107)) || (_root.clock == 116)) || (_root.clock == 120)) || (_root.clock == 135)) || (_root.clock == 163)) || (_root.clock == 171)) || (_root.clock == 176)) || (_root.clock == 179)) || (_root.clock == 70)) || (_root.clock == 79)) || (_root.clock == 102)) || (_root.clock == 145)) || (_root.clock == 155)) || (_root.clock == 166)) || (_root.clock == 182)) || (_root.clock == 15)) || (_root.clock == 119)) || (_root.clock == 164)) || (_root.clock == 196)) || (_root.clock == 31)) || (_root.clock == 105)) || (_root.clock == 180)) || (_root.clock == 190)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 257 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.swapDepths(10);
if ((_root.clock >= 20) && (_root.clock < 23)) {
this._x = this._x - _root.speed;
}
if (((((((((_root.clock == 25) || (_root.clock == 45)) || (_root.clock == 65)) || (_root.clock == 85)) || (_root.clock == 105)) || (_root.clock == 125)) || (_root.clock == 145)) || (_root.clock == 165)) || (_root.clock == 185)) {
this._x = 800;
}
if ((_root.clock >= 40) && (_root.clock < 43)) {
this._x = this._x - _root.speed;
}
if ((_root.clock >= 60) && (_root.clock < 63)) {
this._x = this._x - _root.speed;
}
if ((_root.clock >= 80) && (_root.clock < 83)) {
this._x = this._x - _root.speed;
}
if ((_root.clock >= 100) && (_root.clock < 103)) {
this._x = this._x - _root.speed;
}
if ((_root.clock >= 120) && (_root.clock < 123)) {
this._x = this._x - _root.speed;
}
if ((_root.clock >= 140) && (_root.clock < 143)) {
this._x = this._x - _root.speed;
}
if ((_root.clock >= 160) && (_root.clock < 163)) {
this._x = this._x - _root.speed;
}
if ((_root.clock >= 180) && (_root.clock < 183)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 19) {
_root.chk = 0;
}
if ((_root.car.hitTest(this) && (_root.clock < 23)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 20 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs1.gotoAndStop(2);
} else {
_root.graph.gs1.gotoAndStop(3);
}
}
if (_root.clock == 39) {
_root.chk = 0;
}
if (((_root.car.hitTest(this) && (_root.clock < 43)) && (_root.clock >= 40)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 40 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs2.gotoAndStop(2);
} else {
_root.graph.gs2.gotoAndStop(3);
}
}
if (_root.clock == 59) {
_root.chk = 0;
}
if (((_root.car.hitTest(this) && (_root.clock < 63)) && (_root.clock >= 60)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 60 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs3.gotoAndStop(2);
} else {
_root.graph.gs3.gotoAndStop(3);
}
}
if (_root.clock == 79) {
_root.chk = 0;
}
if (((_root.car.hitTest(this) && (_root.clock < 83)) && (_root.clock >= 80)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 80 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs4.gotoAndStop(2);
} else {
_root.graph.gs4.gotoAndStop(3);
}
}
if (_root.clock == 99) {
_root.chk = 0;
}
if (((_root.car.hitTest(this) && (_root.clock < 103)) && (_root.clock >= 100)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 100 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs5.gotoAndStop(2);
} else {
_root.graph.gs5.gotoAndStop(3);
}
}
if (_root.clock == 119) {
_root.chk = 0;
}
if (((_root.car.hitTest(this) && (_root.clock < 123)) && (_root.clock >= 120)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 120 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs6.gotoAndStop(2);
} else {
_root.graph.gs6.gotoAndStop(3);
}
}
if (_root.clock == 139) {
_root.chk = 0;
}
if (((_root.car.hitTest(this) && (_root.clock < 143)) && (_root.clock >= 140)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 140 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs7.gotoAndStop(2);
} else {
_root.graph.gs7.gotoAndStop(3);
}
}
if (_root.clock == 159) {
_root.chk = 0;
}
if (((_root.car.hitTest(this) && (_root.clock < 163)) && (_root.clock >= 160)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 160 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs8.gotoAndStop(2);
} else {
_root.graph.gs8.gotoAndStop(3);
}
}
if (_root.clock == 179) {
_root.chk = 0;
}
if (((_root.car.hitTest(this) && (_root.clock < 183)) && (_root.clock >= 180)) && (_root.chk == 0)) {
_root.chk = 1;
_root.primu = 180 + Math.abs(random(4));
_root.howm = _root.boomT - _root.primu;
if (_root.howm < 0) {
_root.graph.gs9.gotoAndStop(2);
} else {
_root.graph.gs9.gotoAndStop(3);
}
}
if (_root.clock == 199) {
_root.chk = 0;
}
}
Instance of Symbol 260 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.swapDepths(150);
this._y = 241;
if (_root.clock == 10) {
this._x = 900;
}
if ((_root.clock > 10) && (_root.clock < 13)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 14) {
this._x = 900;
}
if ((_root.clock > 14) && (_root.clock < 17)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 19) {
this._x = 900;
}
if ((_root.clock > 19) && (_root.clock < 22)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 30) {
this._x = 900;
}
if ((_root.clock > 30) && (_root.clock < 33)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 35) {
this._x = 900;
}
if ((_root.clock > 35) && (_root.clock < 38)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 39) {
this._x = 900;
}
if ((_root.clock > 39) && (_root.clock < 32)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 52) {
this._x = 900;
}
if ((_root.clock > 52) && (_root.clock < 55)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 56) {
this._x = 900;
}
if ((_root.clock > 56) && (_root.clock < 59)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 61) {
this._x = 900;
}
if ((_root.clock > 61) && (_root.clock < 64)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 66) {
this._x = 900;
}
if ((_root.clock > 66) && (_root.clock < 69)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 72) {
this._x = 900;
}
if ((_root.clock > 72) && (_root.clock < 75)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 101) {
this._x = 900;
}
if ((_root.clock > 101) && (_root.clock < 103)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 104) {
this._x = 900;
}
if ((_root.clock > 104) && (_root.clock < 107)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 115) {
this._x = 900;
}
if ((_root.clock > 115) && (_root.clock < 118)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 161) {
this._x = 900;
}
if ((_root.clock > 161) && (_root.clock < 164)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 169) {
this._x = 900;
}
if ((_root.clock > 169) && (_root.clock < 172)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 175) {
this._x = 900;
}
if ((_root.clock > 175) && (_root.clock < 178)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 185) {
this._x = 900;
}
if ((_root.clock > 185) && (_root.clock < 188)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 192) {
this._x = 900;
}
if ((_root.clock > 192) && (_root.clock < 195)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 198) {
this._x = 900;
}
}
Instance of Symbol 260 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.swapDepths(500);
this._y = 305;
if (_root.clock == 16) {
this._x = 900;
}
if ((_root.clock > 16) && (_root.clock < 19)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 21) {
this._x = 900;
}
if ((_root.clock > 21) && (_root.clock < 24)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 26) {
this._x = 900;
}
if ((_root.clock > 26) && (_root.clock < 29)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 45) {
this._x = 900;
}
if ((_root.clock > 45) && (_root.clock < 48)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 59) {
this._x = 900;
}
if ((_root.clock > 59) && (_root.clock < 62)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 68) {
this._x = 900;
}
if ((_root.clock > 68) && (_root.clock < 71)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 76) {
this._x = 900;
}
if ((_root.clock > 76) && (_root.clock < 79)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 103) {
this._x = 900;
}
if ((_root.clock > 103) && (_root.clock < 106)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 107) {
this._x = 900;
}
if ((_root.clock > 107) && (_root.clock < 110)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 116) {
this._x = 900;
}
if ((_root.clock > 116) && (_root.clock < 119)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 120) {
this._x = 900;
}
if ((_root.clock > 120) && (_root.clock < 123)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 135) {
this._x = 900;
}
if ((_root.clock > 135) && (_root.clock < 138)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 163) {
this._x = 900;
}
if ((_root.clock > 163) && (_root.clock < 166)) {
this._x = this._x - _root.speed;
}
if ((_root.clock > 135) && (_root.clock < 138)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 171) {
this._x = 900;
}
if ((_root.clock > 171) && (_root.clock < 174)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 176) {
this._x = 900;
}
if ((_root.clock > 176) && (_root.clock < 179)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 179) {
this._x = 900;
}
if ((_root.clock > 179) && (_root.clock < 183)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 198) {
this._x = 900;
}
}
Instance of Symbol 260 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.swapDepths(600);
this._y = 325;
if (_root.clock == 70) {
this._x = 900;
}
if ((_root.clock > 70) && (_root.clock < 73)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 79) {
this._x = 900;
}
if ((_root.clock > 79) && (_root.clock < 82)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 102) {
this._x = 900;
}
if ((_root.clock > 102) && (_root.clock < 105)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 145) {
this._x = 900;
}
if ((_root.clock > 145) && (_root.clock < 148)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 166) {
this._x = 900;
}
if ((_root.clock > 166) && (_root.clock < 169)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 182) {
this._x = 900;
}
if ((_root.clock > 182) && (_root.clock < 185)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 155) {
this._x = 900;
}
if ((_root.clock > 155) && (_root.clock < 158)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 198) {
this._x = 900;
}
}
Instance of Symbol 261 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.swapDepths(601);
this._y = 325;
if (_root.clock == 8) {
this._x = 900;
}
if ((_root.clock > 8) && (_root.clock < 13)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 15) {
this._x = 1000;
}
if ((_root.clock > 15) && (_root.clock < 18)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 119) {
this._x = 1000;
}
if ((_root.clock > 119) && (_root.clock < 122)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 164) {
this._x = 1000;
}
if ((_root.clock > 164) && (_root.clock < 167)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 196) {
this._x = 1000;
}
if ((_root.clock > 196) && (_root.clock < 199)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 200) {
this._x = 900;
}
}
Instance of Symbol 267 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.swapDepths(501);
this._y = 333;
if (_root.clock == 31) {
this._x = 800;
}
if ((_root.clock > 31) && (_root.clock < 34)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 105) {
this._x = 800;
}
if ((_root.clock > 105) && (_root.clock < 108)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 180) {
this._x = 800;
}
if ((_root.clock > 180) && (_root.clock < 183)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 190) {
this._x = 800;
}
if ((_root.clock > 190) && (_root.clock < 191)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 198) {
this._x = 800;
}
}
Instance of Symbol 267 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.swapDepths(200);
this._y = 252;
if (_root.clock == 121) {
this._x = 800;
}
if ((_root.clock > 121) && (_root.clock < 124)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 131) {
this._x = 800;
}
if ((_root.clock > 131) && (_root.clock < 134)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 161) {
this._x = 800;
}
if ((_root.clock > 161) && (_root.clock < 164)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 170) {
this._x = 800;
}
if ((_root.clock > 170) && (_root.clock < 173)) {
this._x = this._x - _root.speed;
}
if (_root.clock == 198) {
this._x = 800;
}
}
Instance of Symbol 269 MovieClip in Frame 4
onClipEvent (enterFrame) {
this.swapDepths(10);
if (_root.clock >= 200) {
this._x = this._x - _root.speed;
}
if ((_root.car.hitTest(this) && (_root.clock >= 200)) && (_root.chk == 0)) {
_root.chk = 1;
_root.finalT = _root.boomT;
this.gotoAndPlay(2);
}
}
Frame 6
stop();
_root.car._visible = false;
_root.john = 200 + Math.abs(random(4));
_root.larry = 216 + Math.abs(random(4));
_root.frank = 295 + Math.abs(random(4));
_root.joe = 255 + Math.abs(random(4));
_root.peter = 262 + Math.abs(random(4));
_root.jim = 276 + Math.abs(random(4));
_root.chris = 284 + Math.abs(random(4));
_root.alan = 296 + Math.abs(random(4));
_root.steve = 310 + Math.abs(random(4));
if (_root.finalT <= _root.john) {
_root.numb = 1;
_root.t1 = "you";
_root.ti1 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti1 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t2 = "john";
_root.ti2 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t3 = "larry";
_root.ti3 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t4 = "frank";
_root.ti4 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t5 = "joe";
_root.ti5 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t6 = "peter";
_root.ti6 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t7 = "jim";
_root.ti7 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t8 = "chris";
_root.ti8 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t9 = "alan";
_root.ti9 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if ((_root.finalT <= _root.larry) && (_root.finalT > _root.john)) {
_root.numb = 2;
_root.t2 = "you";
_root.ti2 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti2 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t3 = "larry";
_root.ti3 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t4 = "frank";
_root.ti4 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t5 = "joe";
_root.ti5 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t6 = "peter";
_root.ti6 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t7 = "jim";
_root.ti7 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t8 = "chris";
_root.ti8 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t9 = "alan";
_root.ti9 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if ((_root.finalT <= _root.frank) && (_root.finalT > _root.larry)) {
_root.numb = 3;
_root.t3 = "you";
_root.ti3 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti3 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t2 = "larry";
_root.ti2 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t4 = "frank";
_root.ti4 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t5 = "joe";
_root.ti5 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t6 = "peter";
_root.ti6 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t7 = "jim";
_root.ti7 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t8 = "chris";
_root.ti8 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t9 = "alan";
_root.ti9 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if ((_root.finalT <= _root.joe) && (_root.finalT > _root.frank)) {
_root.numb = 4;
_root.t4 = "you";
_root.ti4 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti4 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t2 = "larry";
_root.ti2 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t3 = "frank";
_root.ti3 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t5 = "joe";
_root.ti5 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t6 = "peter";
_root.ti6 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t7 = "jim";
_root.ti7 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t8 = "chris";
_root.ti8 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t9 = "alan";
_root.ti9 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if ((_root.finalT <= _root.peter) && (_root.finalT > _root.joe)) {
_root.numb = 5;
_root.t5 = "you";
_root.ti5 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti5 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t2 = "larry";
_root.ti2 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t3 = "frank";
_root.ti3 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t4 = "joe";
_root.ti4 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t6 = "peter";
_root.ti6 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t7 = "jim";
_root.ti7 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t8 = "chris";
_root.ti8 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t9 = "alan";
_root.ti9 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if ((_root.finalT <= _root.jim) && (_root.finalT > _root.peter)) {
_root.numb = 6;
_root.t6 = "you";
_root.ti6 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti6 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t2 = "larry";
_root.ti2 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t3 = "frank";
_root.ti3 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t4 = "joe";
_root.ti4 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t5 = "peter";
_root.ti5 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t7 = "jim";
_root.ti7 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t8 = "chris";
_root.ti8 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t9 = "alan";
_root.ti9 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if ((_root.finalT <= _root.chris) && (_root.finalT > _root.jim)) {
_root.numb = 7;
_root.t7 = "you";
_root.ti7 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti7 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t2 = "larry";
_root.ti2 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t3 = "frank";
_root.ti3 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t4 = "joe";
_root.ti4 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t5 = "peter";
_root.ti5 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t6 = "jim";
_root.ti6 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t8 = "chris";
_root.ti8 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t9 = "alan";
_root.ti9 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if ((_root.finalT <= _root.alan) && (_root.finalT > _root.chris)) {
_root.numb = 8;
_root.t8 = "you";
_root.ti8 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti8 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t2 = "larry";
_root.ti2 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t3 = "frank";
_root.ti3 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t4 = "joe";
_root.ti4 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t5 = "peter";
_root.ti5 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t6 = "jim";
_root.ti6 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t7 = "chris";
_root.ti7 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t9 = "alan";
_root.ti9 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if ((_root.finalT <= _root.steve) && (_root.finalT > _root.alan)) {
_root.numb = 9;
_root.t9 = "you";
_root.ti9 = (((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60);
if ((_root.finalT % 60) < 10) {
_root.ti9 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t2 = "larry";
_root.ti2 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t3 = "frank";
_root.ti3 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t4 = "joe";
_root.ti4 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t5 = "peter";
_root.ti5 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t6 = "jim";
_root.ti6 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t7 = "chris";
_root.ti7 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t8 = "alan";
_root.ti8 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t10 = "steve";
_root.ti10 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
if (_root.finalT > _root.steve) {
_root.numb = 10;
_root.t10 = "you";
_root.ti10 == ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + (_root.finalT % 60));
if ((_root.finalT % 60) < 10) {
_root.ti10 = ((((_root.finalT - (_root.finalT % 60)) / 60) + ":") + "0") + (_root.finalT % 60);
}
_root.t1 = "john";
_root.ti1 = (((_root.john - (_root.john % 60)) / 60) + ":") + (_root.john % 60);
_root.t2 = "larry";
_root.ti2 = (((_root.larry - (_root.larry % 60)) / 60) + ":") + (_root.larry % 60);
_root.t3 = "frank";
_root.ti3 = (((_root.frank - (_root.frank % 60)) / 60) + ":") + (_root.frank % 60);
_root.t4 = "joe";
_root.ti4 = (((_root.joe - (_root.joe % 60)) / 60) + ":") + (_root.joe % 60);
_root.t5 = "peter";
_root.ti5 = (((_root.peter - (_root.peter % 60)) / 60) + ":") + (_root.peter % 60);
_root.t6 = "jim";
_root.ti6 = (((_root.jim - (_root.jim % 60)) / 60) + ":") + (_root.jim % 60);
_root.t7 = "chris";
_root.ti7 = (((_root.chris - (_root.chris % 60)) / 60) + ":") + (_root.chris % 60);
_root.t8 = "alan";
_root.ti8 = (((_root.alan - (_root.alan % 60)) / 60) + ":") + (_root.alan % 60);
_root.t9 = "steve";
_root.ti9 = (((_root.steve - (_root.steve % 60)) / 60) + ":") + (_root.steve % 60);
}
Frame 7
stop();
Instance of Symbol 307 MovieClip in Frame 7
onClipEvent (enterFrame) {
this.swapDepths(10000);
}
Frame 8
stop();
Instance of Symbol 12 MovieClip [ob1] in Symbol 13 MovieClip [sJ] Frame 1
onClipEvent (enterFrame) {
if ((_root.speed > 10) && (_root.speed < 20)) {
if (_root.car.fwl.hitTest(this)) {
_root.car._rotation = -3;
_root.car._y = _root.car._y - (_root.speed / 8);
g = 1;
}
if ((g == 1) && (!_root.car.fwl.hitTest(this))) {
_root.car._rotation = 0;
}
if (_root.car.bwl.hitTest(this)) {
_root.car._rotation = 3;
_root.car._y = _root.car._y + (_root.speed / 8);
g = 2;
}
if ((g == 2) && (!_root.car.bwl.hitTest(this))) {
_root.car._rotation = 0;
g = 0;
}
}
if (_root.speed > 20) {
if (_root.car.fwl.hitTest(this)) {
_root.car._rotation = -5;
_root.car._y = _root.car._y - (_root.speed / 2);
g = 1;
}
if (_root.car.bwl.hitTest(this)) {
_root.car._rotation = 5;
_root.car._y = _root.car._y + (_root.speed / 2);
g = 2;
}
if ((g == 2) && (!_root.car.bwl.hitTest(this))) {
_root.car._rotation = 0;
g = 0;
}
}
}
Instance of Symbol 16 MovieClip in Symbol 17 MovieClip [bd1] Frame 1
onClipEvent (enterFrame) {
this._x = this._x - _root.speed;
}
Instance of Symbol 22 MovieClip in Symbol 23 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.car.hitZone)) {
crash.start(0, 1);
_root.run = 0;
_root.hit = true;
_root.secHit = true;
_root.act_location = _root.car._y;
if ((_root.speed <= 20) && (_root.stare == 0)) {
_root.car.in_car.gotoAndStop(2);
}
if ((_root.speed <= 20) && (_root.stare == 1)) {
_root.car.in_car.gotoAndStop(3);
}
if ((_root.speed <= 20) && (_root.stare == 2)) {
_root.car.in_car.gotoAndStop(4);
}
if ((_root.speed <= 20) && (_root.stare == 4)) {
_root.car.in_car.gotoAndStop(5);
}
if ((((_root.speed > 20) && (_root.speed < 30)) && (_root.stare > 0)) && (_root.stare < 4)) {
_root.car.in_car.gotoAndStop(5);
}
if (((_root.speed <= 35) && (_root.speed >= 20)) && (_root.stare == 0)) {
_root.car.in_car.gotoAndStop(4);
}
if (((_root.speed <= 35) && (_root.speed >= 20)) && (_root.stare != 0)) {
_root.car.in_car.gotoAndStop(4);
}
if (_root.speed > 35) {
_root.car.in_car.gotoAndStop(5);
}
_root.speed = -10;
}
if ((((_root.boomT - 2) == _root.sec) && (_root.secHit == true)) && (_root.stare != 4)) {
_root.car._y = _root.act_location - 20;
_root.car.blink._visible = true;
}
if (((_root.boomT - 5) == _root.sec) && (_root.stare != 4)) {
_root.car._alpha = 100;
_root.car.blink._visible = false;
_root.run = 1;
}
}
Instance of Symbol 23 MovieClip in Symbol 24 MovieClip [cauc] Frame 1
onClipEvent (enterFrame) {
this._x = this._x - _root.speed;
}
Instance of Symbol 22 MovieClip in Symbol 27 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.car.hitZone)) {
_root.run = 0;
_root.hit = true;
_root.secHit = true;
_root.act_location = _root.car._y;
if ((_root.speed <= 20) && (_root.stare == 0)) {
_root.car.in_car.gotoAndStop(2);
}
if ((_root.speed <= 20) && (_root.stare == 1)) {
_root.car.in_car.gotoAndStop(3);
}
if ((_root.speed <= 20) && (_root.stare == 2)) {
_root.car.in_car.gotoAndStop(4);
}
if ((_root.speed <= 20) && (_root.stare == 4)) {
_root.car.in_car.gotoAndStop(5);
}
if ((((_root.speed > 20) && (_root.speed < 30)) && (_root.stare > 0)) && (_root.stare < 4)) {
_root.car.in_car.gotoAndStop(5);
}
if (((_root.speed <= 35) && (_root.speed >= 20)) && (_root.stare == 0)) {
_root.car.in_car.gotoAndStop(4);
}
if (((_root.speed <= 35) && (_root.speed >= 20)) && (_root.stare != 0)) {
_root.car.in_car.gotoAndStop(4);
}
if (_root.speed > 35) {
_root.car.in_car.gotoAndPlay(5);
}
_root.speed = -10;
}
if ((((_root.boomT - 2) == _root.sec) && (_root.secHit == true)) && (_root.stare != 4)) {
_root.car._y = _root.act_location - 20;
_root.car.blink._visible = true;
}
if (((_root.boomT - 5) == _root.sec) && (_root.stare != 4)) {
_root.car._alpha = 100;
_root.car.blink._visible = false;
_root.run = 1;
}
}
Instance of Symbol 27 MovieClip in Symbol 28 MovieClip [mmct] Frame 1
onClipEvent (enterFrame) {
this._x = this._x - _root.speed;
}
Instance of Symbol 31 MovieClip in Symbol 32 MovieClip [bw] Frame 1
onClipEvent (enterFrame) {
this._x = this._x - _root.speed;
}
Symbol 43 MovieClip Frame 87
_root.fscreen.gotoAndPlay(2);
Symbol 46 MovieClip Frame 19
stop();
Symbol 56 Button
on (press) {
gotoAndPlay (3);
}
Symbol 58 Button
on (press) {
_root.gotoAndPlay(3);
_root.pressed = true;
fis.stop();
}
Symbol 62 Button
on (press) {
getURL ("http://arcadelots.com/");
}
Instance of Symbol 83 MovieClip in Symbol 87 MovieClip Frame 1
onClipEvent (enterFrame) {
this._rotation = _root.speed * 6.7;
}
Symbol 90 MovieClip Frame 1
stop();
Symbol 90 MovieClip Frame 2
stop();
Symbol 90 MovieClip Frame 3
stop();
Symbol 105 MovieClip Frame 1
stop();
Symbol 105 MovieClip Frame 2
stop();
Symbol 105 MovieClip Frame 3
stop();
Symbol 123 MovieClip Frame 1
if (_root.car.blink._visible == true) {
_root.car._alpha = 100;
}
Symbol 123 MovieClip Frame 4
if (_root.car.blink._visible == true) {
_root.car._alpha = 10;
}
Symbol 159 MovieClip Frame 30
gotoAndPlay (7);
Symbol 170 MovieClip Frame 27
gotoAndPlay (16);
Symbol 178 MovieClip Frame 18
gotoAndPlay (10);
Symbol 194 MovieClip Frame 24
gotoAndPlay (16);
Symbol 200 MovieClip Frame 5
stop();
Symbol 204 MovieClip Frame 5
stop();
Symbol 205 MovieClip Frame 1
Instance of Symbol 196 MovieClip in Symbol 205 MovieClip Frame 1
/* no clip actions */
Symbol 205 MovieClip Frame 39
stop();
_root.gotoAndPlay(7);
Symbol 206 MovieClip Frame 1
stop();
_root.stare = 0;
Instance of Symbol 145 MovieClip in Symbol 206 MovieClip Frame 1
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (_root.clock <= 20) {
this._alpha = _root.clock * 5;
}
}
Symbol 206 MovieClip Frame 2
stop();
_root.stare = 1;
Symbol 206 MovieClip Frame 3
stop();
_root.stare = 2;
Instance of Symbol 159 MovieClip in Symbol 206 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.speed <= 10) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 170 MovieClip in Symbol 206 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.speed > 30) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 159 MovieClip in Symbol 206 MovieClip Frame 3
onClipEvent (enterFrame) {
if ((_root.speed > 10) && (_root.speed <= 20)) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 178 MovieClip in Symbol 206 MovieClip Frame 3
onClipEvent (enterFrame) {
if ((_root.speed > 20) && (_root.speed <= 30)) {
this._visible = true;
} else {
this._visible = false;
}
}
Symbol 206 MovieClip Frame 4
stop();
_root.stare = 3;
Symbol 206 MovieClip Frame 5
_root.stare = 4;
stop();
Instance of Symbol 205 MovieClip "wheel" in Symbol 206 MovieClip Frame 5
onClipEvent (enterFrame) {
_root.mori = 1;
}
Instance of Symbol 209 MovieClip in Symbol 210 MovieClip Frame 1
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
if (_root.clock <= 20) {
this._alpha = _root.clock * 5;
}
}
Symbol 224 MovieClip Frame 1
stop();
Symbol 224 MovieClip Frame 2
stop();
Symbol 224 MovieClip Frame 3
stop();
Symbol 224 MovieClip Frame 4
stop();
Symbol 225 MovieClip Frame 1
snd = new Sound(this);
snd.attachSound("eng");
Instance of Symbol 123 MovieClip "blink" in Symbol 225 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 210 MovieClip "fwl" in Symbol 225 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.speed == 0) {
this._rotation = 0;
}
if (_root.speed < 10) {
this._rotation = this._rotation + 10;
}
if ((_root.speed > 10) && (_root.speed < 20)) {
this._rotation = this._rotation + 15;
}
if (_root.speed > 20) {
this._rotation = this._rotation + 20;
}
if (!Key.isDown(39)) {
this._rotation = this._rotation - 0.5;
}
if (_root.stare == 4) {
this._visible = false;
}
}
Instance of Symbol 210 MovieClip "bwl" in Symbol 225 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.speed == 0) {
this._rotation = 0;
}
if (_root.speed < 10) {
this._rotation = this._rotation + 10;
}
if ((_root.speed > 10) && (_root.speed < 20)) {
this._rotation = this._rotation + 15;
}
if (_root.speed > 20) {
this._rotation = this._rotation + 20;
}
if (!Key.isDown(39)) {
this._rotation = this._rotation - 0.5;
}
}
Instance of Symbol 224 MovieClip "sand" in Symbol 225 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.speed == 0) {
this.gotoAndPlay(1);
}
if ((_root.speed > 0) && (_root.speed < 15)) {
this.gotoAndPlay(2);
}
if ((_root.speed > 15) && (_root.speed < 35)) {
this.gotoAndPlay(3);
}
if (_root.speed > 35) {
this.gotoAndPlay(4);
}
}
Symbol 242 MovieClip Frame 25
_root.puck.start(0, 1);
Symbol 242 MovieClip Frame 48
_root.puck.start(0, 1);
Symbol 242 MovieClip Frame 73
_root.puck.start(0, 1);
Symbol 242 MovieClip Frame 97
_root.rolz.start(0, 1);
Symbol 242 MovieClip Frame 98
_root.gotoAndPlay(4);
Symbol 242 MovieClip Frame 149
stop();
Symbol 246 Button
on (press) {
getURL ("http://arcadelots.com/");
}
Symbol 248 Button
on (press) {
gotoAndPlay (1);
}
Symbol 250 Button
on (press) {
gotoAndPlay (1);
puck.setVolume(100);
rolz.setVolume(20);
}
Symbol 252 MovieClip Frame 1
stop();
_root.stopit = false;
_root.sk2.setVolume(30);
_root.sk2.start(0, 5000);
Symbol 252 MovieClip Frame 2
stop();
stopAllSounds();
_root.car.snd.stop();
_root.stopit = true;
Instance of Symbol 22 MovieClip in Symbol 259 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.car.hitZone)) {
_root.run = 0;
_root.hit = true;
_root.secHit = true;
if ((_root.speed <= 20) && (_root.stare == 0)) {
_root.car.in_car.gotoAndStop(2);
}
if ((_root.speed <= 20) && (_root.stare == 1)) {
_root.car.in_car.gotoAndStop(3);
}
if ((_root.speed <= 20) && (_root.stare == 2)) {
_root.car.in_car.gotoAndStop(4);
}
if ((_root.speed <= 20) && (_root.stare == 4)) {
_root.car.in_car.gotoAndStop(5);
}
if ((((_root.speed > 20) && (_root.speed < 30)) && (_root.stare > 0)) && (_root.stare < 4)) {
_root.car.in_car.gotoAndStop(5);
}
if (((_root.speed <= 35) && (_root.speed >= 20)) && (_root.stare == 0)) {
_root.car.in_car.gotoAndStop(4);
}
if (((_root.speed <= 35) && (_root.speed >= 20)) && (_root.stare != 0)) {
_root.car.in_car.gotoAndStop(4);
}
if (_root.speed > 35) {
_root.car.in_car.gotoAndStop(5);
}
_root.speed = -10;
}
if ((((_root.boomT - 2) == _root.sec) && (_root.secHit == true)) && (_root.stare != 4)) {
_root.car._y = _root.act_location - 30;
_root.car.blink._visible = true;
}
if (((_root.boomT - 5) == _root.sec) && (_root.stare != 4)) {
_root.car._alpha = 100;
_root.car.blink._visible = false;
_root.run = 1;
}
}
Instance of Symbol 22 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.car.hitZone)) {
_root.run = 0;
_root.hit = true;
_root.secHit = true;
if ((_root.speed <= 20) && (_root.stare == 0)) {
_root.car.in_car.gotoAndStop(2);
}
if ((_root.speed <= 20) && (_root.stare == 1)) {
_root.car.in_car.gotoAndStop(3);
}
if ((_root.speed <= 20) && (_root.stare == 2)) {
_root.car.in_car.gotoAndStop(4);
}
if ((_root.speed <= 20) && (_root.stare == 4)) {
_root.car.in_car.gotoAndStop(5);
}
if ((((_root.speed > 20) && (_root.speed < 30)) && (_root.stare > 0)) && (_root.stare < 4)) {
_root.car.in_car.gotoAndStop(5);
}
if (((_root.speed <= 35) && (_root.speed >= 20)) && (_root.stare == 0)) {
_root.car.in_car.gotoAndStop(4);
}
if (((_root.speed <= 35) && (_root.speed >= 20)) && (_root.stare != 0)) {
_root.car.in_car.gotoAndStop(4);
}
if (_root.speed > 35) {
_root.car.in_car.gotoAndStop(5);
}
_root.speed = -10;
}
if ((((_root.boomT - 2) > _root.sec) && (_root.secHit == true)) && (_root.stare != 4)) {
_root.car._y = _root.act_location - 20;
_root.car.blink._visible = true;
if ((_root.boomT - 5) > _root.sec) {
_root.car._alpha = 100;
_root.car.blink._visible = false;
_root.sec = 60000;
_root.run = 1;
}
}
}
Symbol 269 MovieClip Frame 1
stop();
Symbol 269 MovieClip Frame 10
_root.gotoAndPlay(6);