Frame 383
_root.play1._visible = false;
stop();
Frame 384
stop();
Instance of Symbol 82 MovieClip in Frame 384
onClipEvent (load) {
function reset() {
_root.spear._y = -100;
_root.spear._x = random(260) + 475;
spearSpeed = 10;
}
reset();
}
onClipEvent (enterFrame) {
_root.spear._y = _root.spear._y + spearSpeed;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (_root.spear._y > 800) {
reset();
}
}
Frame 385
_root.play1._visible = false;
stop();
Frame 398
cont = 0;
life = 3;
score = 0;
point = 0;
Instance of Symbol 117 MovieClip in Frame 398
onClipEvent (enterFrame) {
if (Key.isDown(67)) {
_root.gotoAndPlay("L4");
}
}
Frame 405
stop();
Frame 412
_root.menu._visible = false;
fishnum = 0.25;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 413
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 413
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 413
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 413
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 413
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 413
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 92 MovieClip "bar3" in Frame 413
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Instance of Symbol 152 MovieClip in Frame 413
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 413
onClipEvent (load) {
this._visible = false;
}
Frame 418
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 419
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 419
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 419
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 419
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 419
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector" in Frame 419
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L1W");
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 419
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 420
gotoAndStop (419);
Frame 421
_root.menu._visible = false;
stop();
Frame 427
fishnum = 0.38;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 428
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 428
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 428
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 428
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 428
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 428
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 428
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 428
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar3" in Frame 428
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 433
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 434
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 434
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 434
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector2" in Frame 434
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L2W");
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 434
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 434
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 434
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 435
gotoAndStop (434);
Frame 436
_root.menu._visible = false;
stop();
Frame 442
fishnum = 0.5;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 443
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 443
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 443
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 443
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 443
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 443
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 443
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 443
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar3" in Frame 443
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 448
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 449
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 449
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 449
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector3" in Frame 449
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L3W");
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 449
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 449
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 449
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 450
gotoAndStop (449);
Frame 451
_root.menu._visible = false;
stop();
Instance of Symbol 117 MovieClip in Frame 454
onClipEvent (enterFrame) {
if (Key.isDown(67)) {
_root.gotoAndPlay("L8");
}
}
Frame 457
p2fish = 100;
fishnum = 0;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 458
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 458
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 458
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 458
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 458
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 458
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 458
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 458
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar2" in Frame 458
onClipEvent (enterFrame) {
setProperty(_root.bar2, _xscale , _root.p2fish * 2.18);
if (_root.p2fish < 0) {
_root.bar2._visible = false;
}
}
Instance of Symbol 92 MovieClip "bar3" in Frame 458
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 463
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 464
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 464
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 464
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector4" in Frame 464
onClipEvent (enterFrame) {
if (_root.p2fish < 1) {
_root.gotoAndPlay("L4W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L4L");
}
}
Instance of Symbol 102 MovieClip "bomb1" in Frame 464
onClipEvent (load) {
function reset() {
this._yscale = 100;
this._xscale = 100;
this._y = -50;
bomb1Speed = 5;
this.play();
}
this.stop();
this.bombcount = 0;
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + bomb1Speed;
if (this.hitTest(_root.eskimo) and (this._currentframe < 25)) {
_root.eskimo.gotoAndPlay(10);
_root.p2fish = _root.p2fish - (_root.bomb1._xscale / 10);
this.gotoAndPlay(25);
}
if (this._y > 360) {
bomb1Speed = 0;
this._y = 360;
}
if (this._currentframe > 50) {
this._y = -50;
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 464
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 464
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 464
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 465
stop();
Frame 466
gotoAndStop (465);
Frame 467
_root.menu._visible = false;
stop();
Frame 473
fishnum = 0.75;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 474
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 474
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 474
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 474
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 474
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 474
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 474
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 474
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar3" in Frame 474
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 479
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 480
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 480
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 480
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 480
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 6;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1500) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 480
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 480
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 480
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Instance of Symbol 172 MovieClip "windetector5" in Frame 480
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L5W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L5L");
}
}
Frame 481
stop();
Frame 482
gotoAndStop (481);
Instance of Symbol 73 MovieClip "fish1" in Frame 482
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 482
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector5" in Frame 482
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L5W");
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 482
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 6;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1500) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 482
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 482
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 482
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 483
_root.menu._visible = false;
stop();
Frame 489
fishnum = 1.2;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 490
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 490
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 490
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 490
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 490
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 490
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 490
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 490
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar3" in Frame 490
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 495
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 496
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 496
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.point = _root.point + 1;
_root.score = _root.score + 100;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 496
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 496
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 8;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1700) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 496
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 496
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 496
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Instance of Symbol 172 MovieClip "windetector6" in Frame 496
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L6W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L6L");
}
}
Frame 497
stop();
Frame 498
gotoAndStop (497);
Instance of Symbol 73 MovieClip "fish1" in Frame 498
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.point = _root.point + 1;
_root.score = _root.score + 100;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 498
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector6" in Frame 498
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L6W");
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 498
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 8;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1700) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 498
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 498
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 498
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 499
_root.menu._visible = false;
stop();
Frame 505
fishnum = 1.6;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 506
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 506
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 506
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 506
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 506
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 506
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 506
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 506
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar3" in Frame 506
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 511
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Instance of Symbol 117 MovieClip in Frame 511
onClipEvent (enterFrame) {
if (Key.isDown(67)) {
_root.gotoAndPlay("L12");
}
}
Frame 512
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 512
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 512
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 512
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 10;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1900) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 512
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 512
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 512
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Instance of Symbol 172 MovieClip "windetector7" in Frame 512
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L7W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L7L");
}
}
Frame 513
stop();
Frame 514
gotoAndStop (513);
Instance of Symbol 73 MovieClip "fish1" in Frame 514
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 514
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector7" in Frame 514
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L7W");
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 514
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 10;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1900) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 514
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 514
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 514
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 515
_root.menu._visible = false;
stop();
Frame 521
p2fish = 200;
fishnum = 0;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 522
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 522
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 522
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 522
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 522
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 522
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 522
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 522
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar2" in Frame 522
onClipEvent (enterFrame) {
setProperty(_root.bar2, _xscale , (_root.p2fish / 2) * 2.18);
if (_root.p2fish < 0) {
_root.bar2._visible = false;
}
}
Instance of Symbol 92 MovieClip "bar3" in Frame 522
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 527
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 528
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 528
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 528
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector8" in Frame 528
onClipEvent (enterFrame) {
if (_root.p2fish < 1) {
_root.gotoAndPlay("L8W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L8L");
}
}
Instance of Symbol 102 MovieClip "bomb1" in Frame 528
onClipEvent (load) {
function reset() {
this._yscale = 100;
this._xscale = 100;
this._y = -50;
bomb1Speed = 5;
this.play();
}
this.stop();
this.bombcount = 0;
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + bomb1Speed;
if (this.hitTest(_root.eskimo) and (this._currentframe < 25)) {
_root.eskimo.gotoAndPlay(10);
_root.p2fish = _root.p2fish - (_root.bomb1._xscale / 10);
this.gotoAndPlay(25);
}
if (this._y > 360) {
bomb1Speed = 0;
this._y = 360;
}
if (this._currentframe > 50) {
this._y = -50;
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 528
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 528
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 528
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 529
stop();
Frame 530
gotoAndStop (526);
Frame 531
_root.menu._visible = false;
stop();
Frame 537
fishnum = 2;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 538
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 538
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 538
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 538
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 538
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 538
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 538
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 538
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar3" in Frame 538
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 543
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 544
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 544
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 544
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 544
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 10;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1900) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 544
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 544
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 544
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Instance of Symbol 172 MovieClip "windetector9" in Frame 544
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L9W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L9L");
}
}
Frame 545
stop();
Frame 546
gotoAndStop (545);
Instance of Symbol 73 MovieClip "fish1" in Frame 546
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 546
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector9" in Frame 546
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L9W");
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 546
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 10;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1900) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 546
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 546
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 546
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 547
_root.menu._visible = false;
stop();
Frame 553
fishnum = 2.5;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 554
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 554
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 554
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 554
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 554
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 554
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 554
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 554
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar3" in Frame 554
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 559
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 560
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 560
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 560
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 560
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 12;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 2200) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 560
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 560
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 560
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Instance of Symbol 172 MovieClip "windetector10" in Frame 560
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L10W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L10L");
}
}
Frame 561
stop();
Frame 562
gotoAndStop (561);
Instance of Symbol 73 MovieClip "fish1" in Frame 562
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 562
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector10" in Frame 562
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L10W");
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 562
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 12;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 2200) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 562
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 562
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 562
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 563
_root.menu._visible = false;
stop();
Frame 569
fishnum = 3;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 570
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 570
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 570
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 570
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 570
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 570
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 570
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 570
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar3" in Frame 570
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 575
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 576
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 576
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 576
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 576
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 6;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1800) {
reset();
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 576
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 6;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 2200) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 576
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 576
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 576
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Instance of Symbol 172 MovieClip "windetector11" in Frame 576
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L11W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L11L");
}
}
Frame 577
stop();
Frame 578
gotoAndStop (577);
Instance of Symbol 73 MovieClip "fish1" in Frame 578
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 578
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector11" in Frame 578
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("L11W");
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 578
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 6;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 1800) {
reset();
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 578
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 6;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 2200) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 578
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 578
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 578
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 579
_root.menu._visible = false;
stop();
Frame 585
p2fish = 300;
fishnum = 0;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 586
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 586
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 586
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 586
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 586
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 586
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 586
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 586
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar2" in Frame 586
onClipEvent (enterFrame) {
setProperty(_root.bar2, _xscale , (_root.p2fish / 3) * 2.18);
if (_root.p2fish < 0) {
_root.bar2._visible = false;
}
}
Instance of Symbol 92 MovieClip "bar3" in Frame 586
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 591
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 592
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 592
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 592
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector12" in Frame 592
onClipEvent (enterFrame) {
if (_root.p2fish < 1) {
_root.gotoAndPlay("L12W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L12L");
}
}
Instance of Symbol 102 MovieClip "bomb1" in Frame 592
onClipEvent (load) {
function reset() {
this._yscale = 100;
this._xscale = 100;
this._y = -50;
bomb1Speed = 5;
this.play();
}
this.stop();
this.bombcount = 0;
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + bomb1Speed;
if (this.hitTest(_root.eskimo) and (this._currentframe < 25)) {
_root.eskimo.gotoAndPlay(10);
_root.p2fish = _root.p2fish - (_root.bomb1._xscale / 10);
this.gotoAndPlay(25);
}
if (this._y > 360) {
bomb1Speed = 0;
this._y = 360;
}
if (this._currentframe > 50) {
this._y = -50;
}
}
Instance of Symbol 218 MovieClip "snoball" in Frame 592
onClipEvent (load) {
function reset() {
this._y = -100;
this._x = random(260) + 475;
snow = 6;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + snow;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (this._y > 2200) {
reset();
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 592
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 592
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 592
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 593
stop();
Frame 594
gotoAndStop (593);
Frame 595
_root.menu._visible = false;
stop();
Frame 601
if (_root.cont < 1) {
gotoAndPlay (612);
}
Frame 607
stop();
Frame 611
gotoAndStop (398);
Frame 618
stop();
Frame 625
_root.menu._visible = false;
p2fish = 500;
fishnum = 0;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 626
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 626
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 626
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 626
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 626
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 626
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 152 MovieClip in Frame 626
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 626
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 92 MovieClip "bar2" in Frame 626
onClipEvent (enterFrame) {
setProperty(_root.bar2, _xscale , (_root.p2fish / 5) * 2.18);
if (_root.p2fish < 0) {
}
}
Instance of Symbol 92 MovieClip "bar3" in Frame 626
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 7);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
if (_root.p1bomb > 775) {
_root.p1bomb = 775;
}
}
Frame 631
p1fish = 0;
p1bomb = 0;
combo1 = 9;
stop();
Frame 632
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 632
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.point = _root.point + 1;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 632
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
_root.point = _root.point + 2;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector13" in Frame 632
onClipEvent (enterFrame) {
if (_root.p2fish < 1) {
_root.gotoAndPlay("L13W");
}
if (_root.life < 0) {
_root.gotoAndPlay("L13L");
}
}
Instance of Symbol 102 MovieClip "bomb1" in Frame 632
onClipEvent (load) {
function reset() {
this._yscale = 100;
this._xscale = 100;
this._y = -50;
bomb1Speed = 5;
this.play();
}
this.stop();
this.bombcount = 0;
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + bomb1Speed;
if (this.hitTest(_root.eskimo) and (this._currentframe < 25)) {
_root.eskimo.gotoAndPlay(10);
_root.p2fish = _root.p2fish - (_root.bomb1._xscale / 10);
this.gotoAndPlay(25);
}
if (this._y > 360) {
bomb1Speed = 0;
this._y = 360;
}
if (this._currentframe > 50) {
this._y = -50;
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 632
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
_root.point = _root.point + 4;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 632
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
_root.point = _root.point + 8;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "lifedetector" in Frame 632
onClipEvent (enterFrame) {
if (_root.point > 400) {
_root.life = _root.life + 1;
_root.point = 0;
}
}
Frame 633
stop();
Frame 634
gotoAndStop (633);
Frame 635
_root.menu._visible = false;
stop();
Frame 677
stop();
Frame 679
stop();
Frame 700
gotoAndPlay (398);
Frame 701
_root.menu._visible = false;
combo = 0;
score = 0;
_root.timer.stop();
Instance of Symbol 143 MovieClip "pengoo1" in Frame 701
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38)) {
this.gotoAndPlay(5);
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 152 MovieClip in Frame 701
onClipEvent (enterFrame) {
this.stop();
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 152 MovieClip "timer" in Frame 701
onClipEvent (load) {
_root.seconds2 = 0;
_root.minutes2 = 2;
}
onClipEvent (enterFrame) {
if (_root.seconds2 < 0) {
_root.minutes2 = _root.minutes2 - 1;
_root.seconds2 = _root.seconds2 + 60;
}
if (_root.minutes2 < 0) {
_root.play();
}
if (length(_root.seconds2) == 1) {
_root.seconds2 = "0" + _root.seconds2;
}
_root.timetil12 = (_root.minutes2 + ":") + _root.seconds2;
}
Frame 707
combo = 0;
score = 0;
_root.timer.stop();
stop();
Frame 708
_root.timer.play();
stop();
Instance of Symbol 73 MovieClip "fish1" in Frame 708
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.score = _root.score + 100;
_root.combo = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 708
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.score = _root.score + 200;
if (_root.combo < 2) {
_root.combo = _root.combo + 1;
} else {
_root.combo = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 708
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.score = _root.score + 400;
if (_root.combo < 3) {
_root.combo = _root.combo + 1;
} else {
_root.combo = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 708
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 30;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.score = _root.score + 800;
if (_root.combo < 4) {
if (_root.combo > 2) {
_root.comboCount.play();
} else {
_root.combo = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 152 MovieClip "timer" in Frame 708
onClipEvent (load) {
_root.seconds2 = 0;
_root.minutes2 = 2;
}
onClipEvent (enterFrame) {
if (_root.seconds2 < 0) {
_root.minutes2 = _root.minutes2 - 1;
_root.seconds2 = _root.seconds2 + 60;
}
if (_root.minutes2 < 0) {
_root.play();
}
if ((_root.minutes2 < 1) and (_root.seconds2 < 30)) {
_root.play();
}
if (length(_root.seconds2) == 1) {
_root.seconds2 = "0" + _root.seconds2;
}
_root.timetil12 = (_root.minutes2 + ":") + _root.seconds2;
}
Frame 709
stop();
Instance of Symbol 319 MovieClip "music2" in Frame 709
/* no clip actions */
Instance of Symbol 152 MovieClip "timer2" in Frame 709
onClipEvent (enterFrame) {
if (_root.seconds2 < 0) {
_root.minutes2 = _root.minutes2 - 1;
_root.seconds2 = _root.seconds2 + 60;
}
if (_root.minutes2 < 0) {
_root.play();
}
if (length(_root.seconds2) == 1) {
_root.seconds2 = "0" + _root.seconds2;
}
_root.timetil12 = (_root.minutes2 + ":") + _root.seconds2;
}
Frame 710
stop();
Frame 711
_root.menu._visible = false;
score = 0;
Instance of Symbol 152 MovieClip in Frame 711
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Frame 718
stop();
Frame 719
stop();
Instance of Symbol 143 MovieClip "pengoo1" in Frame 719
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38)) {
this.gotoAndPlay(5);
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 73 MovieClip "fish1" in Frame 719
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.score = _root.score + 100;
_root.combo = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 719
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.score = _root.score + 200;
if (_root.combo < 2) {
_root.combo = _root.combo + 1;
} else {
_root.combo = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 719
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.score = _root.score + 400;
if (_root.combo < 3) {
_root.combo = _root.combo + 1;
} else {
_root.combo = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 719
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 30;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.score = _root.score + 800;
if (_root.combo < 4) {
if (_root.combo > 2) {
_root.comboCount.play();
} else {
_root.combo = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Frame 720
p1wins = 0;
p2wins = 0;
Frame 727
stop();
Frame 734
_root.menu._visible = false;
Instance of Symbol 143 MovieClip "pengoo1" in Frame 735
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(38) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(40) and (_root.p1Attack._currentframe < 2)) {
if ((_root.p1bomb > 9) and (_root.p1bomb < 25)) {
_root.bomb1.reset();
_root.bomb1._xscale = 60;
_root.bomb1._yscale = 60;
_root.p1bomb = _root.p1bomb - 10;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 24) and (_root.p1bomb < 45)) {
_root.bomb1.reset();
_root.bomb1._xscale = 150;
_root.bomb1._yscale = 150;
_root.p1bomb = _root.p1bomb - 25;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if ((_root.p1bomb > 44) and (_root.p1bomb < 70)) {
_root.bomb1.reset();
_root.bomb1._xscale = 250;
_root.bomb1._yscale = 250;
_root.p1bomb = _root.p1bomb - 45;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
if (_root.p1bomb > 69) {
_root.bomb1.reset();
_root.bomb1._xscale = 300;
_root.bomb1._yscale = 300;
_root.p1bomb = _root.p1bomb - 70;
_root.p1Attack._visible = true;
_root.p1Attack.play();
}
}
if (Key.isDown(37) && (!Key.isDown(39))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(39) && (!Key.isDown(37))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 440) {
_x = 440;
}
if (_x > 700) {
_x = 700;
}
}
Instance of Symbol 143 MovieClip "pengoo2" in Frame 735
onClipEvent (enterFrame) {
speed = 15;
if (Key.isDown(87) and (this._currentframe < 10)) {
this.gotoAndPlay(5);
}
if (Key.isDown(83) and (_root.p2Attack._currentframe < 2)) {
if ((_root.p2bomb > 9) and (_root.p2bomb < 25)) {
_root.bomb2.reset();
_root.bomb2._xscale = 60;
_root.bomb2._yscale = 60;
_root.p2bomb = _root.p2bomb - 10;
_root.p2Attack._visible = true;
_root.p2Attack.play();
}
if ((_root.p2bomb > 24) and (_root.p2bomb < 45)) {
_root.bomb2.reset();
_root.bomb2._xscale = 150;
_root.bomb2._yscale = 150;
_root.p2bomb = _root.p2bomb - 25;
_root.p2Attack._visible = true;
_root.p2Attack.play();
}
if ((_root.p2bomb > 44) and (_root.p2bomb < 70)) {
_root.bomb2.reset();
_root.bomb2._xscale = 225;
_root.bomb2._yscale = 225;
_root.p2bomb = _root.p2bomb - 45;
_root.p2Attack._visible = true;
_root.p2Attack.play();
}
if (_root.p2bomb > 69) {
_root.bomb2.reset();
_root.bomb2._xscale = 300;
_root.bomb2._yscale = 300;
_root.p2bomb = _root.p2bomb - 70;
_root.p2Attack._visible = true;
_root.p2Attack.play();
}
}
if (Key.isDown(65) && (!Key.isDown(68))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x - speed);
}
this._xscale = -100;
}
if (Key.isDown(68) && (!Key.isDown(65))) {
if (this._currentframe < 5) {
this.gotoAndPlay(2);
_x = (_x + speed);
}
this._xscale = 100;
}
if (_x < 55) {
_x = 55;
}
if (_x > 320) {
_x = 320;
}
}
Instance of Symbol 92 MovieClip "bar1" in Frame 735
onClipEvent (enterFrame) {
setProperty(_root.bar1, _xscale , (_root.p1fish / _root.fishnum) * 1.15);
if (_root.p1fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 92 MovieClip "bar2" in Frame 735
onClipEvent (enterFrame) {
setProperty(_root.bar2, _xscale , (_root.p2fish / _root.fishnum) * 1.18);
if (_root.p2fish < 0) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb1mark4" in Frame 735
onClipEvent (enterFrame) {
if (_root.p1bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark3" in Frame 735
onClipEvent (enterFrame) {
if (_root.p1bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark2" in Frame 735
onClipEvent (enterFrame) {
if (_root.p1bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb1mark1" in Frame 735
onClipEvent (enterFrame) {
if (_root.p1bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 92 MovieClip "bar3" in Frame 735
onClipEvent (enterFrame) {
setProperty(_root.bar3, _xscale , (_root.p1bomb - 70) / 4);
if (_root.p1bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 98 MovieClip "bomb4mark4" in Frame 735
onClipEvent (enterFrame) {
if (_root.p2bomb > 69) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb3mark3" in Frame 735
onClipEvent (enterFrame) {
if (_root.p2bomb > 44) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb2mark2" in Frame 735
onClipEvent (enterFrame) {
if (_root.p2bomb > 24) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 98 MovieClip "bomb2mark1" in Frame 735
onClipEvent (enterFrame) {
if (_root.p2bomb > 9) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 92 MovieClip "bar4" in Frame 735
onClipEvent (enterFrame) {
setProperty(_root.bar4, _xscale , (_root.p2bomb - 70) / 4);
if (_root.p2bomb < 70) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 152 MovieClip in Frame 735
onClipEvent (enterFrame) {
if (Key.isDown(13)) {
_root.menu._visible = true;
}
}
Instance of Symbol 156 MovieClip "p1Attack" in Frame 735
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 350 MovieClip "p2Attack" in Frame 735
onClipEvent (load) {
this._visible = false;
}
Frame 740
p1fish = 0;
p2fish = 0;
p1bomb = 0;
p2bomb = 0;
score = 0;
score2 = 0;
combo1 = 9;
combo2 = 9;
stop();
Frame 741
stop();
Instance of Symbol 356 MovieClip "fish5" in Frame 741
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 55;
fallSpeed5 = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed5;
if (this.hitTest(_root.pengoo2.openMouth)) {
_root.score2 = _root.score2 + 100;
_root.combo2 = 1;
_root.p2fish = _root.p2fish + 1;
_root.p2bomb = _root.p2bomb + 1;
this.gotoAndStop(2);
reset();
if (_root.fish6._y < -40) {
_root.fish6.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 357 MovieClip "fish6" in Frame 741
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(250) + 55;
fall6Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall6Speed;
if (this.hitTest(_root.pengoo2.openMouth)) {
_root.score2 = _root.score2 + 200;
if (_root.combo2 < 2) {
_root.combo2 = _root.combo2 + 1;
} else {
_root.combo2 = 9;
}
_root.p2bomb = _root.p2bomb + 2;
_root.p2fish = _root.p2fish + 1;
this.gotoAndStop(2);
if (_root.fish7._y < -40) {
_root.fish7.reset();
}
reset();
}
if (this._y > 550) {
fall6Speed = 0;
this._y = -50;
}
}
Instance of Symbol 358 MovieClip "fish7" in Frame 741
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(250) + 55;
fall7Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall7Speed;
if (this.hitTest(_root.pengoo2.openMouth)) {
_root.score2 = _root.score2 + 400;
if (_root.combo2 < 3) {
_root.combo2 = _root.combo2 + 1;
} else {
_root.combo2 = 9;
}
_root.p2bomb = _root.p2bomb + 4;
_root.p2fish = _root.p2fish + 1;
this.gotoAndStop(2);
if (_root.fish8._y < -40) {
_root.fish8.reset();
}
if (_root.fish8._y < -40) {
_root.fish8.reset();
}
reset();
}
if (this._y > 550) {
fall7Speed = 0;
this._y = -50;
}
}
Instance of Symbol 359 MovieClip "fish8" in Frame 741
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(250) + 55;
fall8Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall8Speed;
if (this.hitTest(_root.pengoo2.openMouth)) {
_root.score2 = _root.score2 + 800;
if (_root.combo2 < 4) {
if (_root.combo2 > 2) {
_root.combo2Count.play();
} else {
_root.combo2 = 9;
}
}
_root.p2fish = _root.p2fish + 1;
_root.p2bomb = _root.p2bomb + 8;
this.gotoAndStop(2);
if (_root.fish6._y < -40) {
_root.fish6.reset();
}
if (_root.fish7._y < -40) {
_root.fish7.reset();
}
reset();
}
if (this._y > 550) {
fall8Speed = 0;
this._y = -50;
}
}
Instance of Symbol 73 MovieClip "fish1" in Frame 741
onClipEvent (load) {
function reset() {
this._y = -20;
this._x = random(260) + 475;
fallSpeed = 10;
this.gotoAndStop(1);
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 1;
_root.score = _root.score + 100;
_root.combo1 = 1;
this.gotoAndStop(2);
reset();
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
}
if (this._y > 550) {
reset();
}
}
Instance of Symbol 76 MovieClip "fish2" in Frame 741
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall2Speed = 15;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall2Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 2;
_root.score = _root.score + 200;
if (_root.combo1 < 2) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall2Speed = 0;
this._y = -50;
}
}
Instance of Symbol 78 MovieClip "fish3" in Frame 741
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall3Speed = 20;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall3Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 4;
_root.score = _root.score + 400;
if (_root.combo1 < 3) {
_root.combo1 = _root.combo1 + 1;
} else {
_root.combo1 = 9;
}
this.gotoAndStop(2);
if (_root.fish4._y < -40) {
_root.fish4.reset();
}
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
reset();
}
if (this._y > 550) {
fall3Speed = 0;
this._y = -50;
}
}
Instance of Symbol 80 MovieClip "fish4" in Frame 741
onClipEvent (load) {
function reset() {
this._y = -50;
this._x = random(260) + 475;
fall4Speed = 25;
this.gotoAndStop(1);
}
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + fall4Speed;
if (this.hitTest(_root.pengoo1.openMouth)) {
_root.p1fish = _root.p1fish + 1;
_root.p1bomb = _root.p1bomb + 8;
_root.score = _root.score + 800;
if (_root.combo1 < 4) {
if (_root.combo1 > 2) {
_root.comboCount.play();
} else {
_root.combo1 = 9;
}
}
this.gotoAndStop(2);
if (_root.fish2._y < -40) {
_root.fish2.reset();
}
if (_root.fish3._y < -40) {
_root.fish3.reset();
}
reset();
}
if (this._y > 550) {
fall4Speed = 0;
this._y = -50;
}
}
Instance of Symbol 102 MovieClip "bomb1" in Frame 741
onClipEvent (load) {
function reset() {
this._yscale = 100;
this._xscale = 100;
this._y = -50;
this._x = random(260) + 55;
bomb1Speed = 5;
this.play();
}
this.stop();
this.bombcount = 0;
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + bomb1Speed;
if (this.hitTest(_root.pengoo2) and (this._currentframe < 25)) {
_root.pengoo2.gotoAndPlay(10);
_root.p2fish = _root.p2fish - 10;
if (_root.p2fish < 0) {
_root.p2fish = 0;
}
this.gotoAndPlay(25);
}
if (this._y > 360) {
bomb1Speed = 0;
this._y = 360;
}
if (this._currentframe > 50) {
this._y = -50;
}
}
Instance of Symbol 102 MovieClip "bomb2" in Frame 741
onClipEvent (load) {
function reset() {
this._yscale = 100;
this._xscale = 100;
this._y = -50;
this._x = random(260) + 475;
bomb2Speed = 5;
this.play();
}
this.stop();
this.bombcount = 0;
this._y = -50;
}
onClipEvent (enterFrame) {
this._y = this._y + bomb2Speed;
if (this.hitTest(_root.pengoo1) and (this._currentframe < 25)) {
_root.pengoo1.gotoAndPlay(10);
_root.p1fish = _root.p1fish - 10;
if (_root.p1fish < 0) {
_root.p1fish = 0;
}
this.gotoAndPlay(25);
}
if (this._y > 360) {
bomb2Speed = 0;
this._y = 360;
}
if (this._currentframe > 50) {
this._y = -50;
}
}
Instance of Symbol 172 MovieClip "windetector" in Frame 741
onClipEvent (enterFrame) {
if ((_root.p1fish / _root.fishnum) > 99) {
_root.gotoAndPlay("p1");
}
if ((_root.p2fish / _root.fishnum) > 99) {
_root.gotoAndPlay("p2");
}
}
Frame 742
p1wins = p1wins + 1;
stop();
Frame 743
p2wins = p2wins + 1;
stop();
Symbol 10 Button
on (release) {
_root.play();
}
Symbol 11 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop (3);
}
Symbol 11 MovieClip Frame 2
gotoAndPlay (1);
Symbol 34 MovieClip Frame 5
stop();
Symbol 37 MovieClip Frame 6
stop();
Symbol 42 MovieClip Frame 20
stop();
Symbol 43 MovieClip Frame 404
gotoAndPlay (2);
Symbol 44 MovieClip Frame 45
stop();
Symbol 52 Button
on (release) {
gotoAndPlay (720);
}
Symbol 54 Button
on (release) {
gotoAndPlay (384);
}
Symbol 56 Button
on (release) {
gotoAndStop (385);
}
Symbol 61 Button
on (release) {
_quality = "LOW";
}
Symbol 63 Button
on (release) {
_quality = "MEDIUM";
}
Symbol 65 Button
on (release) {
_quality = "HIGH";
}
Symbol 68 Button
on (release) {
_quality = "BEST";
}
Symbol 73 MovieClip Frame 1
stop();
Symbol 76 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 1
stop();
Symbol 80 MovieClip Frame 1
stop();
Symbol 89 Button
on (release) {
gotoAndStop (383);
}
Symbol 102 MovieClip Frame 24
bombcount = bombcount + 1;
if (bombcount < 9) {
gotoAndPlay (1);
}
Symbol 102 MovieClip Frame 25
bombcount = 0;
Symbol 102 MovieClip Frame 60
stop();
Symbol 107 Button
on (release) {
_root.play1._visible = true;
}
Symbol 111 Button
on (release) {
_root.play();
}
Symbol 113 Button
on (release) {
gotoAndPlay (701);
}
Symbol 115 Button
on (release) {
gotoAndPlay (711);
}
Symbol 121 MovieClip Frame 311
stop();
_root.play();
Symbol 126 Button
on (release) {
_root.gotoAndPlay("title");
}
Symbol 129 Button
on (release) {
_root.menu._visible = false;
}
Symbol 143 MovieClip Frame 1
stop();
Symbol 143 MovieClip Frame 4
gotoAndStop (1);
Symbol 143 MovieClip Frame 7
gotoAndStop (1);
Symbol 143 MovieClip Frame 49
gotoAndStop (1);
Symbol 152 MovieClip Frame 20
_root.seconds2 = _root.seconds2 - 1;
Symbol 156 MovieClip Frame 1
stop();
_root.p1Attack._visible = false;
Symbol 169 MovieClip Frame 111
_root.play();
Symbol 169 MovieClip Frame 135
stop();
Symbol 170 MovieClip Frame 773
gotoAndPlay (1);
Symbol 172 MovieClip Frame 1
stop();
Symbol 172 MovieClip Frame 2
_root.score = _root.score + 1000;
_root.p1fish = _root.p1fish + 8;
_root.p1bomb = _root.p1bomb + 12;
_root.point = _root.point + 10;
Symbol 173 MovieClip Frame 54
stop();
Symbol 180 Button
on (release) {
_root.play();
}
Symbol 197 MovieClip Frame 1
stop();
Symbol 197 MovieClip Frame 19
gotoAndStop (1);
Symbol 202 MovieClip Frame 28
stop();
Instance of Symbol 82 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_root.spear._y = -100;
_root.spear._x = random(260) + 475;
spearSpeed = 10;
}
reset();
}
onClipEvent (enterFrame) {
_root.spear._y = _root.spear._y + spearSpeed;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (_root.spear._y > 800) {
reset();
}
}
Symbol 206 MovieClip Frame 70
stop();
Symbol 207 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.score = 0;
_root.point = 0;
_root.gotoAndPlay("L4");
}
Symbol 212 Button
on (release) {
_root.gotoAndPlay("title");
}
Symbol 219 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.score = 0;
_root.point = 0;
_root.gotoAndPlay("L5");
}
Symbol 224 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.score = 0;
_root.point = 0;
_root.gotoAndPlay("L6");
}
Symbol 229 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.score = 0;
_root.point = 0;
_root.gotoAndPlay("L7");
}
Symbol 237 MovieClip Frame 1
stop();
Symbol 237 MovieClip Frame 19
gotoAndStop (1);
Symbol 239 MovieClip Frame 28
stop();
Instance of Symbol 82 MovieClip in Symbol 240 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_root.spear2._y = -100;
_root.spear2._x = random(260) + 475;
spear2Speed = 13;
}
reset();
}
onClipEvent (enterFrame) {
_root.spear2._y = _root.spear2._y + spear2Speed;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (_root.spear2._y > 800) {
reset();
}
}
Symbol 241 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.gotoAndPlay("L8");
}
Symbol 248 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.score = 0;
_root.point = 0;
_root.gotoAndPlay("L9");
}
Symbol 253 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.score = 0;
_root.point = 0;
_root.gotoAndPlay("L10");
}
Symbol 258 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.score = 0;
_root.point = 0;
_root.gotoAndPlay("L11");
}
Symbol 267 MovieClip Frame 1
stop();
Symbol 267 MovieClip Frame 19
gotoAndStop (1);
Symbol 269 MovieClip Frame 28
stop();
Instance of Symbol 82 MovieClip in Symbol 270 MovieClip Frame 1
onClipEvent (load) {
function reset() {
_root.spear._y = -100;
_root.spear._x = random(260) + 475;
spearSpeed = 16;
}
reset();
}
onClipEvent (enterFrame) {
_root.spear._y = _root.spear._y + spearSpeed;
if (this.hitTest(_root.pengoo1) and (_root.pengoo1._currentframe < 10)) {
_root.life = _root.life - 1;
_root.pengoo1.gotoAndPlay(10);
}
if (_root.spear._y > 800) {
reset();
}
}
Symbol 271 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.gotoAndPlay("L12");
}
Symbol 281 Button
on (release) {
gotoAndPlay (398);
}
Symbol 282 Button
on (release) {
gotoAndPlay (398);
}
Symbol 287 MovieClip Frame 1
stop();
Symbol 287 MovieClip Frame 19
gotoAndStop (1);
Symbol 288 MovieClip Frame 250
_root.play();
stop();
Symbol 296 MovieClip Frame 28
stop();
Symbol 297 Button
on (release) {
_root.life = 3;
_root.cont = _root.cont + 1;
_root.gotoAndPlay("L13");
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750) + 10;
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Instance of Symbol 301 MovieClip "snowflake" in Symbol 302 MovieClip Frame 1
onClipEvent (load) {
function reset() {
this._y = 0;
this._x = random(750);
fallSpeed = random(15) + 5;
}
reset();
}
onClipEvent (enterFrame) {
this._y = this._y + fallSpeed;
if (this._y > 450) {
reset();
}
}
Symbol 309 MovieClip Frame 563
stop();
_root.play();
Symbol 310 Button
on (release) {
play();
}
Symbol 319 MovieClip Frame 1
stopAllSounds();
Symbol 319 MovieClip Frame 618
gotoAndPlay (35);
Symbol 323 Button
on (release) {
_root.score = 0;
_root.gotoAndPlay("TT");
}
Symbol 334 Button
on (release) {
_root.fishnum = 0.5;
_root.play();
}
Symbol 336 Button
on (release) {
_root.fishnum = 1;
_root.play();
}
Symbol 338 Button
on (release) {
_root.fishnum = 2;
_root.play();
}
Symbol 340 Button
on (release) {
_root.fishnum = 4;
_root.play();
}
Symbol 342 Button
on (release) {
_root.gotoAndPlay("begin");
_root.menu._visible = false;
}
Symbol 350 MovieClip Frame 1
stop();
_root.p2Attack._visible = false;
Symbol 355 MovieClip Frame 111
_root.play();
Symbol 355 MovieClip Frame 135
stop();
Symbol 356 MovieClip Frame 1
stop();
Symbol 357 MovieClip Frame 1
stop();
Symbol 358 MovieClip Frame 1
stop();
Symbol 359 MovieClip Frame 1
stop();
Symbol 360 MovieClip Frame 1
stop();
Symbol 360 MovieClip Frame 2
_root.score2 = _root.score2 + 1000;
_root.p2fish = _root.p2fish + 8;
_root.p2bomb = _root.p2bomb + 12;