Frame 1
Stage.showMenu = false;
Frame 2
stop();
stopAllSounds();
Frame 3
currently = getTimer();
end = currently + 2000;
Frame 4
currently = getTimer();
Frame 5
if (currently <= end) {
gotoAndPlay (4);
}
Frame 6
score = 0;
_root.bur._x = random(-20);
_root.bur._y = random(550);
if ((_root.bur._x = 500)) {
_root.bur.gotoAndPlay(1);
}
bonsco = 0;
stop();
dupMovie = function () {
i = 0;
i < 1;
i++;
fud.duplicateMovieClip("fud" + i, i, {_x:Math.random() * 0, _y:Math.random() * 400});
i++;
circle.duplicateMovieClip("circle" + i, i, {_x:Math.random() * 550, _y:Math.random() * -40});
};
dupMovie();
myInt = setInterval(this, "dupMovie", 4500);
stop();
_root.createEmptyMovieClip("countDown", 10);
cCenterX = 450;
cCenterY = 370;
_root.countDown.counter._x = 370;
_root.countDown.counter._y = 0;
_root.countDown.createTextField("myTextField", 1, cCenterX, cCenterY, 99, 10);
_root.countDown.myTextField.background = true;
_root.countDown.myTextField.autoSize = "center";
_root.countDown.myTextField.border = false;
_root.countDown.myTextField.backgroundColor = 92841 /* 0x016AA9 */;
_root.countDown.myTextField.textColor = 16777215 /* 0xFFFFFF */;
_root.countDown.myTextField.fontSize = 20;
count = 60;
myCountDown = function () {
count--;
};
countInterval = setInterval(myCountDown, 1000);
this.onEnterFrame = function () {
_root.countDown.myTextField.text = count;
if (count == 0) {
clearInterval(countInterval);
_root.countDown.myTextField.text = "00";
_root.gotoAndStop(7);
}
};
Instance of Symbol 44 MovieClip "player" in Frame 6
onClipEvent (load) {
speed = 6;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x = this._x + speed;
}
if (Key.isDown(37)) {
this._x = this._x - speed;
}
if (Key.isDown(38)) {
this._y = this._y - speed;
}
if (Key.isDown(40)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.wall)) {
this._x = this._x - speed;
}
if (this.hittest(_root.wall1)) {
this._x = this._x + speed;
}
if (this.hittest(_root.wall2)) {
this._y = this._y - speed;
}
if (this.hittest(_root.wall3)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
i = 0;
while (i < 2) {
if (this.hittest(_root["fud" + i])) {
_root.score = _root.score + 5;
_root["fud" + i].swapDepths(getNextHighestDepth());
_root["fud" + i].removeMovieClip();
_root.sound.gotoAndPlay(1);
}
i++;
}
if (this.hittest(_root["circle" + i])) {
_root.score = _root.score + 5;
_root["circle" + i].swapDepths(getNextHighestDepth());
_root["circle" + i].removeMovieClip();
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bur)) {
_root.score = _root.score + 5;
_root.bur.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bomb)) {
_root.score = _root.score - 50;
_root.bomb.gotoAndPlay(1);
}
if (this.hittest(_root.bomb2)) {
_root.score = _root.score - 50;
_root.bomb2.gotoAndPlay(1);
}
if (this.hittest(_root.bon)) {
_root.score = _root.score + 10;
_root.bonsco = _root.bonsco + 1;
_root.bon.gotoAndStop(280);
_root.sound.gotoAndPlay(1);
}
}
Instance of Symbol 46 MovieClip "fud" in Frame 6
onClipEvent (enterFrame) {
this._x = this._x + 6;
}
Instance of Symbol 2 MovieClip [icec1] "circle" in Frame 6
onClipEvent (enterFrame) {
this._y = this._y + 5;
}
Frame 7
_root.bur._x = random(-20);
_root.bur._y = random(400);
if ((_root.bur._x = 500)) {
_root.bur.gotoAndPlay(1);
}
_root.pizza._x = -20;
_root.pizza._y = random(400);
if ((_root.pizza._x = 650)) {
_root.pizza.gotoAndPlay(1);
}
_root.createEmptyMovieClip("countDown", 10);
cCenterX = 450;
cCenterY = 370;
_root.countDown.counter._x = 370;
_root.countDown.counter._y = 0;
_root.countDown.createTextField("myTextField", 1, cCenterX, cCenterY, 99, 10);
_root.countDown.myTextField.background = true;
_root.countDown.myTextField.autoSize = "center";
_root.countDown.myTextField.border = false;
_root.countDown.myTextField.backgroundColor = 0;
_root.countDown.myTextField.textColor = 16777215 /* 0xFFFFFF */;
_root.countDown.myTextField.fontSize = 20;
count = 60;
myCountDown = function () {
count--;
};
countInterval = setInterval(myCountDown, 1000);
this.onEnterFrame = function () {
_root.countDown.myTextField.text = count;
if (count == 0) {
clearInterval(countInterval);
_root.countDown.myTextField.text = "00";
_root.gotoAndStop(8);
}
};
stop();
_root.bon.play();
Instance of Symbol 44 MovieClip "player" in Frame 7
onClipEvent (load) {
speed = 6;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x = this._x + speed;
}
if (Key.isDown(37)) {
this._x = this._x - speed;
}
if (Key.isDown(38)) {
this._y = this._y - speed;
}
if (Key.isDown(40)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.wall)) {
this._x = this._x - speed;
}
if (this.hittest(_root.wall1)) {
this._x = this._x + speed;
}
if (this.hittest(_root.wall2)) {
this._y = this._y - speed;
}
if (this.hittest(_root.wall3)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
i = 0;
while (i < 2) {
if (this.hittest(_root["fud" + i])) {
_root.score = _root.score + 5;
_root["fud" + i].swapDepths(getNextHighestDepth());
_root["fud" + i].removeMovieClip();
_root.sound.gotoAndPlay(1);
}
i++;
}
if (this.hittest(_root["circle" + i])) {
_root.score = _root.score + 5;
_root["circle" + i].swapDepths(getNextHighestDepth());
_root["circle" + i].removeMovieClip();
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bur)) {
_root.score = _root.score + 5;
_root.bur.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.pizza)) {
_root.score = _root.score + 5;
_root.pizza.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.cat)) {
_root.score = _root.score + 5;
_root.cat.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.ecl)) {
_root.score = _root.score + 5;
_root.ecl.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bomb)) {
_root.score = _root.score - 50;
_root.bomb.gotoAndPlay(1);
}
if (this.hittest(_root.bomb2)) {
_root.score = _root.score - 50;
_root.bomb2.gotoAndPlay(1);
}
if (this.hittest(_root.dog)) {
_root.score = _root.score + 5;
_root.dog.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bon)) {
_root.score = _root.score + 10;
_root.bonsco = _root.bonsco + 1;
_root.bon.gotoAndStop(280);
_root.sound.gotoAndPlay(1);
}
}
Frame 8
stop();
_root.bon.play();
_root.createEmptyMovieClip("countDown", 10);
cCenterX = 450;
cCenterY = 370;
_root.countDown.counter._x = 370;
_root.countDown.counter._y = 0;
_root.countDown.createTextField("myTextField", 1, cCenterX, cCenterY, 99, 10);
_root.countDown.myTextField.background = true;
_root.countDown.myTextField.autoSize = "center";
_root.countDown.myTextField.border = false;
_root.countDown.myTextField.backgroundColor = 12255406 /* 0xBB00AE */;
_root.countDown.myTextField.textColor = 16777215 /* 0xFFFFFF */;
_root.countDown.myTextField.fontSize = 20;
count = 60;
myCountDown = function () {
count--;
};
countInterval = setInterval(myCountDown, 1000);
this.onEnterFrame = function () {
_root.countDown.myTextField.text = count;
if (count == 0) {
clearInterval(countInterval);
_root.countDown.myTextField.text = "00";
_root.gotoAndStop(9);
}
};
Instance of Symbol 44 MovieClip "player" in Frame 8
onClipEvent (load) {
speed = 6;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x = this._x + speed;
}
if (Key.isDown(37)) {
this._x = this._x - speed;
}
if (Key.isDown(38)) {
this._y = this._y - speed;
}
if (Key.isDown(40)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.wall)) {
this._x = this._x - speed;
}
if (this.hittest(_root.wall1)) {
this._x = this._x + speed;
}
if (this.hittest(_root.wall2)) {
this._y = this._y - speed;
}
if (this.hittest(_root.wall3)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
i = 0;
while (i < 2) {
if (this.hittest(_root["fud" + i])) {
_root.score = _root.score + 5;
_root["fud" + i].swapDepths(getNextHighestDepth());
_root["fud" + i].removeMovieClip();
_root.sound.gotoAndPlay(1);
}
i++;
}
if (this.hittest(_root["circle" + i])) {
_root.score = _root.score + 5;
_root["circle" + i].swapDepths(getNextHighestDepth());
_root["circle" + i].removeMovieClip();
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bur)) {
_root.score = _root.score + 5;
_root.bur.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.pizza)) {
_root.score = _root.score + 5;
_root.pizza.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.cat)) {
_root.score = _root.score + 5;
_root.cat.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.ecl)) {
_root.score = _root.score + 5;
_root.ecl.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bomb)) {
_root.score = _root.score - 50;
_root.bomb.gotoAndPlay(1);
}
if (this.hittest(_root.bomb2)) {
_root.score = _root.score - 50;
_root.bomb2.gotoAndPlay(1);
}
if (this.hittest(_root.dog)) {
_root.score = _root.score + 5;
_root.dog.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bon)) {
_root.score = _root.score + 10;
_root.bonsco = _root.bonsco + 1;
_root.bon.gotoAndStop(280);
_root.sound.gotoAndPlay(1);
}
}
Frame 9
if (bonsco < 3) {
gotoAndPlay (10);
}
_root.createEmptyMovieClip("countDown", 10);
cCenterX = 450;
cCenterY = 370;
_root.countDown.counter._x = 370;
_root.countDown.counter._y = 0;
_root.countDown.createTextField("myTextField", 1, cCenterX, cCenterY, 99, 10);
_root.countDown.myTextField.background = true;
_root.countDown.myTextField.autoSize = "center";
_root.countDown.myTextField.border = false;
_root.countDown.myTextField.backgroundColor = 15833535 /* 0xF199BF */;
_root.countDown.myTextField.textColor = 16777215 /* 0xFFFFFF */;
_root.countDown.myTextField.fontSize = 20;
count = 60;
myCountDown = function () {
count--;
};
countInterval = setInterval(myCountDown, 1000);
this.onEnterFrame = function () {
_root.countDown.myTextField.text = count;
if (count == 0) {
clearInterval(countInterval);
_root.countDown.myTextField.text = "00";
_root.gotoAndStop(10);
}
};
Instance of Symbol 44 MovieClip "player" in Frame 9
onClipEvent (load) {
speed = 6;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x = this._x + speed;
}
if (Key.isDown(37)) {
this._x = this._x - speed;
}
if (Key.isDown(38)) {
this._y = this._y - speed;
}
if (Key.isDown(40)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.wall)) {
this._x = this._x - speed;
}
if (this.hittest(_root.wall1)) {
this._x = this._x + speed;
}
if (this.hittest(_root.wall2)) {
this._y = this._y - speed;
}
if (this.hittest(_root.wall3)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
i = 0;
while (i < 2) {
if (this.hittest(_root["fud" + i])) {
_root.score = _root.score + 5;
_root["fud" + i].swapDepths(getNextHighestDepth());
_root["fud" + i].removeMovieClip();
_root.sound.gotoAndPlay(1);
}
i++;
}
if (this.hittest(_root["circle" + i])) {
_root.score = _root.score + 5;
_root["circle" + i].swapDepths(getNextHighestDepth());
_root["circle" + i].removeMovieClip();
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bur)) {
_root.score = _root.score + 5;
_root.bur.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.pizza)) {
_root.score = _root.score + 5;
_root.pizza.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.cat)) {
_root.score = _root.score + 5;
_root.cat.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.ecl)) {
_root.score = _root.score + 5;
_root.ecl.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.bomb)) {
_root.score = _root.score - 50;
_root.bomb.gotoAndPlay(1);
}
if (this.hittest(_root.bomb2)) {
_root.score = _root.score - 50;
_root.bomb2.gotoAndPlay(1);
}
if (this.hittest(_root.dog)) {
_root.score = _root.score + 5;
_root.dog.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.milk)) {
_root.score = _root.score + 10;
_root.milk.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.milk2)) {
_root.score = _root.score + 10;
_root.milk2.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
if (this.hittest(_root.milk3)) {
_root.score = _root.score + 10;
_root.milk3.gotoAndPlay(1);
_root.sound.gotoAndPlay(1);
}
}
Frame 10
_root.createEmptyMovieClip("countDown", 10);
cCenterX = 450;
cCenterY = 370;
_root.countDown.counter._x = 370;
_root.countDown.counter._y = 0;
_root.countDown.createTextField("myTextField", 1, cCenterX, cCenterY, 99, 10);
_root.countDown.myTextField.background = true;
_root.countDown.myTextField.autoSize = "center";
_root.countDown.myTextField.border = false;
_root.countDown.myTextField.backgroundColor = 48137;
_root.countDown.myTextField.textColor = 16777215 /* 0xFFFFFF */;
_root.countDown.myTextField.fontSize = 20;
count = 60;
myCountDown = function () {
count--;
};
countInterval = setInterval(myCountDown, 1000);
this.onEnterFrame = function () {
_root.countDown.myTextField.text = count;
if (count == 0) {
clearInterval(countInterval);
_root.countDown.myTextField.text = "00";
_root.gotoAndStop(11);
}
};
stop();
Frame 11
stop();
_root.countdown._x = 600;
stopAllSounds();
Instance of Symbol 44 MovieClip "player" in Frame 11
onClipEvent (load) {
speed = 8;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x = this._x + speed;
}
if (Key.isDown(37)) {
this._x = this._x - speed;
}
if (Key.isDown(38)) {
this._y = this._y - speed;
}
if (Key.isDown(40)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
if (this.hittest(_root.wall)) {
this._x = this._x - speed;
}
if (this.hittest(_root.wall1)) {
this._x = this._x + speed;
}
if (this.hittest(_root.wall2)) {
this._y = this._y - speed;
}
if (this.hittest(_root.wall3)) {
this._y = this._y + speed;
}
}
onClipEvent (enterFrame) {
i = 0;
while (i < 2) {
if (this.hittest(_root["fud" + i])) {
_root.score = _root.score + 5;
_root["fud" + i].swapDepths(getNextHighestDepth());
_root["fud" + i].removeMovieClip();
}
i++;
}
if (this.hittest(_root["circle" + i])) {
_root.score = _root.score + 5;
_root["circle" + i].swapDepths(getNextHighestDepth());
_root["circle" + i].removeMovieClip();
}
if (this.hittest(_root.bur)) {
_root.score = _root.score + 5;
_root.bur.gotoAndPlay(1);
}
if (this.hittest(_root.pizza)) {
_root.score = _root.score + 5;
_root.pizza.gotoAndPlay(1);
}
if (this.hittest(_root.cat)) {
_root.score = _root.score + 5;
_root.cat.gotoAndPlay(1);
}
if (this.hittest(_root.ecl)) {
_root.score = _root.score + 5;
_root.ecl.gotoAndPlay(1);
}
if (this.hittest(_root.bomb)) {
_root.score = _root.score - 50;
_root.bomb.gotoAndPlay(1);
}
if (this.hittest(_root.bomb2)) {
_root.score = _root.score - 50;
_root.bomb2.gotoAndPlay(1);
}
if (this.hittest(_root.dog)) {
_root.score = _root.score + 5;
_root.dog.gotoAndPlay(1);
}
if (this.hittest(_root.milk)) {
_root.score = _root.score + 10;
_root.milk.gotoAndPlay(1);
}
if (this.hittest(_root.milk2)) {
_root.score = _root.score + 10;
_root.milk2.gotoAndPlay(1);
}
if (this.hittest(_root.milk3)) {
_root.score = _root.score + 10;
_root.milk3.gotoAndPlay(1);
}
}
Frame 12
stop();
Frame 13
stop();
Symbol 2 MovieClip [icec1] Frame 1
stop();
Symbol 2 MovieClip [icec1] Frame 2
stop();
Symbol 12 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndPlay (5);
}
Symbol 12 MovieClip Frame 2
gotoAndPlay (1);
Symbol 12 MovieClip Frame 40
_root.play();
Symbol 16 Button
on (release) {
getURL ("http://pixelpixelpants20.googlepages.com/");
}
Symbol 20 Button
on (release) {
getURL ("http://headshot777.newgrounds.com/");
}
Symbol 23 Button
on (release) {
getURL ("http://pixelpants.newgrounds.com/");
}
Symbol 29 Button
on (release) {
gotoAndPlay (3);
}
Symbol 33 Button
on (release) {
gotoAndPlay (12);
}
Symbol 53 MovieClip Frame 2
stop();
Symbol 56 MovieClip Frame 1
_root.bur._x = random(-20);
_root.bur._y = random(550);
Symbol 58 MovieClip Frame 1
_root.bomb._x = 780;
_root.bomb._y = random(400);
Symbol 60 MovieClip Frame 1
_root.bomb2._x = random(550);
_root.bomb2._y = -140;
Symbol 62 MovieClip Frame 280
stop();
Symbol 67 MovieClip Frame 1
_root.ecl._x = random(550);
_root.ecl._y = -140;
Symbol 69 MovieClip Frame 1
_root.cat._x = 780;
_root.cat._y = random(400);
Symbol 71 MovieClip Frame 1
_root.pizza._x = -20;
_root.pizza._y = random(400);
Symbol 73 MovieClip Frame 1
_root.dog._x = 780;
_root.dog._y = random(400);
Symbol 81 MovieClip Frame 1
_root.milk._x = 780;
_root.milk._y = random(400);
Symbol 83 MovieClip Frame 1
_root.milk2._x = -20;
_root.milk2._y = random(400);
Symbol 85 MovieClip Frame 1
_root.milk3._x = random(550);
_root.milk3._y = -140;
Symbol 94 Button
on (release) {
gotoAndPlay (2);
}
Symbol 99 Button
on (release) {
gotoAndPlay (13);
}
Symbol 106 Button
on (release) {
gotoAndPlay (3);
}