Frame 1
fscommand ("showmenu", false);
Frame 151
gotoAndPlay (1);
Frame 155
stop();
Frame 156
gotoAndStop (1);
Frame 171
stop();
Frame 172
gotoAndStop (171);
Frame 180
stop();
Frame 190
stopAllSounds();
Instance of Symbol 260 MovieClip "mainclouds" in Frame 647
onClipEvent (load) {
cloud.duplicateMovieClip("cloud2", 100);
cloud2._x = cloud._x + cloud._width;
cloudStartx = this._x;
cloudSpeed = 1;
}
onClipEvent (enterFrame) {
this._x = this._x - cloudSpeed;
if (this._x <= (cloudStartx - cloud._width)) {
this._x = cloudStartx - cloudSpeed;
}
}
Frame 783
stop();
Set("/:go", "menuintro");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
Frame 813
stop();
var /:go;
Frame 814
gotoAndStop (813);
Frame 824
Set("/:go", null);
stop();
Frame 825
gotoAndStop (824);
Frame 835
Set("/:go", null);
stop();
Frame 836
gotoAndStop (835);
Frame 845
stop();
var /:difficulty;
Frame 846
gotoAndStop (845);
Frame 851
stopAllSounds();
if (/:difficulty == "easy") {
Set("/:time", "40");
} else if (/:difficulty == "norm") {
Set("/:time", "20");
} else if (/:difficulty == "hard") {
Set("/:time", "7");
}
Frame 887
stop();
var /:elephants;
var /:elephant1;
var /:elephant2;
var /:elephant3;
var /:elephant4;
var /:elephant5;
var /:elephant6;
var /:elephant7;
var /:elephant8;
var /:elephant9;
var /:score;
var /:ped1;
var /:ped2;
var /:pedscore;
var /:movname;
var /:highscore;
var /:drop;
var /:fuel;
var /:from;
var /:landcrash;
Set("/:landcrash", "0");
var /:finalscore;
var /:rotation;
var /:speed;
var /:rating;
var /:time;
var /:writediff;
var /:carx;
var /:cary;
var /:level;
Set("/:level", "1");
var /:level1time;
var /:level2time;
var /:pedadder;
var /:crashadder;
var /:totaltime;
var /:totalcrash;
var /:totalped;
var /:score1;
var /:score2;
var /:totalscore;
setProperty("car", _rotation , /:rotation);
if (/:from == "track2") {
setProperty("car", _x , "100");
setProperty("car", _y , "380");
} else if (/:from == "track3") {
setProperty("car", _x , "540");
setProperty("car", _y , "140");
}
Instance of Symbol 508 MovieClip "car" in Frame 887
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.land.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
stopAllSounds();
tellTarget ("_root.engine_noises") {
gotoAndPlay ("crash");
};
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 887
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 888
gotoAndStop (887);
Frame 894
stop();
setProperty("car", _rotation , /:rotation);
Instance of Symbol 508 MovieClip "car" in Frame 894
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.land.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 894
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 895
gotoAndStop (894);
Frame 908
stop();
setProperty("car", _rotation , /:rotation);
Instance of Symbol 508 MovieClip "car" in Frame 908
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.land.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 908
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 909
gotoAndStop (908);
Frame 918
stopAllSounds();
Set("/:finalscore", /:score + /:time);
Set("/:level1time", /:time);
Set("/:crashadder", /:landcrash);
Set("/:score1", /:finalscore);
Frame 919
stop();
Frame 923
gotoAndStop (918);
Frame 928
stopAllSounds();
play();
Frame 929
stop();
Frame 936
gotoAndStop (928);
Frame 1105
gotoAndPlay (1115);
Frame 1115
stopAllSounds();
if (/:difficulty == "easy") {
Set("/:time", "70");
} else if (/:difficulty == "norm") {
Set("/:time", "40");
} else if (/:difficulty == "hard") {
Set("/:time", "20");
}
Frame 1156
stop();
Set("/:level", "2");
setProperty("car", _rotation , /:rotation);
if (/:from == "track2") {
setProperty("car", _x , "100");
setProperty("car", _y , "380");
} else if (/:from == "track3") {
setProperty("car", _x , "540");
setProperty("car", _y , "140");
}
Instance of Symbol 508 MovieClip "car" in Frame 1156
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.land.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
stopAllSounds();
tellTarget ("_root.engine_noises") {
gotoAndPlay ("crash");
};
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 1156
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 1157
gotoAndStop (1156);
Frame 1163
stop();
setProperty("car", _rotation , /:rotation);
Instance of Symbol 508 MovieClip "car" in Frame 1163
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.land2.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 1163
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 1164
gotoAndStop (1163);
Frame 1177
stop();
setProperty("car", _rotation , /:rotation);
Instance of Symbol 508 MovieClip "car" in Frame 1177
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
Set("/:carx", _x + x);
Set("/:cary", _y + y);
if (!_root.land3.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
stopAllSounds();
tellTarget ("_root.engine_noises") {
gotoAndPlay ("crash");
};
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 1177
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 1178
gotoAndStop (1177);
Frame 1187
stopAllSounds();
Set("/:finalscore", /:score + /:time);
Set("/:level2time", /:time);
Set("/:crashadder", /:landcrash);
Set("/:pedadder", /:pedscore);
Set("/:score2", /:finalscore);
Frame 1188
stop();
Frame 1192
gotoAndStop (1187);
Frame 1197
stopAllSounds();
play();
Frame 1198
stop();
Frame 1207
gotoAndStop (1197);
Frame 1370
gotoAndPlay (1529);
Frame 1529
stopAllSounds();
if (/:difficulty == "easy") {
Set("/:time", "90");
} else if (/:difficulty == "norm") {
Set("/:time", "60");
} else if (/:difficulty == "hard") {
Set("/:time", "37");
}
Frame 1565
stop();
Set("/:level", "3");
setProperty("car", _rotation , /:rotation);
if (/:from == "track2") {
setProperty("car", _x , "100");
setProperty("car", _y , "380");
} else if (/:from == "track3") {
setProperty("car", _x , "540");
setProperty("car", _y , "140");
}
if (/:score == "3") {
stopAllSounds();
gotoAndPlay (1565);
}
Instance of Symbol 508 MovieClip "car" in Frame 1565
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.land.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
stopAllSounds();
tellTarget ("_root.engine_noises") {
gotoAndPlay ("crash");
};
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 1565
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 1566
gotoAndStop (1565);
Frame 1572
stop();
setProperty("car", _rotation , /:rotation);
Instance of Symbol 508 MovieClip "car" in Frame 1572
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.land2.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
stopAllSounds();
tellTarget ("_root.engine_noises") {
gotoAndPlay ("crash");
};
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 1572
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 1573
gotoAndStop (1572);
Frame 1586
stop();
setProperty("car", _rotation , /:rotation);
Instance of Symbol 508 MovieClip "car" in Frame 1586
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
speed = speed + 1;
}
if (Key.isDown(40) and (/:speed > -8)) {
speed = speed - 1;
}
Set("/:rotation", _rotation);
Set("/:speed", speed);
if (Math.abs(speed) > 20) {
speed = speed * 0.7;
}
if (Key.isDown(37) and (/:speed > 1)) {
_rotation = (_rotation - 15);
} else if (Key.isDown(37) and (/:speed < -1)) {
_rotation = (_rotation + 15);
}
if (Key.isDown(39) and (/:speed > 1)) {
_rotation = (_rotation + 15);
} else if (Key.isDown(39) and (/:speed < -1)) {
_rotation = (_rotation - 15);
}
if ((Key.isDown(32) and Key.isDown(37)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation - 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if ((Key.isDown(32) and Key.isDown(39)) and ((/:speed > 15) or (/:speed < -7))) {
_rotation = (_rotation + 15);
speed = speed * 0.7;
Set("/:handbrake", "on");
} else if (Key.isDown(32)) {
speed = speed * 0.7;
Set("/:handbrake", "on");
} else {
Set("/:handbrake", "off");
}
speed = speed * 0.98;
x = Math.sin(_rotation * (Math.PI/180)) * speed;
y = (Math.cos(_rotation * (Math.PI/180)) * speed) * -1;
if (!_root.land3.hitTest(_x + x, _y + y, true)) {
_x = (_x + x);
_y = (_y + y);
} else {
speed = speed * -0.6;
/:landcrash++;
stopAllSounds();
tellTarget ("_root.engine_noises") {
gotoAndPlay ("crash");
};
/:score--;
tellTarget ("_root.displayscore.-1") {
gotoAndPlay ("-1");
};
}
}
Instance of Symbol 510 MovieClip in Frame 1586
onClipEvent (load) {
tellTarget ("_root.car") {
speed = /:speed;
};
}
Frame 1587
gotoAndStop (1586);
Frame 1596
stopAllSounds();
Set("/:finalscore", /:score + /:time);
Set("/:totalscore", (/:score1 + /:score2) + /:finalscore);
Set("/:totaltime", (/:level1time + /:level2time) + /:time);
Set("/:totalped", /:pedadder + /:pedscore);
Set("/:totalcrash", /:crashadder + /:landcrash);
if (/:difficulty == "hard") {
Set("/:writediff", "Hard");
} else if (/:difficulty == "norm") {
Set("/:writediff", "Norm");
} else if (/:difficulty == "easy") {
Set("/:writediff", "Easy");
}
if (/:difficulty == "hard") {
if (/:totalscore > "609") {
Set("/:rating", "1# ULTIMATE MINI DRIVER OF FUN AND FROLICS!");
} else if (/:totalscore > "604") {
Set("/:rating", "2# Marvellous Mini Driver!");
} else if (/:totalscore > "599") {
Set("/:rating", "3# Mediocre Mini Driver!");
} else if (/:totalscore > "594") {
Set("/:rating", "4# Not Bad Mini Driver!");
} else if (/:totalscore > "589") {
Set("/:rating", "5# Poor Mini Driver!");
} else if (/:totalscore > "584") {
Set("/:rating", "6# Turdy Numpty Mini Driver!");
} else if (/:totalscore > "579") {
Set("/:rating", "7# Complete Pants... you shud go away and cry!");
} else if (/:totalscore < "580") {
Set("/:rating", "8# Are you joking?!! You're Dangerously Incompetent!");
}
} else if (/:difficulty == "norm") {
if (/:totalscore > "665") {
Set("/:rating", "1# ULTIMATE MINI DRIVER OF FUN AND FROLICS!");
} else if (/:totalscore > "655") {
Set("/:rating", "2# Marvellous Mini Driver!");
} else if (/:totalscore > "645") {
Set("/:rating", "3# Mediocre Mini Driver!");
} else if (/:totalscore > "630") {
Set("/:rating", "4# Not Bad Mini Driver!");
} else if (/:totalscore > "625") {
Set("/:rating", "5# Poor Mini Driver!");
} else if (/:totalscore > "620") {
Set("/:rating", "6# Turdy Numpty Mini Driver!");
} else if (/:totalscore > "615") {
Set("/:rating", "7# Complete Pants... you shud go away and cry!");
} else if (/:totalscore < "616") {
Set("/:rating", "8# Are you joking?!! You're Dangerously Incompetent!");
}
} else if (/:difficulty == "easy") {
if (/:totalscore > "745") {
Set("/:rating", "1# ULTIMATE MINI DRIVER OF FUN AND FROLICS!");
} else if (/:totalscore > "730") {
Set("/:rating", "2# Marvellous Mini Driver!");
} else if (/:totalscore > "715") {
Set("/:rating", "3# Mediocre Mini Driver!");
} else if (/:totalscore > "700") {
Set("/:rating", "4# Not Bad Mini Driver!");
} else if (/:totalscore > "670") {
Set("/:rating", "5# Poor Mini Driver!");
} else if (/:totalscore > "640") {
Set("/:rating", "6# Turdy Numpty Mini Driver!");
} else if (/:totalscore > "610") {
Set("/:rating", "7# Complete Pants... you shud go away and cry!");
} else if (/:totalscore < "611") {
Set("/:rating", "8# Are you joking?!! You're Dangerously Incompetent!");
}
}
if (/:difficulty == "hard") {
if (/:totaltime > "9") {
Set("/:timecomment", "1# ULTIMATE SPEED DEMON OF DOOM!");
} else if (/:totaltime > "8") {
Set("/:timecomment", "2# Speedy Quick!");
} else if (/:totaltime > "6") {
Set("/:timecomment", "3# Pretty Rapid");
} else if (/:totaltime > "4") {
Set("/:timecomment", "4# Taking ya time!");
} else if (/:totaltime > "3") {
Set("/:timecomment", "5# Put ya foot down!");
} else if (/:totaltime > "2") {
Set("/:timecomment", "6# Oi Sunday Driver...COMON!!");
} else if (/:totaltime > "1") {
Set("/:timecomment", "7# WHAT YA PLAYING AT!!");
} else if (/:totaltime > "0") {
Set("/:timecomment", "8# NO NO NO! That's Pathetic!");
}
} else if (/:difficulty == "norm") {
if (/:totaltime > "64") {
Set("/:timecomment", "1# ULTIMATE SPEED DEMON OF DOOM!");
} else if (/:totaltime > "60") {
Set("/:timecomment", "2# Speedy Quick!");
} else if (/:totaltime > "56") {
Set("/:timecomment", "3# Pretty Rapid");
} else if (/:totaltime > "50") {
Set("/:timecomment", "4# Taking ya time!");
} else if (/:totaltime > "46") {
Set("/:timecomment", "5# Put ya foot down!");
} else if (/:totaltime > "30") {
Set("/:timecomment", "6# Oi Sunday Driver...COMON!!");
} else if (/:totaltime > "20") {
Set("/:timecomment", "7# WHAT YA PLAYING AT!!");
} else if (/:totaltime > "0") {
Set("/:timecomment", "8# NO NO NO! That's Pathetic!");
}
} else if (/:difficulty == "easy") {
if (/:totaltime > "146") {
Set("/:timecomment", "1# ULTIMATE SPEED DEMON OF DOOM!");
} else if (/:totaltime > "139") {
Set("/:timecomment", "2# Speedy Quick!");
} else if (/:totaltime > "124") {
Set("/:timecomment", "3# Pretty Rapid");
} else if (/:totaltime > "109") {
Set("/:timecomment", "4# Taking ya time!");
} else if (/:totaltime > "89") {
Set("/:timecomment", "5# Put ya foot down!");
} else if (/:totaltime > "69") {
Set("/:timecomment", "6# Oi Sunday Driver...COMON!!");
} else if (/:totaltime > "40") {
Set("/:timecomment", "7# WHAT YA PLAYING AT!!");
} else if (/:totaltime > "0") {
Set("/:timecomment", "8# NO NO NO! That's Pathetic!");
}
}
Frame 1597
stop();
Frame 1601
gotoAndStop (1596);
Frame 1606
stopAllSounds();
play();
Frame 1607
stop();
Frame 1616
gotoAndStop (1606);
Symbol 16 MovieClip Frame 1
stop();
Symbol 20 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 20
stop();
Symbol 48 Button
on (release) {
Set("/:go", "fathead");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 51 MovieClip Frame 1
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop (3);
}
Symbol 51 MovieClip Frame 2
gotoAndPlay (1);
Symbol 51 MovieClip Frame 3
_root.gotoAndStop("loadedup");
Symbol 53 MovieClip Frame 1
stop();
Symbol 53 MovieClip Frame 11
if (/:go == "start") {
tellTarget ("/") {
gotoAndPlay ("begin");
};
} else if (/:go == "instructions") {
tellTarget ("/") {
gotoAndStop ("instructions");
};
} else if (/:go == "menu") {
tellTarget ("/") {
gotoAndStop ("menu");
};
} else if (/:go == "menuintro") {
tellTarget ("/") {
gotoAndPlay ("menuintro");
};
} else if (/:go == "intro") {
tellTarget ("/") {
gotoAndPlay ("intro");
};
} else if (/:go == "fathead") {
tellTarget ("/") {
gotoAndStop ("fathead");
};
} else if (/:go == "about") {
tellTarget ("/") {
gotoAndStop ("about");
};
} else if (/:go == "level2") {
tellTarget ("/") {
gotoAndPlay ("begin2");
};
} else if (/:go == "level3") {
tellTarget ("/") {
gotoAndPlay ("begin3");
};
} else if (/:go == "retry") {
tellTarget ("/") {
gotoAndPlay ("321");
};
} else {
tellTarget ("/") {
gotoAndStop ("menu");
};
}
Symbol 57 Button
on (release) {
getURL ("http://www.fathead.org.uk", "_blank");
}
Symbol 66 MovieClip Frame 13
gotoAndPlay (1);
Symbol 72 MovieClip Frame 10
stop();
Symbol 73 MovieClip Frame 40
stop();
Symbol 76 MovieClip Frame 15
stop();
Symbol 78 MovieClip Frame 32
gotoAndPlay (7);
Symbol 80 MovieClip Frame 109
stop();
Set("/:go", "armor");
tellTarget ("_root.menufadeinblack") {
gotoAndPlay ("fadein");
};
Symbol 82 MovieClip Frame 1
stop();
Symbol 82 MovieClip Frame 11
if (/:go == "start") {
tellTarget ("/") {
gotoAndPlay ("begin");
};
} else if (/:go == "instructions") {
tellTarget ("/") {
gotoAndStop ("instructions");
};
} else if (/:go == "menu") {
tellTarget ("/") {
gotoAndStop ("menu");
};
} else if (/:go == "intro") {
tellTarget ("/") {
gotoAndPlay ("intro");
};
} else if (/:go == "armor") {
tellTarget ("/") {
gotoAndStop ("armor");
};
} else if (/:go == "fathead") {
tellTarget ("/") {
gotoAndStop ("fathead");
};
} else if (/:go == "about") {
tellTarget ("/") {
gotoAndStop ("about");
};
} else {
tellTarget ("/") {
gotoAndStop ("menu");
};
}
Symbol 125 Button
on (release) {
_root.play();
}
Symbol 126 MovieClip Frame 78
stop();
Set("/:go", "intro");
tellTarget ("_root.menufadeinblack") {
gotoAndPlay ("fadein");
};
Symbol 132 Button
on (release) {
stopAllSounds();
Set("/:go", "menuintro");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 245 MovieClip Frame 165
gotoAndPlay (1);
Symbol 245 MovieClip Frame 178
stop();
Instance of Symbol 260 MovieClip "mainclouds" in Symbol 263 MovieClip Frame 1
onClipEvent (load) {
cloud.duplicateMovieClip("cloud2", 100);
cloud2._x = cloud._x + cloud._width;
cloudStartx = this._x;
cloudSpeed = 1;
}
onClipEvent (enterFrame) {
this._x = this._x - cloudSpeed;
if (this._x <= (cloudStartx - cloud._width)) {
this._x = cloudStartx - cloudSpeed;
}
}
Symbol 280 MovieClip Frame 26
tellTarget ("_root.reportergirl.reporterhead.ivymouth") {
gotoAndStop ("stop");
};
Symbol 280 MovieClip Frame 183
stop();
Symbol 371 MovieClip Frame 54
gotoAndPlay (35);
Symbol 380 Button
on (release) {
Set("/:go", "start");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 384 Button
on (release) {
Set("/:go", "instructions");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 388 Button
on (release) {
Set("/:go", "about");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 391 Button
on (release) {
Set("/:go", "intro");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 394 Button
on (press) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 395 MovieClip Frame 10
stop();
Symbol 420 Button
on (release) {
Set("/:go", menu);
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 431 Button
on (release) {
getURL ("http://www.Fathead.org.uk", "_blank");
}
Symbol 437 Button
on (press) {
Set("/:difficulty", "easy");
gotoAndPlay (851);
}
Symbol 440 Button
on (press) {
Set("/:difficulty", "norm");
gotoAndPlay (851);
}
Symbol 443 Button
on (press) {
Set("/:difficulty", "hard");
gotoAndPlay (851);
}
Symbol 462 MovieClip Frame 1
stop();
Symbol 465 MovieClip Frame 1
stop();
Symbol 468 MovieClip Frame 1
stop();
Symbol 469 MovieClip Frame 1
stop();
Symbol 469 MovieClip Frame 63
play();
Symbol 469 MovieClip Frame 76
gotoAndStop (1);
Symbol 469 MovieClip Frame 82
play();
Symbol 469 MovieClip Frame 97
gotoAndStop (1);
Symbol 469 MovieClip Frame 102
play();
Symbol 469 MovieClip Frame 117
gotoAndStop (1);
Symbol 488 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:level == "2")) {
tellTarget ("/") {
gotoAndStop ("2track2");
};
} else if ((flag == true) and (/:level == "3")) {
tellTarget ("/") {
gotoAndStop ("3track2");
};
}
Symbol 490 MovieClip Frame 1
flag = this.hitTest("/car");
if (((/:level == "1") and (flag == true)) and (/:elephants == "3")) {
Set("/:score", /:score + 100);
Set("/:elephants", 0);
tellTarget ("_root.displayscore+100.+100") {
gotoAndPlay ("+100");
};
tellTarget ("_root.car") {
gotoAndPlay ("none");
};
tellTarget ("_root") {
gotoAndPlay ("winner");
};
} else if ((((/:level == "2") and (flag == true)) and (/:elephants == "3")) and (/:drop < "1")) {
/:drop++;
Set("/:score", /:score + 100);
Set("/:elephants", 0);
tellTarget ("_root.displayscore+100.+100") {
gotoAndPlay ("+100");
};
tellTarget ("_root.car") {
gotoAndPlay ("none");
};
} else if ((((/:level == "2") and (flag == true)) and (/:elephants == "3")) and (/:drop == "1")) {
Set("/:score", /:score + 100);
tellTarget ("_root") {
gotoAndPlay ("2winner");
};
} else if ((((/:level == "3") and (flag == true)) and (/:elephants == "3")) and (/:drop < "2")) {
/:drop++;
Set("/:score", /:score + 100);
Set("/:elephants", 0);
tellTarget ("_root.displayscore+100.+100") {
gotoAndPlay ("+100");
};
tellTarget ("_root.car") {
gotoAndPlay ("none");
};
} else if ((((/:level == "3") and (flag == true)) and (/:elephants == "3")) and (/:drop == "2")) {
Set("/:score", /:score + 100);
tellTarget ("_root") {
gotoAndPlay ("3winner");
};
}
Symbol 490 MovieClip Frame 2
flag = this.hitTest("/car");
if (((/:level == "1") and (flag == true)) and (/:elephants == "3")) {
Set("/:score", /:score + 100);
Set("/:elephants", 0);
tellTarget ("_root.displayscore+100.+100") {
gotoAndPlay ("+100");
};
tellTarget ("_root.car") {
gotoAndPlay ("none");
};
tellTarget ("_root") {
gotoAndPlay ("winner");
};
} else if ((((/:level == "2") and (flag == true)) and (/:elephants == "3")) and (/:drop < "1")) {
/:drop++;
Set("/:score", /:score + 100);
Set("/:elephants", 0);
tellTarget ("_root.displayscore+100.+100") {
gotoAndPlay ("+100");
};
tellTarget ("_root.car") {
gotoAndPlay ("none");
};
} else if ((((/:level == "2") and (flag == true)) and (/:elephants == "3")) and (/:drop == "1")) {
Set("/:score", /:score + 100);
tellTarget ("_root") {
gotoAndPlay ("2winner");
};
} else if ((((/:level == "3") and (flag == true)) and (/:elephants == "3")) and (/:drop < "2")) {
/:drop++;
Set("/:score", /:score + 100);
Set("/:elephants", 0);
tellTarget ("_root.displayscore+100.+100") {
gotoAndPlay ("+100");
};
tellTarget ("_root.car") {
gotoAndPlay ("none");
};
} else if ((((/:level == "3") and (flag == true)) and (/:elephants == "3")) and (/:drop == "2")) {
Set("/:score", /:score + 100);
tellTarget ("_root") {
gotoAndPlay ("3winner");
};
}
gotoAndPlay (1);
Symbol 490 MovieClip Frame 9
stopAllSounds();
Symbol 490 MovieClip Frame 15
gotoAndPlay (1);
Symbol 491 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:level == "2")) {
tellTarget ("/") {
gotoAndStop ("2track3");
};
} else if ((flag == true) and (/:level == "3")) {
tellTarget ("/") {
gotoAndStop ("3track3");
};
}
Symbol 497 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant2 == "gone") {
gotoAndStop (10);
}
Symbol 497 MovieClip Frame 2
gotoAndPlay (1);
Symbol 497 MovieClip Frame 4
Set("/:elephant2", "gone");
stop();
Symbol 497 MovieClip Frame 10
stop();
Symbol 499 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant1 == "gone") {
gotoAndPlay (10);
}
Symbol 499 MovieClip Frame 2
gotoAndPlay (1);
Symbol 499 MovieClip Frame 4
Set("/:elephant1", "gone");
stop();
Symbol 499 MovieClip Frame 10
stop();
Symbol 502 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant3 == "gone") {
gotoAndPlay (10);
}
Symbol 502 MovieClip Frame 2
gotoAndPlay (1);
Symbol 502 MovieClip Frame 4
Set("/:elephant3", "gone");
stop();
Symbol 502 MovieClip Frame 10
stop();
Symbol 508 MovieClip Frame 2
if (/:elephants == "1") {
gotoAndPlay (10);
} else if (/:elephants == "2") {
gotoAndPlay (20);
} else if (/:elephants == "3") {
gotoAndPlay (30);
} else {
gotoAndPlay (1);
}
Symbol 508 MovieClip Frame 11
if (/:elephants == "none") {
gotoAndPlay (1);
} else if (/:elephants == "2") {
gotoAndPlay (20);
} else if (/:elephants == "3") {
gotoAndPlay (30);
} else {
gotoAndPlay (10);
}
Symbol 508 MovieClip Frame 21
if (/:elephants == "none") {
gotoAndPlay (1);
} else if (/:elephants == "1") {
gotoAndPlay (10);
} else if (/:elephants == "3") {
gotoAndPlay (30);
} else {
gotoAndPlay (20);
}
Symbol 508 MovieClip Frame 31
if (/:elephants == "none") {
gotoAndPlay (1);
} else if (/:elephants == "2") {
gotoAndPlay (20);
} else if (/:elephants == "1") {
gotoAndPlay (10);
} else {
gotoAndPlay (30);
}
Symbol 514 MovieClip Frame 1
_root.engine_noises.acc = new Sound();
_root.engine_noises.acc.attachSound("acc");
_root.engine_noises.dec = new Sound();
_root.engine_noises.dec.attachSound("dec");
_root.engine_noises.minimo = new Sound();
_root.engine_noises.minimo.attachSound("minimo");
_root.engine_noises.massimo = new Sound();
_root.engine_noises.massimo.attachSound("massimo");
_root.engine_noises.handbrake = new Sound();
_root.engine_noises.handbrake.attachSound("handbrake");
_root.engine_noises.reverse = new Sound();
_root.engine_noises.reverse.attachSound("reverse");
_root.engine_noises.reversemax = new Sound();
_root.engine_noises.reversemax.attachSound("reversemax");
_root.engine_noises.reversedown = new Sound();
_root.engine_noises.reversedown.attachSound("reversedown");
_root.engine_noises.donut = new Sound();
_root.engine_noises.donut.attachSound("donut");
_root.engine_noises.crash = new Sound();
_root.engine_noises.crash.attachSound("crash");
stopAllSounds();
_root.engine_noises.accvar = 0;
_root.engine_noises.minimo.start(0, 500);
stop();
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.engine_noises.gotoAndStop("acc");
} else if (Key.isDown(40) and (/:speed < 5)) {
_root.engine_noises.gotoAndStop("reverse");
}
}
Symbol 514 MovieClip Frame 9
stopAllSounds();
_root.engine_noises.acc.start(_root.engine_noises.accvar, 0);
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 9
onClipEvent (enterFrame) {
if (Key.isDown(32) and Key.isDown(38)) {
_root.engine_noises.gotoAndStop("donut");
} else if (Key.isDown(38)) {
if (_root.engine_noises.acc.position == _root.engine_noises.acc.duration) {
_root.engine_noises.gotoAndStop("massimo");
}
} else if (Key.isDown(32)) {
_root.engine_noises.gotoAndPlay("handbrake");
} else {
_root.engine_noises.gotoAndStop("dec");
}
}
Symbol 514 MovieClip Frame 14
stopAllSounds();
_root.engine_noises.dec.start((_root.engine_noises.acc.duration - _root.engine_noises.acc.position) / 2000, 0);
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 14
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.engine_noises.gotoAndStop("acc");
} else if (_root.engine_noises.dec.position == _root.engine_noises.dec.duration) {
_root.engine_noises.gotoAndStop("minimo");
} else if (Key.isDown(40) and (/:speed < 2)) {
_root.engine_noises.gotoAndStop("reverse");
} else if (Key.isDown(32)) {
_root.engine_noises.gotoAndPlay("handbrake");
}
_root.engine_noises.accvar = (_root.engine_noises.dec.duration - _root.engine_noises.dec.position) / 800;
}
Symbol 514 MovieClip Frame 19
stopAllSounds();
_root.engine_noises.massimo.start(0, 500);
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 19
onClipEvent (enterFrame) {
if (Key.isDown(32) and Key.isDown(38)) {
_root.engine_noises.gotoAndStop("donut");
} else if (Key.isDown(38)) {
} else if (Key.isDown(32)) {
_root.engine_noises.gotoAndPlay("handbrake");
} else {
_root.engine_noises.gotoAndStop("dec");
}
}
Symbol 514 MovieClip Frame 27
stopAllSounds();
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 27
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.engine_noises.gotoAndStop("acc");
}
}
Symbol 514 MovieClip Frame 31
_root.engine_noises.gotoAndStop("minimo");
Symbol 514 MovieClip Frame 38
stopAllSounds();
_root.engine_noises.reverse.start();
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 38
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
if (_root.engine_noises.reverse.position == _root.engine_noises.reverse.duration) {
_root.engine_noises.gotoAndStop("reversemax");
} else if (Key.isDown(32)) {
_root.engine_noises.gotoAndPlay("handbrake");
}
} else {
_root.engine_noises.gotoAndStop("reversedown");
}
}
Symbol 514 MovieClip Frame 48
stopAllSounds();
_root.engine_noises.reversemax.start(0, 500);
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 48
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
} else if (Key.isDown(32)) {
_root.engine_noises.gotoAndPlay("handbrake");
} else {
_root.engine_noises.gotoAndStop("reversedown");
}
}
Symbol 514 MovieClip Frame 58
stopAllSounds();
_root.engine_noises.reversedown.start((_root.engine_noises.reverse.duration - _root.engine_noises.reverse.position) / 2000, 0);
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 58
onClipEvent (enterFrame) {
if (Key.isDown(40)) {
_root.engine_noises.gotoAndStop("reverse");
} else if (_root.engine_noises.reversedown.position == _root.engine_noises.reversedown.duration) {
_root.engine_noises.gotoAndStop("minimo");
} else if (/:speed > 0) {
_root.engine_noises.gotoAndStop("minimo");
} else if (Key.isDown(32)) {
_root.engine_noises.gotoAndPlay("handbrake");
}
}
Symbol 514 MovieClip Frame 71
stopAllSounds();
_root.engine_noises.donut.start(0, 500);
Instance of Symbol 512 MovieClip in Symbol 514 MovieClip Frame 71
onClipEvent (enterFrame) {
if (Key.isDown(32) and Key.isDown(38)) {
stop();
} else if (Key.isDown(38)) {
_root.engine_noises.gotoAndStop("acc");
} else {
_root.engine_noises.gotoAndStop("minimo");
}
}
Symbol 514 MovieClip Frame 86
play();
Symbol 514 MovieClip Frame 88
gotoAndStop (1);
Symbol 516 MovieClip Frame 1
stop();
Symbol 516 MovieClip Frame 81
gotoAndStop (1);
Symbol 520 MovieClip Frame 13
/:time--;
Symbol 524 MovieClip Frame 1
play();
Symbol 524 MovieClip Frame 2
if ((/:time == "0") and (/:level == "1")) {
tellTarget ("/") {
gotoAndPlay ("outoftime");
};
} else if ((/:time == "0") and (/:level == "2")) {
tellTarget ("/") {
gotoAndPlay ("outoftime2");
};
} else if ((/:time == "0") and (/:level == "3")) {
tellTarget ("/") {
gotoAndPlay ("outoftime3");
};
} else {
gotoAndPlay (1);
}
Symbol 528 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:level == "2")) {
tellTarget ("/") {
Set("/:from", "track2");
gotoAndStop ("2track1");
};
} else if ((flag == true) and (/:level == "3")) {
tellTarget ("/") {
Set("/:from", "track2");
gotoAndStop ("3track1");
};
}
Symbol 534 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant7 == "gone") {
gotoAndPlay (10);
}
Symbol 534 MovieClip Frame 2
gotoAndPlay (1);
Symbol 534 MovieClip Frame 4
Set("/:elephant7", "gone");
stop();
Symbol 534 MovieClip Frame 10
stop();
Symbol 536 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant5 == "gone") {
gotoAndPlay (10);
}
Symbol 536 MovieClip Frame 2
gotoAndPlay (1);
Symbol 536 MovieClip Frame 4
Set("/:elephant5", "gone");
stop();
Symbol 536 MovieClip Frame 10
stop();
Symbol 539 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant4 == "gone") {
gotoAndPlay (10);
}
Symbol 539 MovieClip Frame 2
gotoAndPlay (1);
Symbol 539 MovieClip Frame 4
Set("/:elephant4", "gone");
stop();
Symbol 539 MovieClip Frame 10
stop();
Symbol 542 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant6 == "gone") {
gotoAndPlay (10);
}
Symbol 542 MovieClip Frame 2
gotoAndPlay (1);
Symbol 542 MovieClip Frame 4
Set("/:elephant6", "gone");
stop();
Symbol 542 MovieClip Frame 10
stop();
Symbol 551 MovieClip Frame 1
if (/:ped2 == "dead") {
gotoAndStop (53);
}
flag = this.hitTest("/car");
if (flag == true) {
gotoAndPlay (40);
}
Symbol 551 MovieClip Frame 2
gotoAndPlay (1);
Symbol 551 MovieClip Frame 41
Set("/:ped2", "dead");
/:pedscore++;
Set("/:score", /:score - "25");
tellTarget ("_root.displayscore.-25") {
gotoAndPlay ("-25");
};
stop();
Symbol 551 MovieClip Frame 53
stop();
Symbol 552 MovieClip Frame 2
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 6
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 10
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 15
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 20
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 25
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 29
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 34
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 39
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 44
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 49
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 54
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 59
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 64
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 69
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 73
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 78
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 83
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 88
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 92
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 96
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 101
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 106
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 111
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 115
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 119
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 124
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 129
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 134
if (/:ped2 == "dead") {
stop();
}
Symbol 552 MovieClip Frame 140
if (/:ped2 == "dead") {
stop();
}
Symbol 557 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:level == "2")) {
tellTarget ("/") {
Set("/:from", "track3");
gotoAndStop ("2track1");
};
} else if ((flag == true) and (/:level == "3")) {
tellTarget ("/") {
Set("/:from", "track3");
gotoAndStop ("3track1");
};
}
Symbol 564 MovieClip Frame 1
if (/:ped1 == "dead") {
gotoAndStop (60);
}
flag = this.hitTest("/car");
if (flag == true) {
gotoAndPlay (40);
}
Symbol 564 MovieClip Frame 5
flag = this.hitTest("/car");
if (flag == true) {
gotoAndPlay (40);
}
Symbol 564 MovieClip Frame 9
flag = this.hitTest("/car");
if (flag == true) {
gotoAndPlay (40);
}
Symbol 564 MovieClip Frame 13
flag = this.hitTest("/car");
if (flag == true) {
gotoAndPlay (40);
}
Symbol 564 MovieClip Frame 16
flag = this.hitTest("/car");
if (flag == true) {
gotoAndPlay (40);
}
Symbol 564 MovieClip Frame 21
flag = this.hitTest("/car");
if (flag == true) {
gotoAndPlay (40);
}
gotoAndPlay (1);
Symbol 564 MovieClip Frame 41
Set("/:ped1", "dead");
/:pedscore++;
Set("/:score", /:score - "25");
tellTarget ("_root.displayscore.-25") {
gotoAndPlay ("-25");
};
stop();
Symbol 564 MovieClip Frame 60
stop();
Symbol 565 MovieClip Frame 1
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 10
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 20
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 30
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 40
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 50
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 60
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 71
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 80
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 90
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 101
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 110
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 120
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 130
if (/:ped1 == "dead") {
stop();
}
Symbol 565 MovieClip Frame 140
if (/:ped1 == "dead") {
stop();
}
Symbol 567 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant8 == "gone") {
gotoAndPlay (10);
}
Symbol 567 MovieClip Frame 2
gotoAndPlay (1);
Symbol 567 MovieClip Frame 4
Set("/:elephant8", "gone");
stop();
Symbol 567 MovieClip Frame 10
stop();
Symbol 570 MovieClip Frame 1
flag = this.hitTest("/car");
if ((flag == true) and (/:elephants < 3)) {
Set("/:elephants", /:elephants + 1);
gotoAndPlay (4);
} else if (/:elephant9 == "gone") {
gotoAndPlay (10);
}
Symbol 570 MovieClip Frame 2
gotoAndPlay (1);
Symbol 570 MovieClip Frame 4
Set("/:elephant9", "gone");
stop();
Symbol 570 MovieClip Frame 10
stop();
Symbol 579 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
tellTarget ("_root.1.1") {
gotoAndPlay ("start");
};
tellTarget ("_root.2") {
gotoAndPlay ("start");
};
tellTarget ("_root.3.3") {
gotoAndPlay ("start");
};
tellTarget ("_root.4.4") {
gotoAndPlay ("start");
};
tellTarget ("_root.5.5") {
gotoAndPlay ("start");
};
tellTarget ("_root.6.6") {
gotoAndPlay ("start");
};
tellTarget ("_root.7") {
gotoAndPlay ("start");
};
tellTarget ("_root.8.8") {
gotoAndPlay ("start");
};
tellTarget ("_root.9") {
gotoAndPlay ("start");
};
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "menuintro");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 582 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "level2");
gotoAndPlay (937);
}
Symbol 594 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
tellTarget ("_root.1.1") {
gotoAndPlay ("start");
};
tellTarget ("_root.2") {
gotoAndPlay ("start");
};
tellTarget ("_root.3.3") {
gotoAndPlay ("start");
};
tellTarget ("_root.4.4") {
gotoAndPlay ("start");
};
tellTarget ("_root.5.5") {
gotoAndPlay ("start");
};
tellTarget ("_root.6.6") {
gotoAndPlay ("start");
};
tellTarget ("_root.7") {
gotoAndPlay ("start");
};
tellTarget ("_root.8.8") {
gotoAndPlay ("start");
};
tellTarget ("_root.9") {
gotoAndPlay ("start");
};
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "retry");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 604 Button
on (release) {
stopAllSounds();
gotoAndPlay (1115);
}
Symbol 628 MovieClip Frame 1
stop();
Symbol 628 MovieClip Frame 9
Set("/:ped1", "dead");
/:pedscore++;
Set("/:score", /:score - "25");
tellTarget ("_root.displayscore.-25") {
gotoAndPlay ("-25");
};
stop();
Symbol 628 MovieClip Frame 28
stop();
Symbol 630 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
tellTarget ("_root.1.1") {
gotoAndPlay ("start");
};
tellTarget ("_root.2") {
gotoAndPlay ("start");
};
tellTarget ("_root.3.3") {
gotoAndPlay ("start");
};
tellTarget ("_root.4.4") {
gotoAndPlay ("start");
};
tellTarget ("_root.5.5") {
gotoAndPlay ("start");
};
tellTarget ("_root.6.6") {
gotoAndPlay ("start");
};
tellTarget ("_root.7") {
gotoAndPlay ("start");
};
tellTarget ("_root.8.8") {
gotoAndPlay ("start");
};
tellTarget ("_root.9") {
gotoAndPlay ("start");
};
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "menuintro");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 631 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "level3");
gotoAndPlay (1208);
}
Symbol 637 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
tellTarget ("_root.1.1") {
gotoAndPlay ("start");
};
tellTarget ("_root.2") {
gotoAndPlay ("start");
};
tellTarget ("_root.3.3") {
gotoAndPlay ("start");
};
tellTarget ("_root.4.4") {
gotoAndPlay ("start");
};
tellTarget ("_root.5.5") {
gotoAndPlay ("start");
};
tellTarget ("_root.6.6") {
gotoAndPlay ("start");
};
tellTarget ("_root.7") {
gotoAndPlay ("start");
};
tellTarget ("_root.8.8") {
gotoAndPlay ("start");
};
tellTarget ("_root.9") {
gotoAndPlay ("start");
};
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "level2");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 640 Button
on (release) {
stopAllSounds();
gotoAndPlay (1529);
}
Symbol 674 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
tellTarget ("_root.1.1") {
gotoAndPlay ("start");
};
tellTarget ("_root.2") {
gotoAndPlay ("start");
};
tellTarget ("_root.3.3") {
gotoAndPlay ("start");
};
tellTarget ("_root.4.4") {
gotoAndPlay ("start");
};
tellTarget ("_root.5.5") {
gotoAndPlay ("start");
};
tellTarget ("_root.6.6") {
gotoAndPlay ("start");
};
tellTarget ("_root.7") {
gotoAndPlay ("start");
};
tellTarget ("_root.8.8") {
gotoAndPlay ("start");
};
tellTarget ("_root.9") {
gotoAndPlay ("start");
};
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "menuintro");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 677 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
tellTarget ("_root.1.1") {
gotoAndPlay ("start");
};
tellTarget ("_root.2") {
gotoAndPlay ("start");
};
tellTarget ("_root.3.3") {
gotoAndPlay ("start");
};
tellTarget ("_root.4.4") {
gotoAndPlay ("start");
};
tellTarget ("_root.5.5") {
gotoAndPlay ("start");
};
tellTarget ("_root.6.6") {
gotoAndPlay ("start");
};
tellTarget ("_root.7") {
gotoAndPlay ("start");
};
tellTarget ("_root.8.8") {
gotoAndPlay ("start");
};
tellTarget ("_root.9") {
gotoAndPlay ("start");
};
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "start");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}
Symbol 689 Button
on (release) {
Set("/:drop", null);
Set("/:score", 0);
Set("/:speed", null);
Set("/:pedscore", 0);
Set("/:elephants", 0);
Set("/:from", null);
Set("/:rating", null);
Set("/:finalscore", null);
Set("/:landcrash", 0);
Set("/:movname", null);
Set("/:elephant1", null);
Set("/:elephant2", null);
Set("/:elephant3", null);
Set("/:elephant4", null);
Set("/:elephant5", null);
Set("/:elephant6", null);
Set("/:elephant7", null);
Set("/:elephant8", null);
Set("/:elephant9", null);
Set("/:rotation", null);
Set("/:time", 0);
Set("/:ped1", null);
Set("/:ped2", null);
tellTarget ("_root.1.1") {
gotoAndPlay ("start");
};
tellTarget ("_root.2") {
gotoAndPlay ("start");
};
tellTarget ("_root.3.3") {
gotoAndPlay ("start");
};
tellTarget ("_root.4.4") {
gotoAndPlay ("start");
};
tellTarget ("_root.5.5") {
gotoAndPlay ("start");
};
tellTarget ("_root.6.6") {
gotoAndPlay ("start");
};
tellTarget ("_root.7") {
gotoAndPlay ("start");
};
tellTarget ("_root.8.8") {
gotoAndPlay ("start");
};
tellTarget ("_root.9") {
gotoAndPlay ("start");
};
setProperty("car", _x , "388.9");
setProperty("car", _y , "93.9");
Set("/:go", "level3");
tellTarget ("_root.menufadein") {
gotoAndPlay ("fadein");
};
}