Frame 1
function shake(howbig, duration) {
_root.shakeamount = howbig;
_root.shakeduration = duration;
_root.shakedirection = "left";
}
function gotoEnemy3(whichframe) {
enemies3.gotoAndStop(1);
enemies3.gotoAndStop(whichframe);
}
function gotoEnemy4(whichframe) {
enemies4.gotoAndStop(1);
enemies4.gotoAndStop(whichframe);
}
function gotoEnemy(whichframe) {
enemies.gotoAndStop(1);
enemies.gotoAndStop(whichframe);
}
function gotoEnemy2(whichframe) {
enemies2.gotoAndStop(1);
enemies2.gotoAndStop(whichframe);
}
function talk(speech, duration, character) {
_root.sfx.gotoAndStop("speechstopper");
if (character == "ick") {
if (_root.damage > 0) {
_root.dialogue.allportraits.gotoAndStop("ick_naked");
} else {
_root.dialogue.allportraits.gotoAndStop("ick");
}
} else if (character == "ick_scared") {
if (_root.damage > 0) {
_root.dialogue.allportraits.gotoAndStop("ick_scared_naked");
} else {
_root.dialogue.allportraits.gotoAndStop("ick_scared");
}
} else {
_root.dialogue.allportraits.gotoAndStop(character);
}
_root.dialogue.dialoguetext = speech;
_root.dialogue.timer = 0;
_root.dialogue.timeout = duration;
_root.dialogue.gotoAndPlay(2);
}
function checkpoint() {
_root.cpkatana = thePlayer.haskatana;
_root.checkpointclip.gotoAndPlay(2);
_root.cptimer = _root.gametimer + 1;
}
function soundfx(whichframe) {
_root.sfx.gotoAndStop(whichframe);
_root.sfx.gotoAndStop(1);
}
function takedamage() {
if (thePlayer.hurttimer._currentframe == 1) {
thePlayer.hurttimer.gotoAndPlay(2);
_root.damage++;
if (_root.damage == 1) {
_root.soundfx("hurtsound");
_root.wholegame.shirt._x = _root.wholegame.player._x + 2;
_root.wholegame.shirt._y = _root.wholegame.player._y - 20;
_root.wholegame.shirt._visible = true;
_root.wholegame.pants._x = _root.wholegame.player._x - 25;
_root.wholegame.pants._y = _root.wholegame.player._y - 0;
_root.wholegame.pants._visible = true;
_root.shake(20, 10);
if (thePlayer.haskatana == 0) {
thePlayer.gotoAndStop(1);
thePlayer.gotoAndStop(2);
} else {
thePlayer.gotoAndStop(5);
thePlayer.gotoAndStop(4);
}
} else if (_root.damage > 1) {
_root.music.stop();
_root.soundfx("deathsound");
_root.shake(30, 20);
thePlayer.gotoAndStop("dead");
_root.youdead.gotoAndPlay(2);
}
}
}
function switchweapons() {
_root.katanaflash.gotoAndPlay(2);
soundfx("swordtrans");
if (thePlayer.haskatana == 0) {
ally._visible = false;
thePlayer.haskatana = 1;
thePlayer.gotoAndStop(4);
} else {
ally._x = thePlayer._x;
ally._y = thePlayer._y;
ally._visible = true;
thePlayer.haskatana = 0;
thePlayer.gotoAndStop(1);
}
}
function resumegame() {
gotoEnemy(1);
gotoEnemy2(1);
gotoEnemy3(1);
_root.wholegame.allbg.spacebg.gotoAndPlay(3);
_root.wholegame.allbosses.gotoAndStop(1);
_root.gametimer = _root.cptimer;
_root.damage = 0;
if (_root.cpkatana == 0) {
thePlayer.haskatana = 0;
_root.wholegame.orangebird._visible = true;
thePlayer.gotoAndStop(1);
} else {
thePlayer.haskatana = 1;
_root.wholegame.orangebird._visible = false;
thePlayer.gotoAndStop(5);
}
thePlayer._x = 140;
thePlayer._y = 140;
_root.wholegame.shirt._x = _root.wholegame.player._x + 2;
_root.wholegame.shirt._y = _root.wholegame.player._y - 20;
_root.wholegame.shirt._visible = false;
_root.wholegame.shirt.yspeed = 0;
_root.wholegame.pants._x = _root.wholegame.player._x - 25;
_root.wholegame.pants._y = _root.wholegame.player._y - 0;
_root.wholegame.pants._visible = false;
_root.wholegame.pants.yspeed = 0;
playmusic(_root.whichmusic);
}
function playmusic(whichmusic) {
if (whichmusic == "level1") {
music.loadSound("music/music1.mp3", true);
music.setVolume(23);
} else if (whichmusic == "bossbattle1") {
music.loadSound("music/bossbattle1.mp3", true);
music.setVolume(53);
} else if (whichmusic == "cityscape") {
music.loadSound("music/cityscape.mp3", true);
music.setVolume(33);
} else if (whichmusic == "finalboss") {
music.loadSound("music/bbremix.mp3", true);
music.setVolume(43);
} else if (whichmusic == "dreamy") {
music.loadSound("music/dreamy.mp3", true);
music.setVolume(55);
}
music.start(0, 100);
_root.whichmusic = whichmusic;
}
function setuplevel(whichlevel) {
if (whichlevel == 1) {
playmusic("level1");
_root.stage = 1;
_root.wholegame.allbg.gotoAndStop(1);
_root.wholegame.orangebird._visible = false;
_root.gametimer = 0;
}
if (whichlevel == 2) {
playmusic("dreamy");
_root.wholegame.allbg.gotoAndStop(1);
_root.wholegame.orangebird._visible = true;
_root.stage = 2;
_root.gametimer = 0;
} else if (whichlevel == 3) {
playmusic("cityscape");
_root.wholegame.orangebird._visible = true;
_root.stage = 3;
_root.gametimer = 0;
_root.wholegame.allbg.gotoAndStop(2);
} else if (whichlevel == 4) {
playmusic("cityscape");
_root.wholegame.orangebird._visible = true;
_root.stage = 4;
_root.gametimer = 0;
_root.wholegame.allbg.gotoAndStop(3);
_root.wholegame.allbg.spacebg.gotoAndStop(1);
}
_root.wholegame.allbosses.gotoAndStop(1);
_root.damage = 0;
thePlayer.gotoAndStop(1);
thePlayer._x = 140;
thePlayer._y = 140;
_root.wholegame.shirt._x = _root.wholegame.player._x + 2;
_root.wholegame.shirt._y = _root.wholegame.player._y - 20;
_root.wholegame.shirt._visible = false;
_root.wholegame.shirt.yspeed = 0;
_root.wholegame.pants._x = _root.wholegame.player._x - 25;
_root.wholegame.pants._y = _root.wholegame.player._y - 0;
_root.wholegame.pants._visible = false;
_root.wholegame.pants.yspeed = 0;
}
_quality = "LOW";
var music = new Sound();
var thePlayer = _root.wholegame.player;
var ally = _root.wholegame.orangebird;
var enemies = _root.wholegame.enemystages;
var enemies2 = _root.wholegame.enemystages2;
var enemies3 = _root.wholegame.enemystagesCOPY;
var enemies4 = _root.wholegame.enemystagesCOPY2;
_root.cpkatana = 0;
thePlayer.xspeed = 0;
thePlayer.yspeed = 0;
thePlayer.haskatana = 0;
thePlayer.flying = "straight";
var cptimer = 0;
var accel = 1;
var stage = 0;
var gametimer = 0;
_root.skipobamadialogue = 0;
_root.damage = 0;
_root.shakeamount = 0;
_root.shakeduration = 0;
_root.shakedirection = 0;
_root.wholegame._visible = false;
_root.readytofirstattack = 0;
a = 0;
while (a < 40) {
duplicateMovieClip (_root.poop1, "poop" + a, a);
a++;
}
a = 40;
while (a < 70) {
duplicateMovieClip (_root.poop2, "poop2" + a, a);
a++;
}
bgblocker.swapDepths(1500);
titlescreen.swapDepths(1499);
firstcinematic.swapDepths(1201);
secondcinematic.swapDepths(1200);
thirdcinematic.swapDepths(1202);
finalcutscene.swapDepths(1203);
youdead.swapDepths(905);
thePlayer.swapDepths(900);
_root.wholegame.shirt.swapDepths(920);
_root.wholegame.pants.swapDepths(940);
dialogue.swapDepths(1300);
checkpointclip.swapDepths(1100);
keyListener = new Object();
keyListener.onKeyDown = function () {
if (damage < 2) {
if (thePlayer.slashtimer == 0) {
x = Key.getAscii();
if (x == 122) {
if (thePlayer.haskatana == 1) {
thePlayer.gotoAndStop("swipe");
thePlayer.slashtimer = 5;
if (_root.damage == 0) {
thePlayer.swipeanim.gotoAndPlay(1);
} else {
thePlayer.swipeanim.gotoAndPlay(10);
}
}
}
}
}
};
Key.addListener(keyListener);
thePlayer.onEnterFrame = function () {
if (_root.damage < 2) {
_root.gametimer++;
}
thePlayer._x = thePlayer._x + thePlayer.xspeed;
thePlayer._y = thePlayer._y + thePlayer.yspeed;
if (_root.damage < 2) {
if (Key.isDown(37)) {
thePlayer.xspeed = thePlayer.xspeed - accel;
} else if (Key.isDown(39)) {
thePlayer.xspeed = thePlayer.xspeed + accel;
} else {
thePlayer.xspeed = thePlayer.xspeed * 0.95;
}
if (Key.isDown(38)) {
if (thePlayer.flying != "up") {
thePlayer.flying = "up";
if (thePlayer.haskatana == 0) {
thePlayer.gotoAndStop("flyup");
} else if (thePlayer._currentframe != 7) {
thePlayer.gotoAndStop("flyup_kat");
}
}
thePlayer.yspeed = thePlayer.yspeed - accel;
} else if (Key.isDown(40)) {
if (thePlayer.flying != "down") {
thePlayer.flying = "down";
if (thePlayer.haskatana == 0) {
thePlayer.gotoAndStop("flydown");
} else if (thePlayer._currentframe != 7) {
thePlayer.gotoAndStop("flydown_kat");
}
}
thePlayer.yspeed = thePlayer.yspeed + accel;
} else if (thePlayer.flying != "straight") {
thePlayer.flying = "straight";
if (thePlayer.haskatana == 0) {
thePlayer.gotoAndStop("flystraight");
} else if (thePlayer._currentframe != 7) {
thePlayer.gotoAndStop("flystraight_kat");
}
}
}
thePlayer.yspeed = thePlayer.yspeed + 0.06;
if (thePlayer._x < 0) {
thePlayer._x = 0;
thePlayer.xspeed = thePlayer.xspeed * -0.4;
} else if (thePlayer._x > 1080) {
thePlayer._x = 1080;
thePlayer.xspeed = thePlayer.xspeed * -0.4;
}
if (thePlayer._y < 0) {
thePlayer._y = 0;
thePlayer.yspeed = thePlayer.yspeed * -0.4;
} else if (thePlayer._y > 535) {
thePlayer._y = 535;
thePlayer.yspeed = thePlayer.yspeed * -0.4;
}
if (_root.shakeamount > 0) {
if (_root.shakedirection == "left") {
_root.wholegame._x = -1 * _root.shakeamount;
_root.shakedirection = "right";
} else {
_root.wholegame._x = _root.shakeamount;
_root.shakedirection = "left";
}
_root.shakeamount = _root.shakeamount - (10 / _root.shakeduration);
} else if (_root.shakeamount < 0) {
_root.shakeamount = 0;
_root.shakeduration = 0;
_root.shakedirection = 0;
_root.wholegame._x = 0;
}
};
_root.wholegame.onEnterFrame = function () {
if (stage == 1) {
if (gametimer == 100) {
talk("holy wow! i can't stop making boom booms out my bottom!", 140, "ick_scared");
} else if (gametimer == 300) {
talk("this would be a magical experience if not for the boom booms!", 140, "ick_scared");
} else if (gametimer == 500) {
talk("oh no! ducks! i'd better use the arrow keys to avoid them!", 140, "ick_scared");
} else if (gametimer == 650) {
gotoEnemy(2);
} else if (gametimer == 850) {
gotoEnemy(3);
} else if (gametimer == 1100) {
gotoEnemy(4);
} else if (gametimer == 1300) {
gotoEnemy(5);
} else if (gametimer == 1470) {
talk("these ducks are driving me bonkers!", 80, "ick_scared");
} else if (gametimer == 1500) {
gotoEnemy(6);
} else if (gametimer == 1700) {
gotoEnemy(7);
} else if (gametimer == 1900) {
talk("this whole situation is... 'fowl.'", 90, "ick");
} else if (gametimer == 1950) {
gotoEnemy(8);
} else if (gametimer == 2100) {
gotoEnemy3(4);
} else if (gametimer == 2180) {
gotoEnemy(8);
} else if (gametimer == 2300) {
gotoEnemy3(4);
} else if (gametimer == 2500) {
ally._visible = true;
} else if (gametimer == 2750) {
talk("holy wow! what is this orange bird-thing?", 140, "ick_scared");
} else if (gametimer == 2950) {
talk("greetings, greatest birdkin. what dost thy call thyself?", 140, "bird");
} else if (gametimer == 3150) {
talk("gosh! a bird with a hat! what kind of bird are you?!", 140, "ick_scared");
} else if (gametimer == 3350) {
talk("i am what the american indians called a 'spirit animal.'", 140, "bird");
} else if (gametimer == 3550) {
talk("wow! i always thought the indians were just full of shit!", 140, "ick_scared");
} else if (gametimer == 3750) {
talk("i saw thou fly by from a great distance...", 140, "bird");
} else if (gametimer == 3900) {
talk("truly, i have never seen a bird fly as swiftly as thou.", 140, "bird");
} else if (gametimer == 4100) {
talk("thanks dude! it's the boom booms.", 140, "ick");
} else if (gametimer == 4300) {
talk("it would be an honor if i could fly alongside thou.", 140, "bird");
} else if (gametimer == 4500) {
talk("feel free bro! i could use some company up here!", 140, "ick");
} else if (gametimer == 4670) {
talk("then let us be partners for the duration of your journeys!", 150, "bird");
} else if (gametimer == 4850) {
checkpoint();
} else if (gametimer == 4950) {
talk("watch out behind thyself! geese of a vile disposition!", 150, "bird");
} else if (gametimer == 5000) {
gotoEnemy2(2);
} else if (gametimer == 6500) {
talk("thank the gods! the brutes seem to have passed.", 130, "bird");
} else if (gametimer == 6660) {
talk("those geese looked 'honkin' mad.", 110, "ick");
} else if (gametimer == 6900) {
gotoEnemy2(1);
talk("as a spirit animal, i have great magical powers.", 110, "bird");
} else if (gametimer == 7050) {
talk("i can transform into 'blood destiny,' a mighty katana!!!!", 130, "bird");
} else if (gametimer == 7190) {
talk("cool beans! a katana would be dope as heck right about now!", 130, "ick_scared");
} else if (gametimer == 7340) {
talk("blood destiny... my body becomes your blade!", 90, "bird");
} else if (gametimer == 7430) {
switchweapons();
} else if (gametimer == 7490) {
talk("holy wow! you turned into the katana 'blood destiny!' fuck!", 130, "ick_scared");
} else if (gametimer == 7630) {
talk("press the 'z button' to smite thy enemies with my mighty edge!!!!", 130, "bird");
} else if (gametimer == 7760) {
checkpoint();
} else if (gametimer == 7860) {
gotoEnemy(9);
} else if (gametimer == 8000) {
gotoEnemy3(9);
} else if (gametimer == 8990) {
_root.levelup.gotoAndPlay(70);
gotoEnemy(1);
} else if (gametimer == 9140) {
gotoEnemy3(1);
switchweapons();
talk("you truly smote those birds with a vengeance!", 120, "bird");
} else if (gametimer == 9250) {
talk("thanks jerry! oh hey!!! i still can't stop shitting!.", 130, "ick");
} else if (gametimer == 9390) {
talk("yes, i had not failed to notice. you are truly a passionate bird.", 130, "bird");
} else if (gametimer == 9530) {
checkpoint();
} else if (gametimer == 9610) {
talk("more ducks! use 'blood destiny,' icarus!", 100, "bird");
} else if (gametimer == 9690) {
switchweapons();
} else if (gametimer == 9700) {
gotoEnemy(8);
} else if (gametimer == 9810) {
gotoEnemy3(4);
} else if (gametimer == 9920) {
gotoEnemy(8);
} else if (gametimer == 10030) {
gotoEnemy3(4);
} else if (gametimer == 10140) {
gotoEnemy(8);
} else if (gametimer == 10250) {
gotoEnemy3(4);
} else if (gametimer == 10360) {
gotoEnemy(9);
gotoEnemy2(2);
} else if (gametimer == 10500) {
gotoEnemy3(9);
} else if (gametimer == 11900) {
switchweapons();
gotoEnemy(1);
gotoEnemy2(1);
gotoEnemy3(1);
} else if (gametimer == 12000) {
talk("you are so skilled at smiting birds! it is a little disturbing!", 130, "bird");
} else if (gametimer == 12150) {
talk("i'm more disturbed by the fact that i'm still makin' boom booms.", 130, "ick_scared");
} else if (gametimer == 12300) {
talk("i must have expelled ten times my body weight by now.", 130, "ick_scared");
} else if (gametimer == 12450) {
talk("it seems impossible from a physiological perspective.", 130, "ick_scared");
} else if (gametimer == 12600) {
talk("i'm beginning to question my faith and the universe itself.", 130, "ick_scared");
} else if (gametimer == 12750) {
talk("in what kind of universe could one man poop so?", 130, "ick_scared");
} else if (gametimer == 12900) {
talk("and is that a universe in which i want to exist?", 130, "ick_scared");
} else if (gametimer == 13040) {
_root.levelup.gotoAndPlay(2);
} else if (gametimer == 13090) {
talk("by the gods, icarus! look out behind you! nazis!!!", 130, "bird");
} else if (_root.gametimer == 13210) {
_root.playmusic("bossbattle1");
} else if (_root.gametimer == 13220) {
checkpoint();
} else if (gametimer == 13230) {
_root.wholegame.allbosses.gotoAndStop(2);
talk("nazis?! in 2010?!", 80, "ick_scared");
} else if (gametimer == 13320) {
talk("neo nazis!", 60, "bird");
} else if (gametimer == 13570) {
talk("achtung! das boom boom ist mas grandegeist!!!", 120, "nazi");
}
} else if (stage == 2) {
if (gametimer == 20) {
_root.passwordshow.gotoAndPlay(2);
_root.wholegame.orangebird._visible = true;
talk("what do we do now?", 100, "ick_scared");
} else if (gametimer == 140) {
talk("fly? and poop? i know not!", 100, "bird");
} else if (gametimer == 260) {
checkpoint();
} else if (gametimer == 360) {
_root.wholegame.allbosses.gotoAndStop(3);
}
} else if (stage == 3) {
if (gametimer == 20) {
_root.passwordshow.gotoAndPlay(202);
_root.wholegame.orangebird._visible = true;
talk("wow! i never knew i lived so close to new york city!", 120, "ick");
} else if (gametimer == 160) {
talk("look! the statues of liberty!", 100, "bird");
} else if (gametimer == 280) {
talk("the empire state buildings look so majestic from up here!", 120, "ick_scared");
} else if (gametimer == 420) {
talk("halt! identify yourselves!", 60, "general");
} else if (gametimer == 500) {
talk("i'm icarus proudbottom and this is my spirit animal jerry.", 120, "ick_scared");
} else if (gametimer == 640) {
talk("this is a no-fly zone! leave or we must attack!", 100, "general");
} else if (gametimer == 760) {
talk("but i can't stop pooping! that's the whole theme!", 100, "ick_scared");
} else if (gametimer == 880) {
talk("unleash the military ducks!", 100, "general");
} else if (gametimer == 1000) {
checkpoint();
} else if (gametimer == 1100) {
talk("oh god no... not more ducks...", 100, "ick_scared");
} else if (gametimer == 1200) {
switchweapons();
} else if (gametimer == 1250) {
gotoEnemy3(9);
} else if (gametimer == 1300) {
gotoEnemy(9);
} else if (gametimer == 1350) {
gotoEnemy4(9);
} else if (gametimer == 2000) {
talk("please... god... no more ducks!", 100, "ick_scared");
} else if (gametimer == 2600) {
_root.switchweapons();
gotoEnemy(1);
gotoEnemy3(1);
gotoEnemy4(1);
} else if (gametimer == 2650) {
talk("this is so lame! all i fight in this adventure is ducks?", 100, "ick_scared");
} else if (gametimer == 2770) {
talk("we... only had the month of july to craft our defenses.", 100, "general");
} else if (gametimer == 2890) {
talk("there's nothing cooler i can fight?!", 100, "ick_scared");
} else if (gametimer == 3009) {
_root.playmusic("bossbattle1");
} else if (gametimer == 3010) {
checkpoint();
} else if (gametimer == 3070) {
_root.wholegame.allbosses.gotoAndStop(5);
}
} else if (stage == 4) {
if (gametimer == 20) {
_root.passwordshow.gotoAndPlay(402);
_root.wholegame.orangebird._visible = true;
talk("wow! who would have thought that outer space was so close?!", 120, "ick_scared");
} else if (gametimer == 160) {
talk("all we had to do was fly 'up!'", 100, "bird");
} else if (gametimer == 280) {
talk("oh dang! asteroids!", 120, "ick_scared");
} else if (gametimer == 420) {
checkpoint();
} else if (gametimer == 500) {
gotoEnemy(10);
} else if (gametimer == 600) {
gotoEnemy3(10);
} else if (gametimer == 700) {
gotoEnemy4(10);
} else if (gametimer == 1499) {
checkpoint();
} else if (gametimer == 1590) {
_root.talk("the asteroid field is getting thick! use blood destiny!", 140, "bird");
} else if (gametimer == 1740) {
gotoEnemy4(1);
gotoEnemy3(1);
gotoEnemy(1);
_root.switchweapons();
} else if (gametimer == 1790) {
gotoEnemy3(11);
} else if (gametimer == 1890) {
gotoEnemy(11);
} else if (gametimer == 1990) {
gotoEnemy4(11);
} else if (gametimer == 3499) {
_root.music.stop();
} else if (gametimer == 3500) {
_root.switchweapons();
checkpoint();
gotoEnemy4(1);
gotoEnemy3(1);
gotoEnemy(1);
} else if (gametimer == 3550) {
_root.talk("do you smell something?", 90, "ick_scared");
} else if (gametimer == 3660) {
_root.talk("yes... a bitter smell, lemony, but familiar.", 100, "bird");
} else if (gametimer == 3780) {
playmusic("finalboss");
_root.wholegame.allbosses.gotoAndStop(4);
}
}
};
music.onSoundComplete = function () {
playmusic(whichmusic);
};
Instance of Symbol 257 MovieClip "wholegame" in Frame 1
/* no clip actions */
Instance of Symbol 259 MovieClip "poop1" in Frame 1
onClipEvent (load) {
function resetshit() {
if (_root.damage < 2) {
this.gotoAndPlay(1);
var _local3 = random(10) - 5;
this._x = (_root.thePlayer._x - 4) + _local3;
this._y = (_root.thePlayer._y - 4) + _local3;
this.gravity = 0;
this.xspeed = (random(80) + 10) * -0.8;
this.yspeed = (random(100) - 50) * 0.15;
}
}
this.gravity = 0;
this.xspeed = (random(80) + 10) * -0.8;
this.yspeed = (random(100) - 50) * 0.15;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 1.05;
if (this._y > 555) {
this.resetshit();
} else if (this._x < -10) {
this.resetshit();
}
}
Instance of Symbol 260 MovieClip "poop2" in Frame 1
onClipEvent (load) {
function resetshit() {
if (_root.damage < 2) {
this.gotoAndPlay(1);
var _local3 = random(10) - 5;
this._x = (_root.thePlayer._x - 4) + _local3;
this._y = (_root.thePlayer._y - 4) + _local3;
this.gravity = 0;
this.xspeed = random(100) + 10;
this.yspeed = (random(100) - 50) * 0.05;
}
}
this.gravity = 0;
this.xspeed = random(100) + 10;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 1.05;
if (this._y > 555) {
this.resetshit();
} else if (this._x < -5) {
this.resetshit();
}
}
Instance of Symbol 300 MovieClip "dialogue" in Frame 1
onClipEvent (load) {
this.timeout = 1000;
}
onClipEvent (enterFrame) {
if (this._currentframe > 2) {
this.timer++;
if (this.timer == this.timeout) {
this.gotoAndPlay(11);
}
}
}
Symbol 18 MovieClip Frame 144
stop();
Symbol 31 MovieClip Frame 1
stop();
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Instance of Symbol 28 MovieClip in Symbol 31 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
this._x = random(1100);
this.xspeed = (random(100) * 0.1) + 5;
this._y = random(550);
this._alpha = random(50) + 25;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -5) {
this.reset();
}
}
Symbol 31 MovieClip Frame 2
stop();
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Instance of Symbol 30 MovieClip in Symbol 31 MovieClip Frame 2
onClipEvent (load) {
function reset() {
this._x = 1105;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
this._x = 1100;
this.xspeed = (random(100) * 0.5) + 15;
this._y = random(545);
this._alpha = random(50) + 10;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -100) {
if (_parent._currentframe == 2) {
this.reset();
}
}
}
Symbol 31 MovieClip Frame 96
stop();
Symbol 32 MovieClip Frame 1
stop();
Instance of Symbol 3 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1100;
this._y = random(450);
}
}
Instance of Symbol 5 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 7 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 9 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 11 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 13 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 15 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 3 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 5 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 7 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 9 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 11 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 13 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 15 MovieClip in Symbol 32 MovieClip Frame 1
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 7 MovieClip in Symbol 32 MovieClip Frame 2
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 9 MovieClip in Symbol 32 MovieClip Frame 2
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 7 MovieClip in Symbol 32 MovieClip Frame 2
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Instance of Symbol 9 MovieClip in Symbol 32 MovieClip Frame 2
onClipEvent (load) {
this._x = random(1100);
this._y = random(450);
this.xspeed = (random(100) * 0.05) + 1;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
if (this._x < -240) {
this.xspeed = (random(100) * 0.05) + 1;
this._x = 1200;
this._y = random(450);
}
}
Symbol 45 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 2
play();
Instance of Symbol 36 MovieClip in Symbol 45 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Symbol 45 MovieClip Frame 5
gotoAndPlay (2);
Symbol 45 MovieClip Frame 67
gotoAndPlay (40);
Symbol 45 MovieClip Frame 70
_root.sfx.gotoAndStop("machinegun");
Instance of Symbol 36 MovieClip in Symbol 45 MovieClip Frame 70
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Symbol 45 MovieClip Frame 160
_root.sfx.gotoAndStop("machinegunstop");
Symbol 45 MovieClip Frame 253
gotoAndPlay (70);
Instance of Symbol 58 MovieClip "explosioncolor" in Symbol 59 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndPlay(random(5) + 1);
}
Symbol 59 MovieClip Frame 16
stop();
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 1
onClipEvent (load) {
this._x = this._x + (random(40) - 20);
this._y = this._y + (random(40) - 20);
this._xscale = random(50) + 50;
this._yscale = this._xscale;
}
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 5
onClipEvent (load) {
this._x = this._x + (random(40) - 20);
this._y = this._y + (random(40) - 20);
this._xscale = random(50) + 50;
this._yscale = this._xscale;
}
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 10
onClipEvent (load) {
this._x = this._x + (random(40) - 20);
this._y = this._y + (random(40) - 20);
this._xscale = random(50) + 50;
this._yscale = this._xscale;
}
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 15
onClipEvent (load) {
this._x = this._x + (random(40) - 20);
this._y = this._y + (random(40) - 20);
this._xscale = random(50) + 50;
this._yscale = this._xscale;
}
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 20
onClipEvent (load) {
this._x = this._x + (random(40) - 20);
this._y = this._y + (random(40) - 20);
this._xscale = random(50) + 50;
this._yscale = this._xscale;
}
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 25
onClipEvent (load) {
this._x = this._x + (random(40) - 20);
this._y = this._y + (random(40) - 20);
this._xscale = random(50) + 50;
this._yscale = this._xscale;
}
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 30
onClipEvent (load) {
this._x = this._x + (random(40) - 20);
this._y = this._y + (random(40) - 20);
this._xscale = random(50) + 50;
this._yscale = this._xscale;
}
Instance of Symbol 59 MovieClip in Symbol 60 MovieClip Frame 35
onClipEvent (load) {
this._x = this._x + (random(40) - 20);
this._y = this._y + (random(40) - 20);
this._xscale = random(50) + 50;
this._yscale = this._xscale;
}
Symbol 60 MovieClip Frame 51
stop();
Symbol 65 MovieClip Frame 1
stop();
Instance of Symbol 51 MovieClip in Symbol 65 MovieClip Frame 1
onClipEvent (load) {
this.timer = 0;
this.damage = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (this.timer == 0) {
this.damage++;
if (this.damage > 20) {
_root.soundfx("swordbash");
_root.shake(30, 10);
_parent.gotoAndStop(2);
} else {
_root.shake(8, 5);
_root.soundfx("swordbash");
}
this.timer = 8;
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
if (this.timer > 0) {
this.timer--;
}
}
Instance of Symbol 51 MovieClip in Symbol 65 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Symbol 65 MovieClip Frame 2
_root.talk("ach! herr boom boom hast broken das plane tailkreig!!!", 120, "nazi");
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 2
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 2
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 51 MovieClip in Symbol 65 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.damage = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (this.timer == 0) {
this.damage++;
if (this.damage > 20) {
_root.soundfx("swordbash");
_root.shake(30, 10);
_parent.gotoAndStop(3);
} else {
_root.shake(8, 5);
_root.soundfx("swordbash");
}
this.timer = 8;
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
if (this.timer > 0) {
this.timer--;
}
}
Symbol 65 MovieClip Frame 3
_root.talk("ach! das autoplane ist brokengeist!!! mein gott!!!", 120, "nazi");
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 3
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 3
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 51 MovieClip in Symbol 65 MovieClip Frame 3
onClipEvent (load) {
this.timer = 0;
this.damage = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (this.timer == 0) {
this.damage++;
if (this.damage > 20) {
_root.soundfx("swordbash");
_root.shake(30, 10);
_parent.gotoAndPlay(4);
} else {
_root.shake(8, 5);
_root.soundfx("swordbash");
}
this.timer = 8;
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
if (this.timer > 0) {
this.timer--;
}
}
Symbol 65 MovieClip Frame 4
_root.talk("mein gott!! das est not goodgeist! curse herr boom boom!", 120, "nazi");
Symbol 65 MovieClip Frame 25
_root.shake(30, 8);
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 25
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 25
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 25
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 25
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 25
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Instance of Symbol 53 MovieClip in Symbol 65 MovieClip Frame 25
onClipEvent (load) {
function resetsmoke() {
this._x = this.nativex;
this._y = this.nativey;
this._alpha = 50;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
this.nativex = this._x;
this.nativey = this._y;
this.fadeout = (random(100) * 0.05) + 1;
this.xspeed = random(10) + 5;
this.yspeed = (random(100) - 50) * 0.05;
}
onClipEvent (enterFrame) {
this._alpha = this._alpha - this.fadeout;
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this._alpha < 1) {
this.resetsmoke();
}
}
Symbol 65 MovieClip Frame 70
stop();
Instance of Symbol 51 MovieClip in Symbol 65 MovieClip Frame 70
onClipEvent (load) {
this.timer = 0;
this.damage = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (this.timer == 0) {
this.damage++;
if (this.damage > 40) {
_root.soundfx("swordbash");
_root.shake(30, 10);
_parent.gotoAndPlay(71);
} else {
_root.shake(8, 5);
_root.soundfx("swordbash");
}
this.timer = 8;
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
if (this.timer > 0) {
this.timer--;
}
}
Symbol 65 MovieClip Frame 72
_root.shake(25, 12);
Symbol 65 MovieClip Frame 110
this.gotoAndPlay(71);
Symbol 75 MovieClip Frame 1
stop();
Symbol 77 MovieClip Frame 2
this._y = random(375);
Symbol 77 MovieClip Frame 146
this._y = 0;
if (this.biplanerock.planebody._currentframe > 10) {
this.gotoAndPlay(1380);
} else if (this.upordown == 0) {
this.gotoAndPlay(147);
this.upordown = 1;
} else {
this.upordown = 0;
this.gotoAndPlay(392);
}
Symbol 77 MovieClip Frame 201
this.biplanerock.planebody.gunner.gotoAndPlay(2);
_root.sfx.gotoAndStop("machinegun");
Symbol 77 MovieClip Frame 341
this.biplanerock.planebody.gunner.gotoAndStop(1);
_root.sfx.gotoAndStop("machinegunstop");
Symbol 77 MovieClip Frame 391
this.gotoAndPlay(615);
Symbol 77 MovieClip Frame 451
this.biplanerock.planebody.gunner.gotoAndPlay(2);
_root.sfx.gotoAndStop("machinegun");
Symbol 77 MovieClip Frame 576
this.biplanerock.planebody.gunner.gotoAndStop(1);
_root.sfx.gotoAndStop("machinegunstop");
Symbol 77 MovieClip Frame 613
this.gotoAndPlay(615);
Symbol 77 MovieClip Frame 705
this.biplanerock.planebody.gunner.gotoAndPlay(6);
if (!attackthetail) {
_root.talk("he's reloading! attack the tail now, icarus!", 100, "bird");
attackthetail = 1;
}
Symbol 77 MovieClip Frame 737
_root.switchweapons();
Symbol 77 MovieClip Frame 1150
this.biplanerock.planebody.gunner.gotoAndStop(1);
Instance of Symbol 75 MovieClip in Symbol 77 MovieClip Frame 1180
onClipEvent (load) {
this.gotoAndStop(_parent.biplanerock.planebody._currentframe);
}
Symbol 77 MovieClip Frame 1206
_root.switchweapons();
Symbol 77 MovieClip Frame 1370
gotoAndPlay (1);
Symbol 77 MovieClip Frame 1395
_root.talk("the enemy is weak!!", 80, "bird");
Symbol 77 MovieClip Frame 1440
_root.switchweapons();
Symbol 77 MovieClip Frame 1465
_root.talk("der machinegun! shooten! shooten das mankreig!!!", 120, "nazi");
Symbol 77 MovieClip Frame 1469
this.biplanerock.planebody.gunner.gotoAndPlay(70);
Symbol 77 MovieClip Frame 1470
if (this.biplanerock.planebody._currentframe > 70) {
this.gotoAndPlay(1915);
}
Symbol 77 MovieClip Frame 1910
this.gotoAndPlay(1470);
Symbol 77 MovieClip Frame 1915
this.biplanerock.planebody.gunner.gotoAndStop(1);
_root.sfx.gotoAndStop("machinegunstop");
Symbol 77 MovieClip Frame 1940
_root.talk("nein!!! nein!!!", 60, "nazi");
Instance of Symbol 75 MovieClip in Symbol 77 MovieClip Frame 2035
onClipEvent (load) {
this.gotoAndStop(4);
}
Symbol 77 MovieClip Frame 2101
_root.talk("ich bin go boom!", 40, "nazi");
Symbol 77 MovieClip Frame 2191
_root.music.stop();
Symbol 77 MovieClip Frame 2305
_root.switchweapons();
Symbol 77 MovieClip Frame 2380
_root.talk("thy enemy has been vanquished, icarus... well done.", 100, "bird");
Symbol 77 MovieClip Frame 2530
_root.talk("i don't think those guys spoke a word of german.", 120, "ick_scared");
Symbol 77 MovieClip Frame 2700
_root.firstcinematic.gotoAndPlay(2);
_root.damage = 0;
_parent.gotoAndStop(1);
Symbol 108 MovieClip Frame 1
stop();
Instance of Symbol 102 MovieClip in Symbol 108 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Symbol 108 MovieClip Frame 4
_root.shake(20, 40);
Symbol 108 MovieClip Frame 10
stop();
Symbol 108 MovieClip Frame 20
gotoAndStop (2);
Symbol 108 MovieClip Frame 34
gotoAndStop (1);
Symbol 108 MovieClip Frame 43
this.gotoAndPlay(40);
Symbol 109 MovieClip Frame 2
stop();
Symbol 114 MovieClip Frame 2
_parent.torso.gotoAndStop(2);
Symbol 114 MovieClip Frame 26
_parent.torso.gotoAndPlay(3);
Symbol 114 MovieClip Frame 123
_parent.torso.gotoAndPlay(11);
Symbol 114 MovieClip Frame 147
_parent.torso.gotoAndStop(1);
Instance of Symbol 51 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.torso._currentframe < 25) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
_root.shake(20, 6);
_parent.torso.gotoAndPlay(25);
_parent.damage++;
var whichsound = random(3);
if (whichsound == 0) {
_root.soundfx("peemanhurt1");
} else if (whichsound == 1) {
_root.soundfx("peemanhurt2");
} else {
_root.soundfx("peemanhurt3");
}
if (_parent.damage > 25) {
_parent.damage = 0;
_parent.dead = 1;
}
}
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 115 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 51 MovieClip in Symbol 115 MovieClip Frame 110
onClipEvent (load) {
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 1) {
_root.talk("holy moses! who the heck are you?", 90, "ick_scared");
} else if (this.timer == 105) {
_root.talk("my name does not matter... please, tell me about yourself.", 140, "peeman");
} else if (this.timer == 305) {
_root.talk("i'm icarus proudbottom, and this is my spirit animal jerry.", 140, "ick");
} else if (this.timer == 445) {
_root.talk("'sup.", 60, "bird");
} else if (this.timer == 520) {
_root.talk("i can't stop making boom boom...", 70, "ick");
} else if (this.timer == 595) {
_root.talk("and it seems you can't stop going pee pee.", 100, "bird");
} else if (this.timer == 710) {
_root.talk("yes, although that is a tale too long to tell.", 100, "peeman");
} else if (this.timer == 825) {
_root.talk("...and since then you have been like the everlasting fountain.", 100, "bird");
} else if (this.timer == 940) {
_root.talk("wait, you get an alligator? that is total bullshit!", 100, "ick_scared");
} else if (this.timer == 1055) {
_root.talk("'sup, bobbo?", 50, "bird");
} else if (this.timer == 1120) {
_root.talk(" 'sup.", 50, "bobbo");
} else if (this.timer == 1185) {
_root.talk("when i began to pee pee, at first i was fearful...", 140, "peeman");
} else if (this.timer == 1345) {
_root.talk("...but it gave me power! i'm like a god! a peeing, peeing god!", 140, "peeman");
} else if (this.timer == 1505) {
_root.talk("i could rule the skies... i could rule the galaxy!", 140, "peeman");
} else if (this.timer == 1665) {
_root.talk("...you're mad! insane mad! mad with pee-power!", 140, "ick_scared");
} else if (this.timer == 1825) {
_root.talk("there's only room in these skies for one of us, icarus!", 140, "peeman");
} else if (this.timer == 1985) {
_root.talk("you royal fool! engarde!", 100, "bird");
} else if (this.timer == 2095) {
_root.readytofirstattack = 1;
}
}
Symbol 115 MovieClip Frame 255
if (_root.readytofirstattack != 1) {
this.gotoAndPlay("idlebegin");
} else {
_root.katanaflash.gotoAndPlay(2);
_root.soundfx("swordtrans");
}
Symbol 115 MovieClip Frame 307
if (_root.whichmusic != "bossbattle1") {
_root.playmusic("bossbattle1");
}
Symbol 115 MovieClip Frame 1160
_root.katanaflash.gotoAndPlay(2);
_root.soundfx("swordtrans");
_parent.torso.gotoAndStop(1);
this.vulnerable = 1;
Symbol 115 MovieClip Frame 1194
_root.switchweapons();
Symbol 115 MovieClip Frame 1396
_root.katanaflash.gotoAndPlay(2);
_root.soundfx("swordtrans");
this.vulnerable = 0;
Symbol 115 MovieClip Frame 1430
_root.switchweapons();
Symbol 115 MovieClip Frame 1444
if (this.dead == 0) {
this.gotoAndPlay("beginsequence");
} else {
this.gotoAndPlay("finaldialogue");
}
Symbol 115 MovieClip Frame 1450
_root.katanaflash.gotoAndPlay(2);
_root.music.stop();
Symbol 115 MovieClip Frame 1480
_root.talk("we'll meet again, icarus... and when we do...", 140, "peeman");
Symbol 115 MovieClip Frame 1640
_root.talk("'urine' big trouble!!! mua ha ha ho ha!!!", 120, "peeman");
Symbol 115 MovieClip Frame 1765
_root.talk("sheesh! talk about a big jerk!", 70, "ick");
Symbol 115 MovieClip Frame 1845
_root.talk("'twas truly a terrible twat.", 70, "bird");
Symbol 115 MovieClip Frame 1925
_root.talk("so, i couldn't help but notice that his spirit animal...", 100, "ick");
Symbol 115 MovieClip Frame 2045
_root.talk("...gave him god damn fireballs and not a shitty knife.", 100, "ick_scared");
Symbol 115 MovieClip Frame 2145
_root.talk("i don't think you have the right to call blood destiny 'shitty.'", 100, "bird");
Symbol 115 MovieClip Frame 2255
_root.talk("you, the man who literally can't stop shitting.", 100, "bird");
Symbol 115 MovieClip Frame 2355
_root.talk("i was just kidding, jerry... you're a good friend. we cool?", 100, "ick");
Symbol 115 MovieClip Frame 2465
_root.talk("yes... we cool. we cool indeed.", 100, "bird");
Symbol 115 MovieClip Frame 2575
stop();
_root.damage = 0;
_root.secondcinematic.gotoAndPlay(2);
_parent.gotoAndStop(1);
Instance of Symbol 51 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Instance of Symbol 51 MovieClip in Symbol 129 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
} else if (this.hitTest(_root.stageleft)) {
this._visible = false;
}
}
Symbol 130 MovieClip Frame 1
duplicateMovieClip (_parent.fireball, "fireball" + a, a++);
a++;
if (this.a > 970) {
this.timer++;
if (this.timer > 3) {
_parent.play();
}
this.a = 940;
}
Symbol 132 MovieClip Frame 1
_root.wholegame.allbg.spacebg.gotoAndStop(1);
Instance of Symbol 51 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.torso._currentframe < 25) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
_root.shake(20, 6);
_parent.torso.gotoAndPlay(25);
_parent.damage++;
var whichsound = random(3);
if (whichsound == 0) {
_root.soundfx("peemanhurt1");
} else if (whichsound == 1) {
_root.soundfx("peemanhurt2");
} else {
_root.soundfx("peemanhurt3");
}
if (_parent.damage > 25) {
_parent.damage = 0;
_parent.dead = 1;
}
}
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 109 MovieClip in Symbol 132 MovieClip Frame 1
onClipEvent (load) {
function resetpee() {
this.gotoAndPlay(1);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
this.timer = random(40);
this._x = _parent.torso._x + 15;
this._y = _parent.torso._y + 45;
this.xspeed = (random(330) * 0.1) + 5;
this.yspeed = (random(100) - 50) * 0.02;
}
onClipEvent (enterFrame) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
this.timer++;
if (this.timer > 41) {
this.timer = 0;
this.resetpee();
}
}
Instance of Symbol 51 MovieClip in Symbol 132 MovieClip Frame 111
onClipEvent (load) {
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 1) {
_root.talk("remember me, icarus?", 90, "peeman");
} else if (this.timer == 105) {
_root.talk("gosh! how could i forget the biggest jerk on earth?", 140, "ick_scared");
} else if (this.timer == 255) {
_root.talk("you fool... my powers have grown exponentially since last we met!", 150, "peeman");
} else if (this.timer == 445) {
_root.talk("last time we met, the katana 'blood destiny' vanquished thee!", 100, "bird");
} else if (this.timer == 555) {
_root.talk("so you pee a lot... how does that allow you to conquer the galaxy?", 120, "ick");
} else if (this.timer == 685) {
_root.talk("i will demonstrate firsthand! engarde!", 100, "peeman");
} else if (this.timer == 795) {
_root.talk("'sup, bobbo?", 50, "bird");
} else if (this.timer == 855) {
_root.talk(" 'sup jerry.", 50, "bobbo");
} else if (this.timer == 915) {
_root.peemanreadytoattack = 1;
}
}
Symbol 132 MovieClip Frame 256
if (_root.peemanreadytoattack != 1) {
this.gotoAndPlay("idlebegin");
} else {
_root.katanaflash.gotoAndPlay(2);
_root.soundfx("swordtrans");
}
Symbol 132 MovieClip Frame 261
_root.wholegame.allbg.spacebg.gotoAndStop(2);
Symbol 132 MovieClip Frame 308
this.torso.gotoAndPlay(2);
Symbol 132 MovieClip Frame 326
this.torso.gotoAndPlay(3);
Symbol 132 MovieClip Frame 347
this.torso.gotoAndStop(2);
Symbol 132 MovieClip Frame 393
this.torso.gotoAndPlay(3);
Symbol 132 MovieClip Frame 426
this.torso.gotoAndStop(2);
Symbol 132 MovieClip Frame 481
this.torso.gotoAndPlay(3);
Symbol 132 MovieClip Frame 632
this.torso.gotoAndStop(2);
Symbol 132 MovieClip Frame 652
this.torso.gotoAndStop(1);
Symbol 132 MovieClip Frame 679
this.torso.gotoAndPlay("giantattack");
this.legs._visible = false;
Symbol 132 MovieClip Frame 733
_root.shake(10, 15);
Symbol 132 MovieClip Frame 787
_root.shake(20, 50);
Symbol 132 MovieClip Frame 1070
this.legs._visible = true;
this.torso.gotoAndStop(1);
Symbol 132 MovieClip Frame 1121
this.torso.gotoAndStop(2);
Symbol 132 MovieClip Frame 1177
stop();
this.torso.gotoAndStop(3);
Instance of Symbol 129 MovieClip "fireball" in Symbol 132 MovieClip Frame 1177
onClipEvent (load) {
this._x = 118;
this._y = -166;
this.yspeed = (random(100) - 50) * 0.2;
this.xspeed = 0;
}
onClipEvent (enterFrame) {
this.xspeed = this.xspeed - 0.3;
this._x = this._x + this.xspeed;
this._y = this._y - this.yspeed;
this.yspeed = this.yspeed * 0.975;
}
Instance of Symbol 130 MovieClip in Symbol 132 MovieClip Frame 1177
onClipEvent (load) {
this.a = 940;
this.timer = 0;
}
Symbol 132 MovieClip Frame 1178
torso.gotoAndStop(1);
if (this.owltaunt != 1) {
_root.talk("don't mess with an owl's best friend! it's katana time!", 100, "bird");
this.owltaunt != 1;
}
play();
Symbol 132 MovieClip Frame 1199
_root.switchweapons();
Symbol 132 MovieClip Frame 1370
_root.switchweapons();
Symbol 132 MovieClip Frame 1401
if (this.dead == 0) {
this.gotoAndPlay("beginsequence");
} else {
play();
}
Symbol 132 MovieClip Frame 1430
_root.wholegame.allbg.spacebg.gotoAndPlay(3);
_root.music.stop();
Symbol 132 MovieClip Frame 1461
stop();
Instance of Symbol 51 MovieClip in Symbol 132 MovieClip Frame 1461
onClipEvent (load) {
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 30) {
_root.talk("you're really starting to 'piss' me off!", 90, "ick");
} else if (this.timer == 140) {
_root.talk("ha ha! good one, my friend!", 90, "bird");
} else if (this.timer == 250) {
_root.talk("i may have underestimated you, icarus...", 90, "peeman");
} else if (this.timer == 360) {
_root.talk("i flew too close to the sun on wings of piss.", 90, "peeman");
} else if (this.timer == 470) {
_root.talk("well gosh! why don't you just leave us alone?", 90, "ick_scared");
} else if (this.timer == 580) {
_root.talk("yes... today, icarus, victory is yours.", 90, "peeman");
} else if (this.timer == 690) {
_root.talk("but we will meet again! and my stream will be stronger!", 90, "peeman");
} else if (this.timer == 800) {
_root.talk(" see ya, jerry.", 90, "bobbo");
} else if (this.timer == 910) {
_root.talk("peace, bobbo.", 90, "bird");
} else if (this.timer == 1020) {
_parent.play();
}
}
Symbol 132 MovieClip Frame 1490
stop();
Instance of Symbol 51 MovieClip in Symbol 132 MovieClip Frame 1490
onClipEvent (load) {
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 30) {
_root.talk("well, gee, what do we do now?", 100, "ick_scared");
} else if (this.timer == 150) {
_root.talk("hmm... well, you killed president obama.", 90, "bird");
} else if (this.timer == 260) {
_root.talk("he might have survived the crash!", 90, "ick_scared");
} else if (this.timer == 370) {
_root.talk("your pooping hasn't even slowed.", 90, "bird");
} else if (this.timer == 480) {
_root.talk("it might slow down! maybe if i ate a lot of chocolate!", 120, "ick_scared");
} else if (this.timer == 620) {
_root.talk("icarus... this might be hard for you to bear...", 100, "bird");
} else if (this.timer == 740) {
_root.talk("...but i don't think you can ever return to earth.", 100, "bird");
} else if (this.timer == 860) {
_root.talk("the poops... killing obama... no one would accept me.", 100, "ick_scared");
} else if (this.timer == 980) {
_root.talk("but jerry, where will i go?", 100, "ick_scared");
} else if (this.timer == 1100) {
_root.talk("look around thyself, icarus! the stars!", 100, "bird");
} else if (this.timer == 1220) {
_root.talk("the stars... the galaxy...", 100, "ick_scared");
} else if (this.timer == 1340) {
_root.talk("we have an entire universe to explore!", 100, "bird");
} else if (this.timer == 1460) {
_root.talk("exploring the universe... forever... with an owl...", 100, "ick_scared");
} else if (this.timer == 1580) {
_root.talk("well gosh, that sounds just about perfect.", 100, "ick");
} else if (this.timer == 1700) {
_root.talk("our biggest adventure begins now!", 100, "bird");
} else if (this.timer == 1800) {
_root.finalcutscene.gotoAndPlay(2);
_root.damage = 0;
}
}
Instance of Symbol 51 MovieClip in Symbol 137 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Instance of Symbol 51 MovieClip in Symbol 137 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Instance of Symbol 51 MovieClip in Symbol 137 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Instance of Symbol 51 MovieClip in Symbol 137 MovieClip Frame 1
onClipEvent (load) {
this.timer = 0;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (this.timer == 0) {
_root.wholegame.allbosses.obamaboss.damage++;
if (_root.wholegame.allbosses.obamaboss.damage == 50) {
_root.soundfx("swordbash");
_root.shake(30, 10);
_root.wholegame.allbosses.obamaboss.dead = 1;
} else if (_root.wholegame.allbosses.obamaboss.damage == 10) {
_root.talk("kenya please stop attacking my tail?!", 100, "obama");
_root.shake(8, 5);
_root.soundfx("swordbash");
} else if (_root.wholegame.allbosses.obamaboss.damage == 25) {
_root.talk("you're dead... and that's an executive order!", 100, "obama");
_root.shake(8, 5);
_root.soundfx("swordbash");
} else if (_root.wholegame.allbosses.obamaboss.damage == 35) {
_root.talk("you made a dent in my tail... a 'presi' dent!!!", 100, "obama");
_root.shake(8, 5);
_root.soundfx("swordbash");
} else {
_root.shake(8, 5);
_root.soundfx("swordbash");
}
this.timer = 8;
}
}
if (this.timer > 0) {
this.timer--;
}
}
Instance of Symbol 51 MovieClip in Symbol 148 MovieClip Frame 39
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Symbol 148 MovieClip Frame 59
if (_parent._currentframe == 550) {
this.resetmissle();
this.gotoAndPlay(1);
} else {
stop();
}
Instance of Symbol 51 MovieClip in Symbol 153 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Symbol 154 MovieClip Frame 90
if (_root.skipobamadialogue == 0) {
stop();
}
Instance of Symbol 51 MovieClip in Symbol 154 MovieClip Frame 90
onClipEvent (load) {
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 2) {
_root.talk("oh my god! it's president barack obama!", 100, "ick_scared");
} else if (this.timer == 120) {
_root.talk("yes, icarus, it's me.", 90, "obama");
} else if (this.timer == 220) {
_root.talk("wow! mr. president, why on earth are you here?!", 100, "ick_scared");
} else if (this.timer == 340) {
_root.talk("well, you're clearly a terrorist attempting an attack on new york.", 120, "obama");
} else if (this.timer == 480) {
_root.talk("if a terrorist attacks on my watch, i'll never win re-election.", 120, "obama");
} else if (this.timer == 620) {
_root.talk("therefore, icarus, i gots'ta fuckin' kill you!!!", 100, "obama");
} else if (this.timer == 740) {
_root.talk("golly, my day just keeps getting worse and worse!", 100, "ick_scared");
} else if (this.timer == 840) {
_root.skipobamadialogue = 1;
_parent.play();
}
}
Instance of Symbol 148 MovieClip in Symbol 154 MovieClip Frame 535
onClipEvent (load) {
function resetmissle() {
this.counter++;
if (this.counter == 5) {
_parent.play();
}
this._x = this.nativex;
this._y = this.nativey;
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
}
this.counter = 0;
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
this.nativex = this._x;
this.nativey = this._y;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.91;
this.yspeed = this.yspeed * 0.91;
}
Instance of Symbol 148 MovieClip in Symbol 154 MovieClip Frame 539
onClipEvent (load) {
function resetmissle() {
this._x = this.nativex;
this._y = this.nativey;
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
}
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
this.nativex = this._x;
this.nativey = this._y;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.91;
this.yspeed = this.yspeed * 0.91;
}
Instance of Symbol 148 MovieClip in Symbol 154 MovieClip Frame 544
onClipEvent (load) {
function resetmissle() {
this._x = this.nativex;
this._y = this.nativey;
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
}
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
this.nativex = this._x;
this.nativey = this._y;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.91;
this.yspeed = this.yspeed * 0.91;
}
Symbol 154 MovieClip Frame 550
stop();
Instance of Symbol 148 MovieClip in Symbol 154 MovieClip Frame 550
onClipEvent (load) {
function resetmissle() {
this._x = this.nativex;
this._y = this.nativey;
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
}
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
this.nativex = this._x;
this.nativey = this._y;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.91;
this.yspeed = this.yspeed * 0.91;
}
Instance of Symbol 148 MovieClip in Symbol 154 MovieClip Frame 550
onClipEvent (load) {
function resetmissle() {
this._x = this.nativex;
this._y = this.nativey;
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
}
this.xspeed = (random(100) - 50) * 0.8;
this.yspeed = (random(100) - 50) * 0.4;
this.nativex = this._x;
this.nativey = this._y;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.91;
this.yspeed = this.yspeed * 0.91;
}
Instance of Symbol 51 MovieClip in Symbol 154 MovieClip Frame 640
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
Symbol 154 MovieClip Frame 1002
if (!firstattack) {
this.firstattack = 1;
_root.talk("attack the tail now, icarus!!!", 140, "bird");
}
Symbol 154 MovieClip Frame 1025
_root.switchweapons();
Symbol 154 MovieClip Frame 1392
_root.switchweapons();
if (this.dead == 1) {
this.gotoAndPlay("obamadead");
}
Instance of Symbol 151 MovieClip in Symbol 154 MovieClip Frame 1468
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.07;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this.yspeed = this.yspeed + 0.6;
this._y = this._y + this.yspeed;
this._x = this._x + this.xspeed;
}
Instance of Symbol 151 MovieClip in Symbol 154 MovieClip Frame 1471
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.07;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this.yspeed = this.yspeed + 0.6;
this._y = this._y + this.yspeed;
this._x = this._x + this.xspeed;
}
Instance of Symbol 151 MovieClip in Symbol 154 MovieClip Frame 1474
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.07;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this.yspeed = this.yspeed + 0.6;
this._y = this._y + this.yspeed;
this._x = this._x + this.xspeed;
}
Symbol 154 MovieClip Frame 2026
this.gotoAndPlay(425);
Symbol 154 MovieClip Frame 2066
_root.music.stop();
Symbol 154 MovieClip Frame 2075
_root.talk("do you know the penalty for killing the president, icarus?", 100, "obama");
Symbol 154 MovieClip Frame 2232
_root.talk("jerry, do you know the penalty for killing the president?!", 100, "ick_scared");
Symbol 154 MovieClip Frame 2348
_root.talk("damn son, thou killed obama... thou art truly screwed.", 100, "bird");
Symbol 154 MovieClip Frame 2463
_root.talk("well, i didn't want to kill him! i voted for him!", 100, "ick_scared");
Symbol 154 MovieClip Frame 2582
_root.talk("oh man... this really complicates things...", 100, "ick_scared");
Symbol 154 MovieClip Frame 2682
_root.thirdcinematic.gotoAndPlay(2);
_root.damage = 0;
_parent.gotoAndStop(1);
Symbol 155 MovieClip Frame 1
stop();
Instance of Symbol 77 MovieClip in Symbol 155 MovieClip Frame 2
onClipEvent (load) {
this.upordown = 0;
}
Instance of Symbol 115 MovieClip in Symbol 155 MovieClip Frame 3
onClipEvent (load) {
this.damage = 0;
this.dead = 0;
}
Instance of Symbol 132 MovieClip in Symbol 155 MovieClip Frame 4
onClipEvent (load) {
this.readytoattack = 0;
this.damage = 0;
this.dead = 0;
}
Instance of Symbol 154 MovieClip "obamaboss" in Symbol 155 MovieClip Frame 5
onClipEvent (load) {
this.dead = 0;
this.damage = 0;
}
Symbol 160 MovieClip Frame 6
gotoAndPlay (1);
Symbol 160 MovieClip Frame 12
gotoAndPlay (7);
Symbol 161 MovieClip Frame 1
stop();
Symbol 161 MovieClip Frame 2
play();
Symbol 161 MovieClip Frame 35
gotoAndStop (1);
Symbol 166 MovieClip Frame 6
gotoAndPlay (1);
Symbol 166 MovieClip Frame 12
gotoAndPlay (7);
Symbol 171 MovieClip Frame 6
gotoAndPlay (1);
Symbol 171 MovieClip Frame 12
gotoAndPlay (7);
Symbol 176 MovieClip Frame 6
gotoAndPlay (1);
Symbol 176 MovieClip Frame 12
gotoAndPlay (7);
Symbol 181 MovieClip Frame 6
gotoAndPlay (1);
Symbol 181 MovieClip Frame 12
gotoAndPlay (7);
Symbol 186 MovieClip Frame 6
gotoAndPlay (1);
Symbol 186 MovieClip Frame 12
gotoAndPlay (7);
Symbol 195 MovieClip Frame 8
_parent.gotoAndStop("flystraight_kat");
Symbol 195 MovieClip Frame 17
_parent.gotoAndStop("flystraight_kat");
Symbol 207 MovieClip Frame 51
stop();
Symbol 208 MovieClip Frame 1
stop();
Instance of Symbol 160 MovieClip in Symbol 208 MovieClip Frame 1
onClipEvent (load) {
if (_root.damage == 0) {
this.gotoAndPlay(1);
} else {
this.gotoAndPlay(7);
}
}
Instance of Symbol 166 MovieClip in Symbol 208 MovieClip Frame 2
onClipEvent (load) {
if (_root.damage == 0) {
this.gotoAndPlay(1);
} else {
this.gotoAndPlay(7);
}
}
Instance of Symbol 171 MovieClip in Symbol 208 MovieClip Frame 3
onClipEvent (load) {
if (_root.damage == 0) {
this.gotoAndPlay(1);
} else {
this.gotoAndPlay(7);
}
}
Instance of Symbol 176 MovieClip in Symbol 208 MovieClip Frame 4
onClipEvent (load) {
if (_root.damage == 0) {
this.gotoAndPlay(1);
} else {
this.gotoAndPlay(7);
}
}
Instance of Symbol 181 MovieClip in Symbol 208 MovieClip Frame 5
onClipEvent (load) {
if (_root.damage == 0) {
this.gotoAndPlay(1);
} else {
this.gotoAndPlay(7);
}
}
Instance of Symbol 186 MovieClip in Symbol 208 MovieClip Frame 6
onClipEvent (load) {
if (_root.damage == 0) {
this.gotoAndPlay(1);
} else {
this.gotoAndPlay(7);
}
}
Instance of Symbol 197 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.1;
this.yspeed = random(100) * -0.07;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
}
Instance of Symbol 198 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.1;
this.yspeed = random(100) * -0.07;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
}
Instance of Symbol 200 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.1;
this.yspeed = random(100) * -0.07;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
}
Instance of Symbol 202 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.1;
this.yspeed = random(100) * -0.07;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
}
Instance of Symbol 204 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.1;
this.yspeed = random(100) * -0.07;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
}
Instance of Symbol 206 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.1;
this.yspeed = random(100) * -0.07;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.5;
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip Frame 8
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Symbol 220 MovieClip Frame 60
stop();
Symbol 222 MovieClip Frame 60
stop();
Symbol 224 MovieClip Frame 8
gotoAndPlay (1);
Symbol 224 MovieClip Frame 10
_parent.stop();
Instance of Symbol 220 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = random(20) - 5;
this.yspeed = random(20) - 5;
this.rotspeed = random(20) - 5;
}
onClipEvent (enterFrame) {
if (this._currentframe < 60) {
this._rotation = this._rotation + this.rotspeed;
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.rotspeed = this.rotspeed * 0.95;
this.xspeed = this.xspeed * 0.95;
this.yspeed = this.yspeed * 0.95;
}
}
Instance of Symbol 222 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = random(20) - 5;
this.yspeed = random(20) - 5;
this.rotspeed = random(20) - 5;
}
onClipEvent (enterFrame) {
if (this._currentframe < 60) {
this._rotation = this._rotation + this.rotspeed;
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.rotspeed = this.rotspeed * 0.95;
this.xspeed = this.xspeed * 0.95;
this.yspeed = this.yspeed * 0.95;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 224 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 224 MovieClip "duckbody" in Symbol 225 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndPlay(random(7) + 1);
}
Symbol 230 MovieClip Frame 60
stop();
Symbol 232 MovieClip Frame 60
stop();
Symbol 233 MovieClip Frame 8
gotoAndPlay (1);
Symbol 233 MovieClip Frame 10
stop();
Instance of Symbol 230 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = random(20) - 5;
this.yspeed = random(10) * -1;
this.rotspeed = random(20) - 5;
}
onClipEvent (enterFrame) {
if (this._currentframe < 60) {
this._rotation = this._rotation + this.rotspeed;
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.rotspeed = this.rotspeed * 0.95;
this.xspeed = this.xspeed * 0.95;
this.yspeed = this.yspeed + 0.6;
}
}
Instance of Symbol 232 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = random(20) - 5;
this.yspeed = random(10) * -1;
this.rotspeed = random(20) - 5;
}
onClipEvent (enterFrame) {
if (this._currentframe < 60) {
this._rotation = this._rotation + this.rotspeed;
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.rotspeed = this.rotspeed * 0.95;
this.xspeed = this.xspeed * 0.95;
this.yspeed = this.yspeed + 0.6;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Instance of Symbol 207 MovieClip in Symbol 233 MovieClip Frame 10
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.25;
this.yspeed = (random(100) - 50) * 0.25;
this.gotoAndPlay(random(24) + 1);
}
onClipEvent (enterFrame) {
if (this._currentframe < 51) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed * 0.97;
this.yspeed = this.yspeed * 0.97;
}
}
Symbol 235 MovieClip Frame 1
stop();
Instance of Symbol 225 MovieClip in Symbol 235 MovieClip Frame 1
onClipEvent (load) {
this.gotoAndPlay(random(38) + 1);
this.xspeed = 0.2;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
if (this._visible == true) {
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
this.xspeed = this.xspeed + 0.15;
if (this.yspeed > 0) {
this.yspeed = this.yspeed + 0.6;
}
if (this.hitTest(_root.stageleft)) {
this._visible = false;
}
if (this.duckbody.hitbox.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (this.yspeed == 0) {
var randomnum = (random(3) + 1);
if (randomnum == 1) {
_root.soundfx("quack1");
} else if (randomnum == 2) {
_root.soundfx("quack2");
} else if (randomnum == 3) {
_root.soundfx("quack3");
} else if (randomnum == 4) {
_root.soundfx("quack4");
}
this.duckbody.gotoAndStop(10);
this.yspeed = 1;
this.xspeed = -8;
_root.shake(15, 5);
}
}
if (this.duckbody.hitbox.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
}
Symbol 235 MovieClip Frame 2
stop();
Instance of Symbol 234 MovieClip in Symbol 235 MovieClip Frame 2
onClipEvent (load) {
this.xspeed = 2.25;
this.gotoAndPlay(random(200) + 1);
}
onClipEvent (enterFrame) {
var randomnum = random(2200);
if (randomnum == 1) {
_root.sfx.gotoAndStop("goosehonk1");
_root.sfx.gotoAndStop(1);
} else if (randomnum == 2) {
_root.sfx.gotoAndStop("goosehonk2");
_root.sfx.gotoAndStop(1);
} else if (randomnum == 3) {
_root.sfx.gotoAndStop("goosehonk3");
_root.sfx.gotoAndStop(1);
} else if (randomnum == 4) {
_root.sfx.gotoAndStop("goosehonk4");
_root.sfx.gotoAndStop(1);
}
this._x = this._x + this.xspeed;
if (this.goosebody.hitbox.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
if (this.goosebody.hitbox.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
var randomnumber = random(3);
if (randomnumber == 0) {
_root.soundfx("goosekill1");
} else if (randomnumber == 1) {
_root.soundfx("goosekill2");
} else if (randomnumber == 2) {
_root.soundfx("goosekill3");
}
_root.shake(20, 5);
this.stop();
this.goosebody.gotoAndStop(10);
}
}
Symbol 235 MovieClip Frame 3
stop();
Instance of Symbol 225 MovieClip in Symbol 235 MovieClip Frame 3
onClipEvent (load) {
function reset() {
this.play();
this.timer = 0;
this.yspeed = 0;
this.xspeed = 10;
this._x = this.startingx;
this._y = random(470);
this.duckbody.gotoAndPlay(1);
}
this.timer = 0;
this.startingx = this._x;
this._y = random(470);
this.gotoAndPlay(random(38) + 1);
this.xspeed = 10;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
if (this._visible == true) {
this.timer++;
if (this.timer > 300) {
this.reset();
}
this._x = this._x - this.xspeed;
this._y = this._y + this.yspeed;
if (this.yspeed > 0) {
this.yspeed = this.yspeed + 0.6;
}
if (this.duckbody.hitbox.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (this.yspeed == 0) {
var randomnum = (random(3) + 1);
if (randomnum == 1) {
_root.soundfx("quack1");
} else if (randomnum == 2) {
_root.soundfx("quack2");
} else if (randomnum == 3) {
_root.soundfx("quack3");
} else if (randomnum == 4) {
_root.soundfx("quack4");
}
this.duckbody.gotoAndStop(10);
this.yspeed = 1;
this.xspeed = -8;
_root.shake(15, 5);
}
}
if (this.duckbody.hitbox.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
}
}
}
Symbol 243 MovieClip Frame 1
stop();
Instance of Symbol 51 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (_parent.timer > 15) {
_parent.gotoAndStop(2);
_root.shake(10, 6);
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
_root.shake(14, 6);
}
}
Symbol 243 MovieClip Frame 2
this.xspeed = 0;
this.yspeed = 0;
this.stop();
_root.shake(13, 6);
Symbol 244 MovieClip Frame 1
stop();
Instance of Symbol 51 MovieClip in Symbol 244 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (_parent.timer > 15) {
_parent.gotoAndStop(2);
_root.shake(10, 6);
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
_root.shake(14, 6);
}
}
Symbol 244 MovieClip Frame 2
this.xspeed = 0;
this.yspeed = 0;
_root.shake(15, 3);
stop();
Instance of Symbol 243 MovieClip in Symbol 244 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.yspeed = random(100) * 0.08;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y - this.yspeed;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 243 MovieClip in Symbol 244 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.yspeed = random(100) * 0.08;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y + this.yspeed;
this._x = this._x + this.xspeed;
}
}
Symbol 246 MovieClip Frame 1
stop();
Instance of Symbol 51 MovieClip in Symbol 246 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (_parent.timer > 15) {
_parent.gotoAndStop(2);
_root.shake(10, 6);
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
_root.shake(14, 6);
}
}
Symbol 246 MovieClip Frame 2
this.xspeed = 0;
this.yspeed = 0;
_root.shake(15, 3);
stop();
stop();
Instance of Symbol 243 MovieClip in Symbol 246 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.yspeed = random(100) * 0.08;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y - this.yspeed;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 243 MovieClip in Symbol 246 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.yspeed = random(100) * 0.08;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y + this.yspeed;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 51 MovieClip in Symbol 247 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (_parent.timer > 15) {
_parent.gotoAndStop(2);
_root.shake(10, 6);
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
_root.shake(14, 6);
}
}
Symbol 247 MovieClip Frame 2
this.xspeed = 0;
this.yspeed = 0;
_root.shake(15, 3);
stop();
Instance of Symbol 244 MovieClip in Symbol 247 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.yspeed = random(100) * 0.08;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y - this.yspeed;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 246 MovieClip in Symbol 247 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.yspeed = random(100) * 0.08;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y + this.yspeed;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 51 MovieClip in Symbol 249 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
if (_parent.timer > 15) {
_parent.gotoAndStop(2);
_root.shake(10, 6);
}
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
_root.shake(14, 6);
}
}
Symbol 249 MovieClip Frame 2
this.xspeed = 0;
this.yspeed = 0;
_root.shake(15, 3);
stop();
Instance of Symbol 244 MovieClip in Symbol 249 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.yspeed = random(100) * 0.08;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y - this.yspeed;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 246 MovieClip in Symbol 249 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.yspeed = random(100) * 0.08;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y + this.yspeed;
this._x = this._x + this.xspeed;
}
}
Symbol 250 MovieClip Frame 1
stop();
Instance of Symbol 51 MovieClip in Symbol 250 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.wholegame.player.swipeanim.hitbox)) {
_parent.gotoAndStop(2);
_root.shake(10, 6);
} else if (this.hitTest(_root.wholegame.player.hitbox)) {
_root.takedamage();
_root.shake(14, 6);
}
}
Symbol 250 MovieClip Frame 2
this.xspeed = 0;
_root.shake(15, 3);
stop();
Instance of Symbol 247 MovieClip in Symbol 250 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.gotoAndStop(1);
this.yspeed = random(100) * 0.05;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y - this.yspeed;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 249 MovieClip in Symbol 250 MovieClip Frame 2
onClipEvent (load) {
this.timer = 0;
this.gotoAndStop(1);
this.yspeed = random(100) * 0.05;
this.xspeed = (random(100) * 0.1) + 2;
}
onClipEvent (enterFrame) {
this.timer++;
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._y = this._y + this.yspeed;
this._x = this._x + this.xspeed;
}
}
Symbol 251 MovieClip Frame 1
stop();
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 3
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 3
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 4
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 5
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 7
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 7
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 7
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 7
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 7
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 7
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 7
onClipEvent (load) {
this.gotoAndStop("duckright");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 9
onClipEvent (load) {
this.gotoAndStop("duckrandom");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 9
onClipEvent (load) {
this.gotoAndStop("duckrandom");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 9
onClipEvent (load) {
this.gotoAndStop("duckrandom");
}
Instance of Symbol 235 MovieClip in Symbol 251 MovieClip Frame 9
onClipEvent (load) {
this.gotoAndStop("duckrandom");
}
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 10
onClipEvent (load) {
this._y = random(390) - 20;
this.nativex = this._x;
this.xspeed = 0;
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 300) {
this._x = this.nativex;
this._y = random(390) - 20;
this.gotoAndStop(1);
this.xspeed = 0;
this.timer = 0;
}
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 10
onClipEvent (load) {
this._y = random(390) - 20;
this.nativex = this._x;
this.xspeed = 0;
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 300) {
this._x = this.nativex;
this._y = random(390) - 20;
this.gotoAndStop(1);
this.xspeed = 0;
this.timer = 0;
}
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 10
onClipEvent (load) {
this._y = random(390) - 20;
this.nativex = this._x;
this.xspeed = 0;
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 300) {
this._x = this.nativex;
this._y = random(390) - 20;
this.gotoAndStop(1);
this.xspeed = 0;
this.timer = 0;
}
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 11
onClipEvent (load) {
this._y = random(390) - 20;
this.nativex = this._x;
this.xspeed = 0;
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 300) {
this._x = this.nativex;
this._y = random(390) - 20;
this.gotoAndStop(1);
this.xspeed = 0;
this.timer = 0;
}
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._x = this._x + this.xspeed;
}
}
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 11
onClipEvent (load) {
this._y = random(390) - 20;
this.nativex = this._x;
this.xspeed = 0;
this.timer = 0;
}
onClipEvent (enterFrame) {
this.timer++;
if (this.timer == 300) {
this._x = this.nativex;
this._y = random(390) - 20;
this.gotoAndStop(1);
this.xspeed = 0;
this.timer = 0;
}
if (this._currentframe == 1) {
this.xspeed = this.xspeed - 0.3;
this._x = this._x + this.xspeed;
}
}
Symbol 252 MovieClip Frame 1
stop();
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 235 MovieClip in Symbol 252 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop("goose");
}
Instance of Symbol 208 MovieClip "player" in Symbol 257 MovieClip Frame 1
onClipEvent (load) {
this.slashtimer = 0;
}
onClipEvent (enterFrame) {
if (this.slashtimer > 0) {
this.slashtimer--;
}
}
Instance of Symbol 215 MovieClip "orangebird" in Symbol 257 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (enterFrame) {
if (this._visible == true) {
this._x = this._x - ((this._x - _root.thePlayer._x) * 0.03);
this._y = this._y - (((this._y - _root.thePlayer._y) - 50) * 0.03);
}
}
Instance of Symbol 254 MovieClip "shirt" in Symbol 257 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
if (this._visible == true) {
this._x = this._x - 8;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.4;
}
}
Instance of Symbol 256 MovieClip "pants" in Symbol 257 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
if (this._visible == true) {
this._x = this._x - 10;
this._y = this._y + this.yspeed;
this.yspeed = this.yspeed + 0.4;
}
}
Symbol 259 MovieClip Frame 2
stop();
Symbol 260 MovieClip Frame 2
stop();
Symbol 299 MovieClip Frame 1
stop();
Symbol 299 MovieClip Frame 2
_root.soundfx("talk_ick");
Symbol 299 MovieClip Frame 3
_root.soundfx("talk_ick");
Symbol 299 MovieClip Frame 4
_root.soundfx("talk_bird");
Symbol 299 MovieClip Frame 5
_root.soundfx("talk_ick");
Symbol 299 MovieClip Frame 6
_root.soundfx("talk_ick");
Symbol 299 MovieClip Frame 7
_root.soundfx("talk_nazi");
Symbol 299 MovieClip Frame 8
_root.soundfx("talk_pee");
Symbol 299 MovieClip Frame 9
_root.soundfx("talk_bobbo");
Symbol 299 MovieClip Frame 10
_root.soundfx("talk_gypsy");
Symbol 299 MovieClip Frame 11
_root.soundfx("talk_obama");
Symbol 299 MovieClip Frame 12
_root.soundfx("talk_general");
Symbol 300 MovieClip Frame 1
stop();
this.allportraits.gotoAndStop(1);
Symbol 300 MovieClip Frame 10
stop();
Symbol 300 MovieClip Frame 11
_root.soundfx("speechstopper");
Symbol 300 MovieClip Frame 20
gotoAndStop (1);
Symbol 305 MovieClip Frame 1
stop();
Symbol 332 MovieClip Frame 1
stop();
Symbol 332 MovieClip Frame 22
stop();
Symbol 334 Button
on (press) {
_root.switchweapons();
}
Symbol 335 MovieClip Frame 1
stop();
Symbol 335 MovieClip Frame 10
gotoAndStop (1);
Symbol 340 MovieClip Frame 1
stop();
Symbol 340 MovieClip Frame 73
_root.stopAllSounds();
stopAllSounds();
_root.sfx.stopAllSounds();
Symbol 340 MovieClip Frame 167
_root.resumegame();
Symbol 340 MovieClip Frame 212
this.gotoAndStop(1);
Symbol 347 MovieClip Frame 1
stop();
Symbol 347 MovieClip Frame 65
gotoAndStop (1);
Symbol 347 MovieClip Frame 145
gotoAndStop (1);
Symbol 365 MovieClip Frame 1
this.bghills2._visible = false;
Symbol 365 MovieClip Frame 55
_root.talk("hoo boy! i am gonna eat so much chinese food!", 120, "ick");
Symbol 365 MovieClip Frame 195
_root.talk("egg rolls! general tso's! lo mein! fried rice! holy wow!", 100, "ick_scared");
Symbol 365 MovieClip Frame 313
_root.talk("i'm literally going to stuff my body cavity with chinese food.", 100, "ick_scared");
Symbol 365 MovieClip Frame 420
_root.talk("ah yes... truly, nothing can go wrong today.", 100, "ick");
Symbol 365 MovieClip Frame 540
this.bghills._visible = false;
this.bghills2._visible = true;
Symbol 365 MovieClip Frame 642
this.bghills2._visible = false;
this.bghills._visible = true;
Symbol 365 MovieClip Frame 743
this.bghills._visible = false;
this.bghills2._visible = true;
Symbol 365 MovieClip Frame 895
this.stop();
_root.setuplevel(3);
Symbol 366 MovieClip Frame 1
stop();
Symbol 366 MovieClip Frame 156
stop();
Symbol 384 MovieClip Frame 1
stop();
Symbol 384 MovieClip Frame 287
_root.talk("icarus proudbottom residence!", 70, "ick");
Symbol 384 MovieClip Frame 373
_root.talk("oh hey, wassup bill?", 70, "ick");
Symbol 384 MovieClip Frame 462
_root.talk("what?! a five-dollar chinese buffet?!", 100, "ick_scared");
Symbol 384 MovieClip Frame 583
_root.talk("all you can eat lo mein? general tso's? pork fried rice?", 100, "ick_scared");
Symbol 384 MovieClip Frame 701
_root.talk("chicken dumplings? sweet and sour pork?!", 40, "ick_scared");
Symbol 384 MovieClip Frame 761
_root.talk("wonton soup? moo goo gai pan?", 40, "ick_scared");
Symbol 384 MovieClip Frame 818
_root.talk("moo shu chicken? vegetable combos?", 40, "ick_scared");
Symbol 384 MovieClip Frame 873
_root.talk("egg rolls? shrimp rolls? spring rolls?", 40, "ick_scared");
Symbol 384 MovieClip Frame 931
_root.talk("stir fried brocolli? bamboo shoots?", 40, "ick_scared");
Symbol 384 MovieClip Frame 988
_root.talk("sweet buns? fortune cookies? chicken and cashew nuts?", 40, "ick_scared");
Symbol 384 MovieClip Frame 1045
_root.talk("four gummy slices of pizza?", 40, "ick_scared");
Symbol 384 MovieClip Frame 1100
_root.talk("i am so fucking there!", 90, "ick_scared");
Symbol 384 MovieClip Frame 1211
_root.talk("i'm going to eat so much chinese food that god will cry!!!", 100, "ick_scared");
Symbol 384 MovieClip Frame 1326
_root.talk("i'm driving to your house as fast as i fucking can!!!!", 100, "ick_scared");
Symbol 384 MovieClip Frame 1441
_root.talk("and then we're going to the fucking chinese buffet!!!", 100, "ick_scared");
Symbol 384 MovieClip Frame 1829
_root.setuplevel(2);
Symbol 399 MovieClip Frame 1
this.bghills2._visible = false;
Symbol 399 MovieClip Frame 105
this.bghills._visible = false;
this.bghills2._visible = true;
Symbol 399 MovieClip Frame 207
this.bghills2._visible = false;
this.bghills._visible = true;
Symbol 399 MovieClip Frame 308
this.bghills._visible = false;
this.bghills2._visible = true;
Symbol 399 MovieClip Frame 459
this.bghills2._visible = false;
this.bghills._visible = true;
this.bghills.stop();
this.guardrail1.stop();
this.guardrail2.stop();
this.roadlines.stop();
Symbol 399 MovieClip Frame 624
this.bghills.gotoAndPlay(1);
this.guardrail1.play();
this.guardrail2.play();
this.roadlines.play();
_root.talk("such a nice day! not a single cloud in the sky!", 100, "ick");
Symbol 399 MovieClip Frame 742
this.bghills2._visible = true;
this.bghills._visible = false;
this.bghills2.stop();
this.guardrail1.stop();
this.guardrail2.stop();
this.roadlines.stop();
Symbol 399 MovieClip Frame 1160
_root.talk("oh my! ma'am, are you all right?!", 80, "ick_scared");
Symbol 399 MovieClip Frame 1235
_root.talk("ha...ha... you fool... i am a magical gypsy!", 100, "gypsy");
Symbol 399 MovieClip Frame 1355
_root.talk("and with my powers, i deliver onto thee a curse!!", 100, "gypsy");
Symbol 399 MovieClip Frame 1476
_root.talk("may waste fall endlessly from thy bottom...", 100, "gypsy");
Symbol 399 MovieClip Frame 1590
_root.talk("...until the end of time itself!!!", 100, "gypsy");
Symbol 399 MovieClip Frame 1705
_root.talk("hmm... strange... all of a sudden, my tummy is bumbling...", 130, "ick_scared");
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2001
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2001
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2005
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2005
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2009
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2009
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2013
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2013
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2013
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2013
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2016
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2016
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2016
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2016
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2019
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2019
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Instance of Symbol 398 MovieClip in Symbol 399 MovieClip Frame 2019
onClipEvent (load) {
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = 0;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + yspeed;
this.yspeed = this.yspeed + 0.06;
}
Symbol 399 MovieClip Frame 2080
this.stop();
_root.setuplevel(4);
Symbol 400 MovieClip Frame 1
stop();
Symbol 400 MovieClip Frame 156
stop();
Symbol 406 MovieClip Frame 4112
stop();
Symbol 411 MovieClip Frame 1
stop();
Symbol 411 MovieClip Frame 17
gotoAndStop (1);
Symbol 413 MovieClip Frame 1
stop();
Symbol 413 MovieClip Frame 4
stop();
Symbol 413 MovieClip Frame 7
gotoAndStop (1);
Symbol 417 MovieClip Frame 1
stop();
Symbol 417 MovieClip Frame 3
stop();
Symbol 417 MovieClip Frame 5
gotoAndStop (1);
Symbol 445 MovieClip Frame 1
stop();
Symbol 445 MovieClip Frame 50
_root.wholegame._visible = false;
Instance of Symbol 418 MovieClip "ick" in Symbol 445 MovieClip Frame 50
onClipEvent (load) {
function strum() {
this.strumhand.gotoAndPlay(2);
}
function fret() {
this.frethand.play();
}
function jerry() {
this.jerryclip.play();
}
}
Instance of Symbol 420 MovieClip "comet" in Symbol 445 MovieClip Frame 65
onClipEvent (enterFrame) {
this._x++;
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Instance of Symbol 421 MovieClip in Symbol 445 MovieClip Frame 65
onClipEvent (load) {
function reset() {
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
this.gotoAndPlay(random(98) + 1);
this._x = _parent.comet._x;
this._y = _parent.comet._y;
this.xspeed = (random(100) - 50) * 0.01;
this.yspeed = (random(100) - 50) * 0.01;
}
onClipEvent (enterFrame) {
this._x = this._x + this.xspeed;
this._y = this._y + this.yspeed;
if (this._currentframe == 100) {
this.reset();
}
}
Symbol 445 MovieClip Frame 1007
ick.strum();
Symbol 445 MovieClip Frame 1040
ick.strum();
Symbol 445 MovieClip Frame 1067
ick.strum();
Symbol 445 MovieClip Frame 1101
ick.strum();
Symbol 445 MovieClip Frame 1135
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 1169
ick.strum();
Symbol 445 MovieClip Frame 1209
ick.jerry();
Symbol 445 MovieClip Frame 1219
ick.strum();
Symbol 445 MovieClip Frame 1242
ick.strum();
Symbol 445 MovieClip Frame 1266
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 1297
ick.jerry();
Symbol 445 MovieClip Frame 1298
ick.strum();
Symbol 445 MovieClip Frame 1321
ick.strum();
Symbol 445 MovieClip Frame 1346
ick.strum();
Symbol 445 MovieClip Frame 1370
ick.strum();
Symbol 445 MovieClip Frame 1395
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 1428
ick.strum();
Symbol 445 MovieClip Frame 1453
ick.strum();
Symbol 445 MovieClip Frame 1468
ick.jerry();
Symbol 445 MovieClip Frame 1477
ick.strum();
Symbol 445 MovieClip Frame 1494
ick.strum();
Symbol 445 MovieClip Frame 1506
ick.strum();
Symbol 445 MovieClip Frame 1522
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 1556
ick.strum();
Symbol 445 MovieClip Frame 1561
ick.jerry();
Symbol 445 MovieClip Frame 1573
ick.strum();
Symbol 445 MovieClip Frame 1604
ick.strum();
Symbol 445 MovieClip Frame 1621
ick.strum();
Symbol 445 MovieClip Frame 1635
ick.strum();
Symbol 445 MovieClip Frame 1651
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 1734
ick.strum();
Symbol 445 MovieClip Frame 1765
ick.strum();
Symbol 445 MovieClip Frame 1782
ick.strum();
ick.fret();
ick.jerry();
Symbol 445 MovieClip Frame 1815
ick.strum();
Symbol 445 MovieClip Frame 1831
ick.strum();
Symbol 445 MovieClip Frame 1862
ick.strum();
Symbol 445 MovieClip Frame 1879
ick.strum();
Symbol 445 MovieClip Frame 1910
ick.strum();
Symbol 445 MovieClip Frame 1940
ick.strum();
Symbol 445 MovieClip Frame 1958
ick.strum();
Symbol 445 MovieClip Frame 1981
ick.strum();
Symbol 445 MovieClip Frame 1992
ick.strum();
Symbol 445 MovieClip Frame 2002
Symbol 445 MovieClip Frame 2013
ick.strum();
Symbol 445 MovieClip Frame 2038
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 2069
ick.strum();
Symbol 445 MovieClip Frame 2075
ick.jerry();
Symbol 445 MovieClip Frame 2085
ick.strum();
Symbol 445 MovieClip Frame 2113
ick.strum();
Symbol 445 MovieClip Frame 2143
ick.strum();
Symbol 445 MovieClip Frame 2167
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 2201
ick.strum();
Symbol 445 MovieClip Frame 2227
ick.strum();
Symbol 445 MovieClip Frame 2241
ick.jerry();
Symbol 445 MovieClip Frame 2249
ick.strum();
Symbol 445 MovieClip Frame 2265
ick.strum();
Symbol 445 MovieClip Frame 2275
ick.strum();
Symbol 445 MovieClip Frame 2294
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 2329
ick.strum();
ick.jerry();
Symbol 445 MovieClip Frame 2342
ick.strum();
Symbol 445 MovieClip Frame 2377
ick.strum();
Symbol 445 MovieClip Frame 2400
ick.strum();
Symbol 445 MovieClip Frame 2425
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 2458
ick.strum();
Symbol 445 MovieClip Frame 2476
ick.strum();
Symbol 445 MovieClip Frame 2497
ick.jerry();
Symbol 445 MovieClip Frame 2507
ick.strum();
Symbol 445 MovieClip Frame 2522
ick.strum();
Symbol 445 MovieClip Frame 2531
ick.strum();
Symbol 445 MovieClip Frame 2552
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 2586
ick.strum();
Symbol 445 MovieClip Frame 2599
ick.strum();
Symbol 445 MovieClip Frame 2611
ick.jerry();
Symbol 445 MovieClip Frame 2626
ick.strum();
Symbol 445 MovieClip Frame 2650
ick.strum();
Symbol 445 MovieClip Frame 2682
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 2762
ick.strum();
Symbol 445 MovieClip Frame 2790
ick.strum();
Symbol 445 MovieClip Frame 2811
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 2843
ick.strum();
Symbol 445 MovieClip Frame 2858
ick.strum();
Symbol 445 MovieClip Frame 2872
ick.strum();
Symbol 445 MovieClip Frame 2890
ick.strum();
Symbol 445 MovieClip Frame 2906
ick.strum();
Symbol 445 MovieClip Frame 2922
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 2970
ick.strum();
Symbol 445 MovieClip Frame 2988
ick.strum();
Symbol 445 MovieClip Frame 3003
ick.strum();
Symbol 445 MovieClip Frame 3019
ick.strum();
Symbol 445 MovieClip Frame 3033
ick.strum();
Symbol 445 MovieClip Frame 3045
ick.strum();
Symbol 445 MovieClip Frame 3066
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 3083
ick.jerry();
Symbol 445 MovieClip Frame 3101
ick.strum();
Symbol 445 MovieClip Frame 3117
ick.strum();
Symbol 445 MovieClip Frame 3133
ick.strum();
Symbol 445 MovieClip Frame 3149
ick.strum();
Symbol 445 MovieClip Frame 3162
ick.strum();
Symbol 445 MovieClip Frame 3182
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 3211
ick.strum();
Symbol 445 MovieClip Frame 3229
ick.strum();
Symbol 445 MovieClip Frame 3247
ick.strum();
Symbol 445 MovieClip Frame 3262
ick.strum();
Symbol 445 MovieClip Frame 3272
ick.strum();
Symbol 445 MovieClip Frame 3286
ick.strum();
Symbol 445 MovieClip Frame 3302
ick.strum();
Symbol 445 MovieClip Frame 3326
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 3359
ick.strum();
Symbol 445 MovieClip Frame 3376
ick.strum();
Symbol 445 MovieClip Frame 3392
ick.strum();
Symbol 445 MovieClip Frame 3409
ick.strum();
Symbol 445 MovieClip Frame 3437
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 3471
ick.strum();
Symbol 445 MovieClip Frame 3486
ick.strum();
Symbol 445 MovieClip Frame 3504
ick.strum();
Symbol 445 MovieClip Frame 3519
ick.strum();
Symbol 445 MovieClip Frame 3535
ick.strum();
Symbol 445 MovieClip Frame 3550
ick.strum();
Symbol 445 MovieClip Frame 3566
ick.strum();
Symbol 445 MovieClip Frame 3583
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 3615
ick.strum();
Symbol 445 MovieClip Frame 3634
ick.strum();
Symbol 445 MovieClip Frame 3649
ick.strum();
Symbol 445 MovieClip Frame 3667
ick.strum();
Symbol 445 MovieClip Frame 3683
ick.strum();
Symbol 445 MovieClip Frame 3696
ick.strum();
ick.fret();
Symbol 445 MovieClip Frame 3761
ick.jerry();
Symbol 445 MovieClip Frame 4213
_root.titlescreen._visible = true;
_root.titlescreen.gotoAndPlay(1);
_root.titlescreen.fadeout.gotoAndStop(1);
_root.titlescreen.passwordwindow.gotoAndStop(1);
Symbol 449 MovieClip Frame 1
stop();
Symbol 449 MovieClip Frame 199
gotoAndStop (1);
Symbol 449 MovieClip Frame 400
gotoAndStop (1);
Symbol 449 MovieClip Frame 600
gotoAndStop (1);
Symbol 457 MovieClip Frame 1
stop();
Symbol 457 MovieClip Frame 90
_root.wholegame._visible = true;
_root.setuplevel(1);
_root.titlescreen._visible = false;
Symbol 468 Button
on (release) {
this.fadeout.gotoAndPlay(2);
}
Symbol 469 Button
on (release) {
this.passwordwindow.gotoAndPlay(2);
}
Symbol 474 Button
on (release) {
trace(this.passwordtxt.text);
this.thepassword = this.passwordtxt.text;
if (this.thepassword == "hersheysquirts") {
_root.wholegame._visible = true;
_root.titlescreen._visible = false;
_root.setuplevel(2);
} else if (this.thepassword == "greenapplenasties") {
_root.wholegame._visible = true;
_root.titlescreen._visible = false;
_root.setuplevel(3);
} else if (this.thepassword == "buttjuicebuffet") {
_root.wholegame._visible = true;
_root.titlescreen._visible = false;
_root.setuplevel(4);
} else {
this.passwordtxt.text = "nice try jerk";
}
}
Symbol 475 Button
on (release) {
this.gotoAndStop(1);
}
Symbol 476 MovieClip Frame 1
stop();
Symbol 476 MovieClip Frame 6
stop();
Symbol 477 MovieClip Frame 110
stop();