Frame 1
totalbytes = _root.getBytesTotal();
bytesloaded = _root.getBytesLoaded();
percent = int((bytesloaded / totalbytes) * 100);
if (percent < 0) {
percent = 0;
}
tellTarget ("_root.loader") {
gotoAndStop(int(_root.percent / 2));
};
Frame 2
if (bytesloaded >= totalbytes) {
_root.gotoAndPlay("start", 1);
} else {
gotoAndPlay (1);
}
Frame 3
fscommand ("showmenu", false);
Frame 203
stop();
Symbol 74 MovieClip [highScoresWindow] Frame 1
highScores_mc = this;
_global.pressed = "false";
highScores_mc.close_btn.onRelease = function () {
_global.pressed = "true";
highScores_mc.removeMovieClip();
};
dataSender = new LoadVars();
dataReceiver = new LoadVars();
dataReceiver.onLoad = function () {
var _local1 = this;
highScores_mc.gotoAndStop("loaded");
highScores_mc.name1 = _local1.name1;
highScores_mc.name2 = _local1.name2;
highScores_mc.name3 = _local1.name3;
highScores_mc.name4 = _local1.name4;
highScores_mc.name5 = _local1.name5;
highScores_mc.name6 = _local1.name6;
highScores_mc.name7 = _local1.name7;
highScores_mc.name8 = _local1.name8;
highScores_mc.name9 = _local1.name9;
highScores_mc.name10 = _local1.name10;
highScores_mc.score1 = _local1.score1;
highScores_mc.score2 = _local1.score2;
highScores_mc.score3 = _local1.score3;
highScores_mc.score4 = _local1.score4;
highScores_mc.score5 = _local1.score5;
highScores_mc.score6 = _local1.score6;
highScores_mc.score7 = _local1.score7;
highScores_mc.score8 = _local1.score8;
highScores_mc.score9 = _local1.score9;
highScores_mc.score10 = _local1.score10;
};
dataSender.action = "getScores";
dataSender.sendAndLoad(_global.highScoresScript, dataReceiver, "POST");
highScores_mc.gotoAndStop("loading");
Symbol 84 MovieClip [gameOverWindow] Frame 1
function order(a, b) {
if (Number(a.score) < Number(b.score)) {
return(-1);
}
if (Number(a.score) > Number(b.score)) {
return(1);
}
return(0);
}
gameOver_mc = this;
depth = 0;
dataSender = new LoadVars();
dataReceiver = new LoadVars();
dataReceiver.onLoad = function () {
var _local1 = this;
gameOver_mc.gotoAndStop("loaded");
gameOver_mc.highScores_array = new Array();
gameOver_mc.highScores_array.push({name:_local1.name1, score:_local1.score1});
gameOver_mc.highScores_array.push({name:_local1.name2, score:_local1.score2});
gameOver_mc.highScores_array.push({name:_local1.name3, score:_local1.score3});
gameOver_mc.highScores_array.push({name:_local1.name4, score:_local1.score4});
gameOver_mc.highScores_array.push({name:_local1.name5, score:_local1.score5});
gameOver_mc.highScores_array.push({name:_local1.name6, score:_local1.score6});
gameOver_mc.highScores_array.push({name:_local1.name7, score:_local1.score7});
gameOver_mc.highScores_array.push({name:_local1.name8, score:_local1.score8});
gameOver_mc.highScores_array.push({name:_local1.name9, score:_local1.score9});
gameOver_mc.highScores_array.push({name:_local1.name10, score:_local1.score10});
gameOver_mc.highScores_array.push({name:"enter your name", score:_root.drive.score.score});
_root.gotoAndStop("titel");
gameOver_mc.highScores_array.sort(order);
if (gameOver_mc.highScores_array[0].name != "enter your name") {
gameOver_mc.desc = "Congratulations! You have reached a high score!";
gameOver_mc.attachMovie("newName", "inName_mc", depth++);
gameOver_mc.inName_mc._x = 210;
gameOver_mc.inName_mc._y = 250;
gameOver_mc.inName_mc.inName = "enter your name";
Selection.setFocus("gameOver_mc.inName_mc.inName_txt");
} else {
gameOver_mc.desc = "Good try, but you did not get a high score.";
gameOver_mc.gotoAndStop("lowScore");
}
};
dataSender.action = "getScores";
dataSender.sendAndLoad(_global.highScoresScript, dataReceiver, "POST");
gameOver_mc.gotoAndStop("loading");
Symbol 84 MovieClip [gameOverWindow] Frame 5
_global.checksum = function (a) {
k = new String("ficken");
k = k.concat(a);
summe = new Number();
i = 0;
while (i < k.length) {
summe = summe + k.charCodeAt(i);
i++;
}
summe = summe * summe;
return(summe);
};
dataSender = new LoadVars();
dataReceiver = new LoadVars();
dataReceiver.onLoad = function () {
_global.windowUp = false;
gameOver_mc.removeMovieClip();
};
gameOver_mc.save_btn.onRelease = function () {
var _local1 = _root;
var _local2 = _global;
_local2.pressed = "true";
counter = 1;
while (counter <= 10) {
if (gameOver_mc.highScores_array[counter].name == "enter your name") {
if (gameOver_mc.inName_mc.inName == "enter your name") {
gameOver_mc.highScores_array[counter].name = "Anonymous";
} else {
gameOver_mc.highScores_array[counter].name = gameOver_mc.inName_mc.inName;
}
_local1.drive.score.name = gameOver_mc.highScores_array[counter].name;
}
counter++;
}
dataSender.swfversion = 4;
dataSender.action = "putScore";
dataSender.name = _local1.drive.score.name;
dataSender.score = _local1.drive.score.score;
summe = _local2.checksum(dataSender.toString());
dataSender.hash = summe;
dataSender.sendAndLoad(_local2.highScoresScript, dataReceiver, "POST");
gameOver_mc.gotoAndStop("saving");
};
stop();
Symbol 84 MovieClip [gameOverWindow] Frame 23
gameOver_mc.close_btn.onRelease = function () {
_root.gotoAndStop("titel");
gameOver_mc.removeMovieClip();
};
stop();
Symbol 92 MovieClip Frame 1
stop();
Symbol 92 MovieClip Frame 25
stop();
Symbol 92 MovieClip Frame 50
stop();
stop();
Symbol 155 MovieClip Frame 2
stop();
Symbol 161 Button
on (release) {
highScoresWindow_mc.removeMovieClip();
gameOverWindow_mc.removeMovieClip();
stopAllSounds();
_root.drive.gotoAndStop(2);
}
Symbol 166 Button
on (release) {
stopAllSounds();
if (_root.koffer.musicx == 1) {
_root.soundbank.gotoAndStop("nix");
_root.soundbank.gotoAndStop("a");
} else if (_root.koffer.musicx == 2) {
_root.soundbank.gotoAndStop("nix");
_root.soundbank.gotoAndStop("b");
} else if (_root.koffer.musicx == 3) {
_root.soundbank.gotoAndStop("nix");
_root.soundbank.gotoAndStop("c");
} else if (_root.koffer.musicx == 4) {
_root.soundbank.gotoAndStop("nix");
_root.soundbank.gotoAndStop("d");
}
_root.gotoAndStop("game0");
}
Symbol 170 Button
on (release) {
if (_global.pressed == "true") {
stage_mc.attachMovie("highScoresWindow", "highScoresWindow_mc", depth++);
stage_mc.highScoresWindow_mc._x = -280;
stage_mc.highScoresWindow_mc._y = -180;
}
}
Instance of Symbol 192 MovieClip "hjkhjkhkh" in Symbol 193 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.mainbar.munition.gotoAndStop(1);
_root.drive.ammo.gotoAndStop(1);
_root.drive.reload.play();
_root.drive.muni.omi.gotoAndPlay("aus");
}
}
Instance of Symbol 192 MovieClip "hjhjjh" in Symbol 193 MovieClip Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.mainbar.munition.gotoAndStop(1);
_root.drive.ammo.gotoAndStop(1);
_root.drive.reload.play();
_root.drive.muni.omi.gotoAndPlay("aus");
}
}
Symbol 193 MovieClip Frame 70
_root.drive.muni.gotoAndStop(1);
Symbol 194 MovieClip Frame 1
zufall = Math.floor((Math.random() * 7) + 1);
if (zufall == 1) {
gotoAndStop ("a");
} else if (zufall == 2) {
gotoAndStop ("b");
} else if (zufall == 3) {
gotoAndStop ("c");
} else if (zufall == 4) {
gotoAndStop ("d");
} else if (zufall == 5) {
gotoAndStop ("e");
} else if (zufall == 6) {
gotoAndStop ("f");
} else if (zufall == 7) {
gotoAndStop ("g");
}
Instance of Symbol 197 MovieClip "hjkhjkhkh" in Symbol 198 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.mainbar.fuel.gotoAndStop(1);
_root.drive.fueli.omi.gotoAndPlay("aus");
}
}
Instance of Symbol 197 MovieClip "hjhjjh" in Symbol 198 MovieClip Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.mainbar.fuel.gotoAndStop(1);
_root.drive.fueli.omi.gotoAndPlay("aus");
}
}
Symbol 198 MovieClip Frame 148
_root.drive.fueli.gotoAndPlay(1);
Symbol 199 MovieClip Frame 3
zufall = Math.floor((Math.random() * 7) + 1);
if (zufall == 1) {
gotoAndStop ("a");
} else if (zufall == 2) {
gotoAndStop ("b");
} else if (zufall == 3) {
gotoAndStop ("c");
} else if (zufall == 4) {
gotoAndStop ("d");
} else if (zufall == 5) {
gotoAndStop ("e");
} else if (zufall == 6) {
gotoAndStop ("f");
} else if (zufall == 7) {
gotoAndStop ("g");
}
Symbol 201 MovieClip Frame 1
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y - 6;
Symbol 201 MovieClip Frame 2
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y - 6;
Symbol 214 MovieClip Frame 1
stop();
Symbol 231 MovieClip Frame 11
stop();
Symbol 233 MovieClip Frame 1
_root.drive.score.score = _root.drive.score.score + 250;
_root.drive.bonus250.play();
Symbol 233 MovieClip Frame 12
_root.drive.feinde4.p = 1;
_root.drive.feinde.gotoAndStop(1);
stop();
Symbol 234 MovieClip Frame 1
stop();
Instance of Symbol 204 MovieClip in Symbol 234 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde.limo.play();
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde.limo.play();
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde.limo.play();
}
}
Instance of Symbol 206 MovieClip in Symbol 234 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde.limo.play();
}
}
Instance of Symbol 208 MovieClip "fgdfdf" in Symbol 234 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y + 16;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y + 16;
}
}
Instance of Symbol 209 MovieClip "zt5443" in Symbol 234 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x - 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x - 15;
}
}
Instance of Symbol 209 MovieClip "erter45645" in Symbol 234 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x + 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x + 15;
}
}
Instance of Symbol 208 MovieClip "jghjhhj" in Symbol 234 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y - 15;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y - 15;
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x - 10;
}
}
Symbol 234 MovieClip Frame 2
stop();
Symbol 238 MovieClip Frame 1
stop();
Instance of Symbol 237 MovieClip in Symbol 238 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde.limo.play();
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde.limo.play();
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde.limo.play();
}
}
Instance of Symbol 206 MovieClip in Symbol 238 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde.limo.play();
}
}
Instance of Symbol 208 MovieClip "fgdfdf" in Symbol 238 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y + 16;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y + 16;
}
}
Instance of Symbol 209 MovieClip "zt5443" in Symbol 238 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x - 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x - 15;
}
}
Instance of Symbol 209 MovieClip "erter45645" in Symbol 238 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x + 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x + 15;
}
}
Instance of Symbol 208 MovieClip "jghjhhj" in Symbol 238 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y - 15;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde.limo._y = _root.drive.feinde.limo._y - 15;
_root.drive.feinde.limo._x = _root.drive.feinde.limo._x - 10;
}
}
Symbol 238 MovieClip Frame 2
stop();
Symbol 239 MovieClip Frame 1
zufall = Math.floor((Math.random() * 5) + 1);
if (zufall == 1) {
gotoAndStop ("a");
} else if (zufall == 2) {
gotoAndStop ("b");
} else if (zufall == 3) {
gotoAndStop ("c");
} else if (zufall == 4) {
gotoAndStop ("d");
} else if (zufall == 5) {
gotoAndStop ("e");
}
Symbol 239 MovieClip Frame 2
stop();
Symbol 239 MovieClip Frame 4
stop();
Symbol 239 MovieClip Frame 6
stop();
Symbol 239 MovieClip Frame 8
stop();
Symbol 239 MovieClip Frame 10
stop();
Symbol 241 MovieClip Frame 1
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 10;
Symbol 241 MovieClip Frame 2
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 10;
Symbol 248 MovieClip Frame 1
_root.drive.score.score = _root.drive.score.score + 300;
_root.drive.bonus300.play();
Symbol 248 MovieClip Frame 12
_root.drive.feinde4.p = 1;
_root.drive.feinde2.gotoAndStop(1);
stop();
Symbol 249 MovieClip Frame 1
stop();
Instance of Symbol 244 MovieClip in Symbol 249 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde2.roter.play();
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde2.roter.play();
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde2.roter.play();
}
}
Instance of Symbol 245 MovieClip in Symbol 249 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde2.roter.play();
}
}
Instance of Symbol 246 MovieClip "fgdfdf" in Symbol 249 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y + 20;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde2.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y + 16;
}
}
Instance of Symbol 247 MovieClip "zt5443" in Symbol 249 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x - 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x - 15;
}
}
Instance of Symbol 247 MovieClip "erter45645" in Symbol 249 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x + 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x + 15;
}
}
Instance of Symbol 246 MovieClip "jghjhhj" in Symbol 249 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 15;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde2.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 15;
}
}
Symbol 249 MovieClip Frame 2
stop();
Symbol 250 MovieClip Frame 1
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 10;
Symbol 250 MovieClip Frame 2
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 10;
Symbol 255 MovieClip Frame 11
stop();
Symbol 256 MovieClip Frame 1
_root.drive.score.score = _root.drive.score.score + 300;
_root.drive.bonus300.play();
Symbol 256 MovieClip Frame 12
_root.drive.feinde4.p = 1;
_root.drive.feinde2.gotoAndStop(1);
stop();
Symbol 257 MovieClip Frame 1
stop();
Instance of Symbol 251 MovieClip in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde2.roter.play();
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde2.roter.play();
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde2.roter.play();
}
}
Instance of Symbol 252 MovieClip in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde2.roter.play();
}
}
Instance of Symbol 253 MovieClip "fgdfdf" in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y + 20;
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x - 4;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde2.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y + 16;
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x - 4;
}
}
Instance of Symbol 254 MovieClip "zt5443" in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x - 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x - 15;
}
}
Instance of Symbol 254 MovieClip "erter45645" in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x + 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x + 15;
}
}
Instance of Symbol 253 MovieClip "jghjhhj" in Symbol 257 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 15;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde2.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 15;
}
}
Symbol 257 MovieClip Frame 2
stop();
Symbol 261 MovieClip Frame 1
stop();
Instance of Symbol 260 MovieClip in Symbol 261 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde2.roter.play();
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde2.roter.play();
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde2.roter.play();
}
}
Instance of Symbol 245 MovieClip in Symbol 261 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde2.roter.play();
}
}
Instance of Symbol 246 MovieClip "fgdfdf" in Symbol 261 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y + 20;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde2.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y + 16;
}
}
Instance of Symbol 247 MovieClip "zt5443" in Symbol 261 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x - 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x - 15;
}
}
Instance of Symbol 247 MovieClip "erter45645" in Symbol 261 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x + 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._x = _root.drive.feinde2.roter._x + 15;
}
}
Instance of Symbol 246 MovieClip "jghjhhj" in Symbol 261 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 15;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde2.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde2.roter._y = _root.drive.feinde2.roter._y - 15;
}
}
Symbol 261 MovieClip Frame 2
stop();
Symbol 262 MovieClip Frame 1
zufall = Math.floor((Math.random() * 5) + 1);
if (zufall == 1) {
gotoAndStop ("a");
} else if (zufall == 2) {
gotoAndStop ("b");
} else if (zufall == 3) {
gotoAndStop ("c");
} else if (zufall == 4) {
gotoAndStop ("d");
} else if (zufall == 5) {
gotoAndStop ("e");
}
Symbol 263 MovieClip Frame 1
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 4;
Symbol 263 MovieClip Frame 2
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 4;
Symbol 270 MovieClip Frame 1
_root.drive.score.score = _root.drive.score.score + 200;
_root.drive.bonus200.play();
Symbol 270 MovieClip Frame 25
_root.drive.feinde3.gotoAndStop(1);
_root.drive.feinde4.p = 1;
stop();
Symbol 271 MovieClip Frame 1
stop();
Instance of Symbol 266 MovieClip in Symbol 271 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde3.blauer.play();
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde3.blauer.play();
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde3.blauer.play();
}
}
Instance of Symbol 267 MovieClip in Symbol 271 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde3.blauer.play();
}
}
Instance of Symbol 268 MovieClip "fgdfdf" in Symbol 271 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 16;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde3.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 16;
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 19;
} else if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 19;
}
}
Instance of Symbol 269 MovieClip "zt5443" in Symbol 271 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
}
Instance of Symbol 269 MovieClip "erter45645" in Symbol 271 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
}
Instance of Symbol 268 MovieClip "jghjhhj" in Symbol 271 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 15;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 10;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde3.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 15;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 18;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 18;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.ende2)) {
_root.drive.feinde3.gotoAndStop(1);
}
}
Symbol 271 MovieClip Frame 2
stop();
Symbol 272 MovieClip Frame 1
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 4;
Symbol 272 MovieClip Frame 2
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 4;
Symbol 278 MovieClip Frame 11
stop();
Symbol 279 MovieClip Frame 1
_root.drive.score.score = _root.drive.score.score + 200;
_root.drive.bonus200.play();
Symbol 279 MovieClip Frame 20
_root.drive.feinde4.p = 1;
_root.drive.feinde3.gotoAndStop(1);
stop();
Symbol 280 MovieClip Frame 1
stop();
Instance of Symbol 275 MovieClip in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde3.blauer.play();
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde3.blauer.play();
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde3.blauer.play();
}
}
Instance of Symbol 276 MovieClip in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde3.blauer.play();
}
}
Instance of Symbol 268 MovieClip "fgdfdf" in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 16;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde3.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 16;
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 19;
} else if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 19;
}
}
Instance of Symbol 277 MovieClip "zt5443" in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
}
Instance of Symbol 277 MovieClip "erter45645" in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
}
Instance of Symbol 268 MovieClip "jghjhhj" in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 15;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 10;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde3.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 15;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 18;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 18;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.ende2)) {
_root.drive.feinde3.gotoAndStop(1);
}
}
Symbol 280 MovieClip Frame 2
stop();
Symbol 281 MovieClip Frame 1
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 4;
Symbol 281 MovieClip Frame 2
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 4;
Symbol 288 MovieClip Frame 1
_root.drive.score.score = _root.drive.score.score + 200;
_root.drive.bonus200.play();
Symbol 288 MovieClip Frame 30
_root.drive.feinde4.p = 1;
_root.drive.feinde3.gotoAndStop(1);
stop();
Symbol 289 MovieClip Frame 1
stop();
Instance of Symbol 284 MovieClip in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde3.blauer.play();
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde3.blauer.play();
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde3.blauer.play();
}
}
Instance of Symbol 285 MovieClip in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde3.blauer.play();
}
}
Instance of Symbol 286 MovieClip "fgdfdf" in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 16;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde3.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 16;
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 19;
} else if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y + 19;
}
}
Instance of Symbol 287 MovieClip "zt5443" in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 15;
}
}
Instance of Symbol 287 MovieClip "erter45645" in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 15;
}
}
Instance of Symbol 286 MovieClip "jghjhhj" in Symbol 289 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 15;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x + 10;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde3.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 15;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 18;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.feinde4.weisser.police)) {
_root.drive.feinde3.blauer._y = _root.drive.feinde3.blauer._y - 18;
_root.drive.feinde3.blauer._x = _root.drive.feinde3.blauer._x - 10;
}
if (this.hitTest(_root.drive.ende2)) {
_root.drive.feinde3.gotoAndStop(1);
}
}
Symbol 289 MovieClip Frame 2
stop();
Symbol 290 MovieClip Frame 1
zufall = Math.floor((Math.random() * 9) + 1);
if (zufall == 1) {
gotoAndStop ("a");
} else if (zufall == 2) {
gotoAndStop ("b");
} else if (zufall == 3) {
gotoAndStop ("c");
} else if (zufall == 4) {
gotoAndStop ("d");
} else if (zufall == 5) {
gotoAndStop ("e");
} else if (zufall == 6) {
gotoAndStop ("f");
} else if (zufall == 7) {
gotoAndStop ("g");
} else if (zufall == 8) {
gotoAndStop ("h");
} else if (zufall == 9) {
gotoAndStop ("i");
}
Symbol 290 MovieClip Frame 5
stop();
Symbol 290 MovieClip Frame 7
stop();
Symbol 290 MovieClip Frame 9
stop();
Symbol 290 MovieClip Frame 11
stop();
Symbol 290 MovieClip Frame 13
stop();
Symbol 290 MovieClip Frame 15
stop();
Symbol 290 MovieClip Frame 17
stop();
Symbol 290 MovieClip Frame 19
stop();
Symbol 290 MovieClip Frame 21
stop();
Symbol 295 MovieClip Frame 1
_root.drive.feinde4.weisser._y = _root.drive.feinde4.weisser._y - 10;
Symbol 295 MovieClip Frame 2
_root.drive.feinde4.weisser._y = _root.drive.feinde4.weisser._y - 10;
Instance of Symbol 310 MovieClip "sdasdsa" in Symbol 311 MovieClip Frame 6
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.heart)) {
_root.drive.energie.energie.nextFrame();
_root.drive.karre.shot.play();
_root.drive.energie.herz.play();
}
}
Symbol 311 MovieClip Frame 13
_root.drive.feinde4.weisser.gotoAndStop(1);
Symbol 313 MovieClip Frame 1
_root.drive.score.score = _root.drive.score.score + 350;
_root.drive.bonus450.play();
Symbol 313 MovieClip Frame 12
_root.drive.feinde4.gotoAndStop("w");
stop();
Symbol 314 MovieClip Frame 1
stop();
Instance of Symbol 292 MovieClip "police" in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.hotspot)) {
_root.drive.feinde4.weisser.gotoAndPlay("boom");
}
if (this.hitTest(_root.drive.hotspot2)) {
_root.drive.feinde4.weisser.gotoAndPlay("boom");
}
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.feinde4.weisser.play();
}
}
Instance of Symbol 296 MovieClip in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.gun.kugel)) {
_root.drive.karre.shot.gun.kugel.gotoAndStop(4);
_root.drive.headshot.gotoAndPlay(2);
_root.drive.feinde4.weisser.play();
}
}
Instance of Symbol 297 MovieClip "fgdfdf" in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde4.weisser._y = _root.drive.feinde4.weisser._y + 20;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde4.gotoAndStop("w");
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde4.weisser._y = _root.drive.feinde4.weisser._y + 16;
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x + 4;
} else if (this.hitTest(_root.drive.feinde3.blauer)) {
_root.drive.feinde4.weisser._y = _root.drive.feinde4.weisser._y + 16;
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x + 4;
} else if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde4.weisser._y = _root.drive.feinde4.weisser._y + 16;
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x + 4;
}
}
Instance of Symbol 298 MovieClip "zt5443" in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x - 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x - 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x - 15;
}
if (this.hitTest(_root.drive.feinde3.blauer)) {
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x - 15;
}
}
Instance of Symbol 298 MovieClip "erter45645" in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x + 15;
}
if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x + 15;
}
if (this.hitTest(_root.drive.feinde3.blauer)) {
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x + 15;
}
if (this.hitTest(_root.drive.feinde2.roter)) {
_root.drive.feinde4.weisser._x = _root.drive.feinde4.weisser._x + 15;
}
}
Instance of Symbol 297 MovieClip "jghjhhj" in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.feinde4.weisser._y = _root.drive.feinde4.weisser._y - 15;
} else if (this.hitTest(_root.drive.ende)) {
_root.drive.feinde4.gotoAndStop(1);
} else if (this.hitTest(_root.drive.feinde.limo)) {
_root.drive.feinde4.weisser._y = _root.drive.feinde4.weisser._y - 15;
}
}
Instance of Symbol 300 MovieClip "sssw" in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.heart)) {
_root.drive.feinde4.weisser.gotoAndStop("links");
}
}
Instance of Symbol 300 MovieClip "iuui" in Symbol 314 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.heart)) {
_root.drive.feinde4.weisser.gotoAndStop("rechts");
}
}
Symbol 314 MovieClip Frame 4
stop();
Symbol 315 MovieClip Frame 1
var p = 0;
Symbol 315 MovieClip Frame 2
if (p == 1) {
gotoAndPlay (4);
}
Symbol 315 MovieClip Frame 3
gotoAndPlay (2);
Symbol 315 MovieClip Frame 80
zufall = Math.floor((Math.random() * 3) + 1);
if (zufall == 1) {
gotoAndStop ("a");
} else if (zufall == 2) {
gotoAndStop ("b");
} else if (zufall == 3) {
gotoAndStop ("c");
}
Symbol 322 MovieClip Frame 1
stop();
Symbol 329 MovieClip Frame 4
stop();
Symbol 330 MovieClip Frame 2
if (_root.drive.mainbar.munition.munition == 0) {
_root.drive.karre.shot.gotoAndStop(1);
}
Symbol 330 MovieClip Frame 4
_root.drive.mainbar.munition.nextFrame();
_root.drive.munition = _root.drive.munition - 1;
Symbol 330 MovieClip Frame 10
_root.drive.karre.shot.gotoAndStop(1);
Symbol 333 MovieClip Frame 2
if (_root.drive.mainbar.munition.munition == 0) {
_root.drive.karre.shot.gotoAndStop(1);
}
Symbol 333 MovieClip Frame 4
_root.drive.mainbar.munition.nextFrame();
_root.drive.munition = _root.drive.munition - 1;
Symbol 333 MovieClip Frame 10
_root.drive.karre.shot.gotoAndStop(1);
Symbol 334 MovieClip Frame 1
stop();
Symbol 334 MovieClip Frame 4
gotoAndStop (1);
Symbol 335 MovieClip Frame 1
stop();
Symbol 335 MovieClip Frame 5
gotoAndPlay (1);
Symbol 335 MovieClip Frame 9
gotoAndPlay (1);
Symbol 343 MovieClip Frame 1
stop();
Symbol 346 MovieClip Frame 1
stop();
Symbol 348 MovieClip Frame 592
stopAllSounds();
_root.drive.gotoAndStop("fuel");
Symbol 350 MovieClip Frame 1
var munition = 1;
stop();
Symbol 350 MovieClip Frame 17
munition = 0;
_root.drive.ammo.gotoAndStop(2);
Symbol 362 MovieClip Frame 1
var score = 0;
Symbol 362 MovieClip Frame 2
stop();
Symbol 364 MovieClip Frame 1
stop();
Symbol 364 MovieClip Frame 9
stopAllSounds();
_root.drive.gotoAndStop("dead");
Symbol 368 MovieClip Frame 1
stop();
Symbol 377 MovieClip Frame 2174
stopAllSounds();
_root.drive.gotoAndStop("finish");
Symbol 381 MovieClip Frame 1
stop();
Symbol 385 MovieClip Frame 1
stop();
Symbol 389 MovieClip Frame 1
stop();
Symbol 393 MovieClip Frame 1
stop();
Symbol 397 MovieClip Frame 1
stop();
Symbol 402 MovieClip Frame 1
stop();
Symbol 402 MovieClip Frame 2
_root.score.score = _root.score.score + 500;
Symbol 413 MovieClip Frame 1
stop();
Symbol 418 MovieClip Frame 105
stop();
Symbol 427 Button
on (release) {
highScoresWindow_mc.removeMovieClip();
gameOverWindow_mc.removeMovieClip();
_root.drive.score.score = 0;
stopAllSounds();
_root.drive.gotoAndStop(2);
}
Symbol 429 MovieClip Frame 1
stopAllSounds();
Symbol 429 MovieClip Frame 2
stop();
Symbol 446 MovieClip Frame 1
function showGameOverWindow() {
stage_mc.attachMovie("gameOverWindow", "gameOverWindow_mc", depth++);
stage_mc.gameOverWindow_mc._x = -280;
stage_mc.gameOverWindow_mc._y = -180;
}
_global.stage_mc = this;
_global.highScoresScript = "http://www.mausland.de/games/php/highwayhunter-db.php";
_global.pressed = "true";
stop();
_quality = "high";
Symbol 446 MovieClip Frame 2
stop();
_quality = "low";
Instance of Symbol 189 MovieClip in Symbol 446 MovieClip Frame 2
onClipEvent (load) {
keyK = 1;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.drive.karre._x = _root.drive.karre._x + 12;
_root.drive.karre.gotoAndPlay("rechts");
} else if (Key.isDown(37)) {
_root.drive.karre._x = _root.drive.karre._x - 12;
_root.drive.karre.gotoAndPlay("links");
} else if (Key.isDown(38)) {
_root.drive.karre._y = _root.drive.karre._y - 9;
_root.drive.gas.play();
} else if (Key.isDown(40)) {
_root.drive.karre._y = _root.drive.karre._y + 9;
_root.drive.karre.shot.bremslicht.gotoAndPlay(2);
_root.drive.brake.play();
} else if (Key.isDown(83)) {
_root.drive.karre.shot.gotoAndPlay("rechts");
} else if (Key.isDown(65)) {
_root.drive.karre.shot.gotoAndPlay("links");
}
if (Key.isDown(39) && (Key.isDown(38))) {
_root.drive.karre._x = _root.drive.karre._x + 5;
_root.drive.karre._y = _root.drive.karre._y - 5;
}
if (Key.isDown(37) && (Key.isDown(38))) {
_root.drive.karre._x = _root.drive.karre._x - 5;
_root.drive.karre._y = _root.drive.karre._y - 5;
}
if (Key.isDown(39) && (Key.isDown(40))) {
_root.drive.karre.shot.bremslicht.gotoAndPlay(2);
_root.drive.karre._x = _root.drive.karre._x + 5;
_root.drive.karre._y = _root.drive.karre._y + 5;
}
if (Key.isDown(37) && (Key.isDown(40))) {
_root.drive.karre._x = _root.drive.karre._x - 5;
_root.drive.karre._y = _root.drive.karre._y + 5;
_root.drive.karre.shot.bremslicht.gotoAndPlay(2);
}
if (Key.isDown(39) && (Key.isDown(83))) {
_root.drive.karre.shot.gotoAndPlay("rechts");
}
if (Key.isDown(37) && (Key.isDown(83))) {
_root.drive.karre.shot.gotoAndPlay("rechts");
}
if (Key.isDown(38) && (Key.isDown(83))) {
_root.drive.karre.shot.gotoAndPlay("rechts");
}
if (Key.isDown(40) && (Key.isDown(83))) {
_root.drive.karre.shot.gotoAndPlay("rechts");
_root.drive.karre.shot.bremslicht.gotoAndPlay(2);
}
if (Key.isDown(39) && (Key.isDown(65))) {
if (_root.drive.munition >= 1) {
_root.drive.karre.shot.gotoAndPlay("links");
}
}
if (Key.isDown(37) && (Key.isDown(65))) {
_root.drive.karre.shot.gotoAndPlay("links");
}
if (Key.isDown(38) && (Key.isDown(65))) {
_root.drive.karre.shot.gotoAndPlay("links");
}
if (Key.isDown(40) && (Key.isDown(65))) {
_root.drive.karre.shot.gotoAndPlay("links");
_root.drive.karre.shot.bremslicht.gotoAndPlay(2);
}
}
Instance of Symbol 404 MovieClip "gfgfhgfhhjhjhjdssddsf" in Symbol 446 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.karre._x = _root.drive.karre._x + 20;
}
}
Instance of Symbol 404 MovieClip "gfgfhgfhhjdsdskdjhjdssddsf" in Symbol 446 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.karre._x = _root.drive.karre._x - 20;
}
}
Instance of Symbol 406 MovieClip in Symbol 446 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.karre._y = _root.drive.karre._y - 9;
}
}
Instance of Symbol 406 MovieClip in Symbol 446 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.drive.karre.shot.zone)) {
_root.drive.karre._y = _root.drive.karre._y + 9;
}
}
Symbol 446 MovieClip Frame 3
showGameOverWindow();
var rude = _root.drive.score.score;
_quality = "high";
Symbol 446 MovieClip Frame 4
showGameOverWindow();
var rude = _root.drive.score.score;
_quality = "high";
Symbol 446 MovieClip Frame 5
showGameOverWindow();
var rude = _root.drive.score.score;
rude = rude + 6000;