Frame 1
setProperty("_root.Bar", _yscale , 0);
_level0.load = "Buffering Data...";
Instance of Symbol 36 MovieClip "Size" in Frame 1
onClipEvent (load) {
total = int(_root.getBytesTotal());
}
onClipEvent (enterFrame) {
StatusColor = new Color(_root.Bar);
Loaded = int(_root.getBytesLoaded());
Percent = int((loaded / total) * 100);
if (percent > 20) {
_level0.load = "Warning";
StatusColor.setRGB(12129360);
}
if (percent > 40) {
_level0.load = "This game";
StatusColor.setRGB(12129360);
}
if (percent > 60) {
_level0.load = "might change";
StatusColor.setRGB(12129360);
}
if (percent > 80) {
_level0.load = "the way you think about gaming";
StatusColor.setRGB(12129360);
}
if (percent == 90) {
_level0.load = "in the future...";
StatusColor.setRGB(0);
}
_root.Percent = Percent + " %";
setProperty("_root.Bar", _yscale , Percent);
if (Percent >= 100) {
tellTarget ("_root") {
play();
};
}
}
Frame 2
stop();
Frame 244
stop();
Frame 246
Stage.showMenu = false;
Stage.scaleMode = "noScale";
_root.completescore = 0;
_root.totalscore = 0;
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 10;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 159 MovieClip "cardrive" in Frame 246
onClipEvent (load) {
this.car.blam = 1;
}
Instance of Symbol 163 MovieClip "cardrive2" in Frame 246
onClipEvent (load) {
this.car2.carhit = 1;
}
Instance of Symbol 177 MovieClip "actions" in Frame 246
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndplay("nextLevel");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 247
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 562
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 10;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 562
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndPlay("nextLevel2");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 562
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 562
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 563
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 878
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 12;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 878
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndPlay("nextLevel3");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 878
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 878
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 878
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 879
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 1194
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 12;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 1194
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndplay("nextLevel4");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 1194
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 1194
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 1194
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 1195
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 1510
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 14;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 1510
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndplay("nextLevel5");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 1510
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 1510
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 1510
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 1511
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 1826
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 14;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 1826
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndPlay("nextLevel6");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 1826
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 1826
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 1826
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 1827
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 2142
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 16;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 2142
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndPlay("nextLevel7");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 2142
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 2142
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 2142
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 2143
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 2458
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 16;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 2458
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndplay("nextLevel8");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 2458
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 2458
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 2458
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 2459
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 2774
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 18;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 2774
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndplay("nextlevel9");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 2774
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 2774
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 2774
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 2775
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 3090
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 18;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 3090
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndPlay("nextLevel10");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 3090
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 3090
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 3090
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 3091
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 3406
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 20;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 3406
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndPlay("nextLevel11");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 3406
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 3406
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 3406
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 3407
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 3722
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 22;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay ("end");
_local1.end = "R.I.P.";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 3722
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndplay("nextLevel12");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 3722
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 3722
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 3722
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 3723
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
stopAllSounds();
Frame 4038
_root.depthcount = 30;
_root.timer = 25;
_root.neededscore = 25;
_root.shit = function () {
var _local1 = _root;
var _local3 = this;
if (_local1.timer <= 25) {
} else {
_local1.timer = 0;
var xPos = _local1.man._x;
var yPos = _local1.man._y;
_local1.depthcount++;
if (_local1.depthcount > 300) {
_local1.depthcount = 30;
}
var ctarget = _local1.attachMovie("shit_lnk", "shit_mc" + _local1.depthcount, _local1.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
var _local2 = _root;
var _local3 = this;
_local3._x = _local3._x - 4;
_local3._y = _local3._y + 12;
if (_local3.tip.hitTest(_local2.cardrive.car)) {
if (_local2.cardrive.car._currentframe == 1) {
_local2.cardrive.car.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
if (_local3.tip.hitTest(_local2.cardrive2.car2)) {
if (_local2.cardrive2.car2._currentframe == 1) {
_local2.cardrive2.car2.gotoAndPlay(2);
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
var _local1 = 1;
while (_local1 <= 3) {
if (_local3.tip.hitTest(_local2["wine" + _local1])) {
if (_local2["wine" + _local1].sub_mc._currentframe < 5) {
_local2["wine" + _local1].sub_mc.gotoAndPlay("5");
_local2.score = _local2.score + 1;
_local3.removeMovieClip();
}
}
_local1++;
}
if (_local3._y >= 370) {
_local3.gotoAndPlay(2);
_local3.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
}
};
function gameEnd() {
var _local1 = _root;
if (_local1.cars >= 20) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndStop ("end");
if (_local1.score <= 10) {
}
_local1.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_local1.health <= 0) {
_local1.nextCar = 900000000 /* 0x35A4E900 */;
_local1.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndStop ("end");
_local1.end = "R.I.P.";
}
if ((_local1.score > 10) and (_local1.score <= 20)) {
_local1.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_local1.score > 20) and (_local1.score <= 30)) {
_local1.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
var _local1 = _root;
if ((getTimer() - count) > _local1.nextCar) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count = getTimer();
_local1.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _local1.nextCar2) {
if (Math.random() < 0.05) {
if (_local1.cardrive._currentframe == 1) {
_local1.count2 = getTimer();
_local1.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
var _local1 = _root;
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_local1.wine1._currentframe == 1) {
_local1.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_local1.wine2._currentframe == 1) {
_local1.wine2.gotoAndPlay(2);
}
} else if (_local1.wine3._currentframe == 1) {
_local1.wine3.gotoAndPlay(2);
}
_local1.winecount = getTimer();
}
}
}
function hitWine() {
var _local1 = _root;
if (_local1.man.head.hitTest(_local1.wine1)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine2)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.wine3)) {
_local1.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive.car)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_local1.man.head.hitTest(_local1.cardrive2.car2)) {
_local1.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
var _local1 = _root;
_local1.healthtxt = "Health: " + _local1.health;
_local1.scorecard.drabs = "Hits: " + _local1.score;
_local1.carcard.carbs = "Cars: " + _local1.cars;
}
stop();
_root.count = 0;
_root.count2 = 0;
_root.cars = 0;
_root.health = 100;
_root.score = 0;
_root.winecount = 0;
_root.nextCar = 2500;
_root.nextCar2 = 3000;
_root.nextWine = 0;
_root.nextBottle = 5000;
Instance of Symbol 177 MovieClip "actions" in Frame 4038
onClipEvent (enterFrame) {
_root.moveCar();
_root.hitCar();
_root.keepScore();
_root.throwWine();
_root.hitWine();
_root.startCar();
_root.gameend();
}
onClipEvent (enterFrame) {
if (_root.score >= _root.neededscore) {
_root.gotoAndStop("happyend");
}
_root.timer = _root.timer + 1;
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 15;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 15;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 15;
}
if (_root.man._x >= 550) {
_root.man._x = 550;
}
if (_root.man._x <= 5) {
_root.man._x = 5;
}
if (_root.man._y >= 360) {
_root.man._y = 360;
}
if (_root.man._y <= 5) {
_root.man._y = 5;
}
}
Instance of Symbol 181 MovieClip "ffish" in Frame 4038
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish2" in Frame 4038
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Instance of Symbol 181 MovieClip "ffish3" in Frame 4038
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget (this) {
gotoAndPlay (52);
tellTarget ("_root.soundplayer") {
gotoAndPlay ("eat");
_root.health = _root.health + 5;
if (_root.health > 100) {
_root.health = 100;
}
};
};
}
}
Frame 4039
stop();
_root.totalscore = _root.score;
_root.healthfactor = 100 - _root.health;
_root.totalscore = _root.totalscore * 100;
_root.healthfactor = _root.healthfactor * 10;
_root.completescore = _root.completescore + (_root.totalscore - _root.healthfactor);
_root.score = _root.completescore;
stop();
stop();
Instance of Symbol 177 MovieClip in Frame 4039
onClipEvent (enterFrame) {
_root.startCar();
_root.moveCar();
_root.keepScore();
_root.hitCar();
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.man._x = _root.man._x + 10;
}
if (Key.isDown(37)) {
_root.man._x = _root.man._x - 20;
}
if (Key.isDown(38)) {
_root.man._y = _root.man._y - 10;
}
if (Key.isDown(40)) {
_root.man._y = _root.man._y + 10;
}
if (_root.man._x >= 650) {
_root.man._x = 650;
}
if (_root.man._x <= 200) {
_root.man._x = 200;
}
if (_root.man._y >= 200) {
_root.man._y = 200;
}
if (_root.man._y <= -100) {
_root.man._y = -100;
}
}
Frame 4041
stop();
Symbol 14 MovieClip [shit_lnk] Frame 1
stop();
Symbol 14 MovieClip [shit_lnk] Frame 12
this.removeMovieClip();
Symbol 20 MovieClip Frame 4
gotoAndPlay (1);
Symbol 20 MovieClip Frame 17
this._parent.gotoAndStop(1);
this.gotoAndStop(1);
Symbol 21 MovieClip [wine] Frame 1
this.sub_mc.gotoAndStop(1);
stop();
Symbol 21 MovieClip [wine] Frame 2
this.sub_mc.gotoAndPlay(2);
Symbol 50 Button
on (press) {
getURL ("http://www.totallygame.com", "_blank");
}
Symbol 61 Button
on (press) {
getURL ("http://www.totallygame.com", "_blank");
}
Symbol 70 Button
on (release, keyPress "<Enter>") {
gotoAndStop (246);
}
Symbol 73 Button
on (release, keyPress "h") {
gotoAndStop ("help");
}
Symbol 76 Button
on (release, keyPress "b") {
gotoAndStop ("home");
}
Instance of Symbol 79 MovieClip in Symbol 84 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 1;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Instance of Symbol 79 MovieClip in Symbol 87 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 5;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Instance of Symbol 89 MovieClip "hit2" in Symbol 95 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 2;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Instance of Symbol 89 MovieClip "hit4" in Symbol 95 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 3;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Instance of Symbol 90 MovieClip "hit1" in Symbol 95 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 10;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Instance of Symbol 99 MovieClip "engine" in Symbol 104 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 5;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Instance of Symbol 99 MovieClip "engine" in Symbol 104 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 15;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Instance of Symbol 99 MovieClip "engine" in Symbol 112 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 5;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Symbol 158 MovieClip Frame 1
blam = 1;
stop();
Symbol 158 MovieClip Frame 2
blam = 0;
Symbol 158 MovieClip Frame 12
gotoAndPlay ("angryman1");
Symbol 159 MovieClip Frame 1
stop();
Symbol 159 MovieClip Frame 2
play();
Symbol 159 MovieClip Frame 79
_root.cars = _root.cars + this.car.blam;
Symbol 162 MovieClip Frame 1
this.carhit = 1;
stop();
Symbol 162 MovieClip Frame 2
this.carhit = 0;
Symbol 162 MovieClip Frame 12
gotoAndPlay ("angryman");
Symbol 163 MovieClip Frame 1
stop();
Symbol 163 MovieClip Frame 2
play();
Symbol 163 MovieClip Frame 77
_root.cars = _root.cars + this.car2.carhit;
Symbol 173 MovieClip Frame 1
stop();
Symbol 173 MovieClip Frame 2
_root.health--;
Symbol 177 MovieClip Frame 1
stop();
Symbol 180 Button
on (keyPress "<Space>") {
_root.shit();
}
Symbol 181 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 101)) {
gotoAndPlay (3);
}
Symbol 181 MovieClip Frame 2
gotoAndPlay (1);
Symbol 181 MovieClip Frame 3
play();
Symbol 190 MovieClip Frame 1
stop();
Symbol 193 Button
on (press) {
getURL ("http://www.totallygame.com", "_blank");
}
Symbol 209 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level2 begin");
}
Symbol 217 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level3 begin");
}
Symbol 239 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level4 begin");
}
Symbol 242 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 242 MovieClip Frame 2
gotoAndPlay (1);
Symbol 242 MovieClip Frame 3
play();
Instance of Symbol 87 MovieClip in Symbol 242 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 4;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Instance of Symbol 87 MovieClip in Symbol 242 MovieClip Frame 61
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 4;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Symbol 250 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level5 begin");
}
Instance of Symbol 99 MovieClip "engine" in Symbol 256 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 8;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Symbol 257 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 257 MovieClip Frame 2
gotoAndPlay (1);
Symbol 257 MovieClip Frame 3
play();
Symbol 259 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 259 MovieClip Frame 2
gotoAndPlay (1);
Symbol 259 MovieClip Frame 3
play();
Symbol 267 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level6 begin");
}
Instance of Symbol 79 MovieClip in Symbol 273 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.man.head)) {
tellTarget ("_root.man") {
gotoAndPlay (2);
_root.health = _root.health - 10;
if (_root.health < 0) {
_root.health = 0;
}
};
}
}
Symbol 274 MovieClip Frame 1
stop();
Symbol 274 MovieClip Frame 3
play();
Symbol 275 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 275 MovieClip Frame 2
gotoAndPlay (1);
Symbol 275 MovieClip Frame 3
play();
Symbol 275 MovieClip Frame 4
this.hunter.gotoAndPlay("shoot");
Instance of Symbol 274 MovieClip "hunter" in Symbol 275 MovieClip Frame 60
onClipEvent (enterFrame) {
tellTarget ("_root.tophunter.hunter") {
gotoAndPlay ("shoot");
};
}
Symbol 284 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level7 begin");
}
Symbol 293 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level8 begin");
}
Symbol 302 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level9 begin");
}
Symbol 308 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 308 MovieClip Frame 2
gotoAndPlay (1);
Symbol 308 MovieClip Frame 3
play();
Symbol 314 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level10 begin");
}
Symbol 322 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 322 MovieClip Frame 2
gotoAndPlay (1);
Symbol 322 MovieClip Frame 3
play();
Symbol 330 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level11 begin");
}
Symbol 339 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 339 MovieClip Frame 2
gotoAndPlay (1);
Symbol 339 MovieClip Frame 3
play();
Symbol 348 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level12 begin");
}
Symbol 365 Button
on (release, keyPress "<Enter>") {
gotoAndPlay ("level13 begin");
}
Symbol 385 Button
on (release) {
gotoAndPlay (246);
}
Symbol 398 Button
on (press) {
gotoAndPlay ("level2 begin");
}
Symbol 399 Button
on (press) {
gotoAndPlay ("level3 begin");
}
Symbol 400 Button
on (press) {
gotoAndPlay ("level4 begin");
}
Symbol 401 Button
on (press) {
gotoAndPlay ("level5 begin");
}
Symbol 402 Button
on (press) {
gotoAndPlay ("level6 begin");
}
Symbol 403 Button
on (press) {
gotoAndPlay ("level7 begin");
}
Symbol 404 Button
on (press) {
gotoAndPlay ("level8 begin");
}
Symbol 405 Button
on (press) {
gotoAndPlay ("level9 begin");
}
Symbol 406 Button
on (press) {
gotoAndPlay ("level10 begin");
}
Symbol 407 Button
on (press) {
gotoAndPlay ("level11 begin");
}
Symbol 408 Button
on (press) {
gotoAndPlay ("level12 begin");
}
Symbol 409 Button
on (press) {
gotoAndPlay ("level13 begin");
}
Symbol 410 Button
on (press) {
gotoAndStop ("happyend");
}
Symbol 411 MovieClip Frame 1
System.security.allowDomain("http://www.totallygame.com/");
_global.encrPath = this.createEmptyMovieClip("HighSub", this.getNextHighestDepth());
encrPath._x = 0;
encrPath._y = 0;
HighSub.loadMovie("http://www.totallygame.com/flash/hs.swf");
this.HSvalidation = true;
stop();
Symbol 411 MovieClip Frame 2
encrPath.gameScore = _root.score;
encrPath.ecryptString = "1Cy0qAT";
stop();