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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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.gotoAndStop("morelevels");
}
_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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndPlay (4039);
_root.end = "R.I.P.";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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 () {
if (_root.timer <= 25) {
return(undefined);
}
_root.timer = 0;
var xPos = _root.man._x;
var yPos = _root.man._y;
_root.depthcount++;
if (_root.depthcount > 300) {
_root.depthcount = 30;
}
var ctarget = _root.attachMovie("shit_lnk", "shit_mc" + _root.depthcount, _root.depthcount);
ctarget._x = xPos;
ctarget._y = yPos;
ctarget.onEnterFrame = function () {
this._x = this._x - 4;
this._y = this._y + 12;
if (this.tip.hitTest(_root.cardrive.car)) {
if (_root.cardrive.car._currentframe == 1) {
_root.cardrive.car.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
if (this.tip.hitTest(_root.cardrive2.car2)) {
if (_root.cardrive2.car2._currentframe == 1) {
_root.cardrive2.car2.gotoAndPlay(2);
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
var i = 1;
while (i <= 3) {
if (this.tip.hitTest(_root["wine" + i])) {
if (_root["wine" + i].sub_mc._currentframe < 5) {
_root["wine" + i].sub_mc.gotoAndPlay("5");
_root.score = _root.score + 1;
this.removeMovieClip();
}
}
i++;
}
if (this._y >= 370) {
this.gotoAndPlay(2);
this.onEnterFrame = function () {
this._x = this._x - 8;
};
}
};
};
function gameEnd() {
if (_root.cars >= 20) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndStop (4039);
if (_root.score <= 10) {
}
_root.end = "You Suck!!! You'll be speaking French in no time!!!";
} else if (_root.health <= 0) {
_root.nextCar = 900000000 /* 0x35A4E900 */;
_root.nextCar2 = 900000000 /* 0x35A4E900 */;
gotoAndStop (4039);
_root.end = "R.I.P.";
}
if ((_root.score > 10) and (_root.score <= 20)) {
_root.end = "Not too bad, but you best stay away from the Charbonnay!!";
}
if ((_root.score > 20) and (_root.score <= 30)) {
_root.end = "Great Job!! You'll be hearing from President Bush any day now!!!";
}
}
function startCar() {
if ((getTimer() - count) > _root.nextCar) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count = getTimer();
_root.cardrive.gotoAndPlay(2);
}
}
}
if ((getTimer() - count2) > _root.nextCar2) {
if (Math.random() < 0.05) {
if (_root.cardrive._currentframe == 1) {
_root.count2 = getTimer();
_root.cardrive2.gotoAndPlay(2);
}
}
}
}
function throwWine() {
if ((getTimer() - winecount) > nextBottle) {
if (Math.random() < 0.05) {
a = int(Math.random() * 3) + 1;
if (a == 1) {
if (_root.wine1._currentframe == 1) {
_root.wine1.gotoAndPlay(2);
}
} else if (a == 2) {
if (_root.wine2._currentframe == 1) {
_root.wine2.gotoAndPlay(2);
}
} else if (_root.wine3._currentframe == 1) {
_root.wine3.gotoAndPlay(2);
}
_root.winecount = getTimer();
}
}
}
function hitWine() {
if (_root.man.head.hitTest(_root.wine1)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine2)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.wine3)) {
_root.man.gotoAndPlay(2);
click = new Sound();
click.attachSound("click");
click.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive.car)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
if (_root.man.head.hitTest(_root.cardrive2.car2)) {
_root.man.gotoAndPlay(2);
thump = new Sound();
thump.attachSound("thump");
thump.start(0, 0);
}
}
function keepScore() {
_root.healthtxt = "Health: " + _root.health;
_root.scorecard.drabs = "Hits: " + _root.score;
_root.carcard.carbs = "Cars: " + _root.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();
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 4040
_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);
stop();
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 (245);
}
Symbol 76 Button
on (release, keyPress "b") {
gotoAndStop (244);
}
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 (9);
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 (9);
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 207 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (561);
}
Symbol 216 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (877);
}
Symbol 238 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (1193);
}
Symbol 241 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 241 MovieClip Frame 2
gotoAndPlay (1);
Symbol 241 MovieClip Frame 3
play();
Instance of Symbol 87 MovieClip in Symbol 241 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 241 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 249 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (1509);
}
Instance of Symbol 99 MovieClip "engine" in Symbol 255 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 256 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 256 MovieClip Frame 2
gotoAndPlay (1);
Symbol 256 MovieClip Frame 3
play();
Symbol 258 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 258 MovieClip Frame 2
gotoAndPlay (1);
Symbol 258 MovieClip Frame 3
play();
Symbol 266 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (1825);
}
Instance of Symbol 79 MovieClip in Symbol 272 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 273 MovieClip Frame 1
stop();
Symbol 273 MovieClip Frame 3
play();
Symbol 274 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 274 MovieClip Frame 2
gotoAndPlay (1);
Symbol 274 MovieClip Frame 3
play();
Symbol 274 MovieClip Frame 4
this.hunter.gotoAndPlay("shoot");
Instance of Symbol 273 MovieClip "hunter" in Symbol 274 MovieClip Frame 60
onClipEvent (enterFrame) {
tellTarget ("_root.tophunter.hunter") {
gotoAndPlay ("shoot");
};
}
Symbol 283 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (2141);
}
Symbol 292 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (2457);
}
Symbol 301 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (2773);
}
Symbol 307 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 307 MovieClip Frame 2
gotoAndPlay (1);
Symbol 307 MovieClip Frame 3
play();
Symbol 313 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (3089);
}
Symbol 321 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 321 MovieClip Frame 2
gotoAndPlay (1);
Symbol 321 MovieClip Frame 3
play();
Symbol 329 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (3405);
}
Symbol 338 MovieClip Frame 1
fly = random(1000) + 1;
if ((fly > 100) and (this.fly <= 105)) {
gotoAndPlay (3);
}
Symbol 338 MovieClip Frame 2
gotoAndPlay (1);
Symbol 338 MovieClip Frame 3
play();
Symbol 347 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (3721);
}
Symbol 364 Button
on (release, keyPress "<Enter>") {
gotoAndPlay (4037);
}
Symbol 384 Button
on (release) {
gotoAndPlay (246);
}
Symbol 388 Button
on (press) {
getURL ("http://www.totallygame.com/game.php?id=1894", "_blank");
}