Frame 1
function menuChoiceOne() {
}
function menuChoiceTwo() {
_root._quality = "HIGH";
}
function menuChoiceThree() {
_root._quality = "MEDIUM";
}
function menuChoiceFour() {
_root._quality = "LOW";
}
_root.starting = 1;
NewMenu = new ContextMenu();
NewMenu.hideBuiltInItems();
NewMenu.customItems.push(new ContextMenuItem("EmbraceMorbidity Games", menuChoiceOne));
NewMenu.customItems.push(new ContextMenuItem("- High Quality", menuChoiceTwo));
NewMenu.customItems.push(new ContextMenuItem("- Medium Quality", menuChoiceThree));
NewMenu.customItems.push(new ContextMenuItem("- Low Quality", menuChoiceFour));
this.menu = NewMenu;
Frame 2
_root.menuSound = new Sound();
_root.menuSound.attachSound("menu_music");
_root.menuSound.start(0, 999);
Frame 3
stop();
_root.rewind = 0;
Instance of Symbol 58 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (_root.transitioning == 1) {
this.gotoAndStop(2);
}
}
onClipEvent (enterFrame) {
if (this._alpha >= 5) {
this._alpha = this._alpha - 5;
}
if (this._alpha == 0) {
_root.transitioning = 0;
this.gotoAndStop(1);
}
}
Instance of Symbol 60 MovieClip in Frame 3
onClipEvent (load) {
if (_root.starting == 1) {
_root.starting = 0;
this.unloadMovie();
}
}
Instance of Symbol 63 MovieClip "fade_out" in Frame 3
onClipEvent (enterFrame) {
this.nextFrame();
}
Instance of Symbol 65 MovieClip "fade_out_gameover" in Frame 3
onClipEvent (enterFrame) {
this.nextFrame();
}
Frame 4
onEnterFrame = function () {
if (_root.rewind == 1) {
prevFrame();
}
};
Instance of Symbol 104 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (_root.rewind == 1) {
this.prevFrame();
}
}
Frame 25
stop();
Instance of Symbol 146 MovieClip in Frame 25
onClipEvent (enterFrame) {
if ((_alpha <= 90) && (_root.rewind == 0)) {
_alpha = (_alpha + 10);
} else if ((_alpha >= 10) && (_root.rewind == 1)) {
_alpha = (_alpha - 10);
} else if (_root.rewind == 1) {
_root.prevFrame();
}
}
Frame 26
_root.menuSound.setVolume(80);
Instance of Symbol 104 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (_root.rewind == 1) {
this.prevFrame();
}
this.title.nextFrame();
}
Frame 28
_root.menuSound.setVolume(60);
Frame 30
_root.menuSound.setVolume(40);
Frame 32
_root.menuSound.setVolume(20);
Frame 34
_root.menuSound.stop();
_root.levelSound = new Sound(_root.s13);
_root.levelSound.attachSound("ingame_music");
_root.levelSound.start(0, 999);
_root.levelSound.setVolume(20);
Frame 36
_root.levelSound.setVolume(40);
Instance of Symbol 155 MovieClip in Frame 50
onClipEvent (enterFrame) {
if (this._alpha >= 5) {
this._alpha = this._alpha - 5;
}
swapDepths(21);
}
Frame 53
function spawnStartBugs() {
_root.i++;
duplicateMovieClip ("_root.startbug1", _root.i, _root.i);
_root.i++;
duplicateMovieClip ("_root.startbug2", _root.i, _root.i);
_root.i++;
duplicateMovieClip ("_root.startbug3", _root.i, _root.i);
_root.i++;
}
function shoot() {
if (_root.doublebolt == 1) {
duplicateMovieClip ("_root.zap", "active_zap", 1);
duplicateMovieClip ("_root.zap2", "active_zap2", 3);
} else {
duplicateMovieClip ("_root.zap", "active_zap", 1);
}
}
function spawnBug() {
_root.i++;
if (_root.bugsonscreen < (_root.maxbugs + 11)) {
if (_root.level == 1) {
bugtypes = 7;
}
if (_root.level == 2) {
bugtypes = 9;
}
if (_root.level == 3) {
bugtypes = 10;
}
if (_root.level >= 4) {
bugtypes = 11;
}
bugtospawn = Math.floor(Math.random(1) * bugtypes);
if ((((bugtospawn == 0) || (bugtospawn == 1)) || (bugtospawn == 3)) || (bugtospawn == 4)) {
duplicateMovieClip ("_root.beetle", _root.i, _root.i);
} else if ((bugtospawn == 5) || (bugtospawn == 6)) {
duplicateMovieClip ("_root.caterpiller", _root.i, _root.i);
} else if ((bugtospawn == 7) || (bugtospawn == 8)) {
duplicateMovieClip ("_root.snail", _root.i, _root.i);
} else if (bugtospawn == 9) {
duplicateMovieClip ("_root.bee", _root.i, _root.i);
} else if (bugtospawn == 10) {
duplicateMovieClip ("_root.butterfly", _root.i, _root.i);
}
_root.i++;
}
}
function spawnPowerup() {
_root.i++;
if (_root.powerupsonscreen < (_root.maxpowerups + 8)) {
if (_root.level == 1) {
poweruptospawn = Math.floor(Math.random(1) * 3);
}
if (_root.level == 2) {
poweruptospawn = Math.floor(Math.random(1) * 5);
}
if (_root.level == 3) {
poweruptospawn = Math.floor(Math.random(1) * 7);
}
if ((_root.level == 4) || (_root.level == 5)) {
poweruptospawn = Math.floor(Math.random(1) * 8);
}
duplicateMovieClip ("_root.powerup" + poweruptospawn, _root.i, _root.i);
_root.i++;
}
}
function fadeIn() {
if (_root.fadingout != 1) {
_root.transition.gotoAndStop(2);
_root.timer.timer.stop();
if (_root.transition._alpha <= 80) {
_root.transition._alpha = _root.transition._alpha + 20;
} else {
_root.transition._alpha = 100;
}
}
}
function fadeOut() {
_root.fade_out.gotoAndPlay(2);
}
function fadeIngameover() {
if (_root.fadingout2 != 1) {
_root.gameover._visible = true;
if (_root.gameover._alpha <= 80) {
_root.gameover._alpha = _root.gameover._alpha + 20;
} else {
_root.gameover._alpha = 100;
}
}
}
function fadeOutgameover() {
_root.fade_out_gameover.gotoAndPlay(2);
}
stop();
flower5scared = 0;
flower4scared = 0;
flower3scared = 0;
flower2scared = 0;
flower1scared = 0;
total_bugskilled = 0;
bullet_speed = 30;
maxbugs = 7;
maxpowerups = 3;
level = 1;
doingMove = 0;
icons = -1;
i = 20;
score = 0;
bugsonscreen = 0;
powerupsonscreen = 0;
fadingout2 = 0;
current = _root._currentframe;
onEnterFrame = function () {
_root.beetle._x = -500;
_root.caterpiller._x = -500;
_root.snail._x = -500;
_root.powerup0._x = -500;
_root.powerup1._x = -500;
_root.powerup2._x = -500;
_root.powerup3._x = -500;
_root.powerup4._x = -500;
_root.powerup5._x = -500;
_root.powerup6._x = -500;
_root.powerup7._x = -500;
_root.powerup0.stop();
_root.powerup1.stop();
_root.powerup2.stop();
_root.powerup3.stop();
_root.powerup4.stop();
_root.powerup5.stop();
_root.powerup6.stop();
_root.powerup7.stop();
if (Math.floor(Math.random(1) * 250) == 1) {
spawnPowerup();
}
if (_root.level == 1) {
if ((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower2._currentframe == 201)) {
if (_root.canwin == 1) {
_root.fadeIn();
}
}
}
if (_root.level == 2) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower2._currentframe == 201)) && (_root.flowers.flower3._currentframe == 201)) {
if (_root.canwin == 1) {
_root.fadeIn();
}
}
}
if (_root.level == 3) {
if ((((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower2._currentframe == 201)) && (_root.flowers.flower3._currentframe == 201)) && (_root.flowers.flower4._currentframe == 201)) {
if (_root.canwin == 1) {
_root.fadeIn();
}
}
}
if ((_root.level == 4) || (_root.level == 5)) {
if (((((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower2._currentframe == 201)) && (_root.flowers.flower3._currentframe == 201)) && (_root.flowers.flower4._currentframe == 201)) && (_root.flowers.flower5._currentframe == 201)) {
if (_root.canwin == 1) {
_root.fadeIn();
}
}
}
};
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 254 MovieClip "startbug3" in Frame 53
onClipEvent (load) {
speed = 4;
oldspeed = speed;
dead = 0;
eat_chance = 25;
turn_chance = 150;
direction = "right";
_root.bugsonscreen++;
this._y = 299;
this._x = Math.floor(Math.random(50) * 575);
}
onClipEvent (enterFrame) {
_root.startbug3._x = -500;
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
this._x = this._x - speed;
this._xscale = 100;
}
if (direction == "right") {
this._x = this._x + speed;
this._xscale = -100;
}
if (this._x <= 10) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
}
}
} else {
this.gotoAndStop("walk");
}
}
}
Instance of Symbol 317 MovieClip "startbug2" in Frame 53
onClipEvent (load) {
canmove = 0;
speed = 2.2;
oldspeed = speed;
dead = 0;
eat_chance = 20;
turn_chance = 150;
direction = "right";
hurt = 0;
_root.bugsonscreen++;
this._y = 306.3;
this._x = Math.floor(Math.random(50) * 575);
}
onClipEvent (enterFrame) {
_root.startbug2._x = -500;
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (hurt == 0) {
this.gotoAndStop("hurt");
} else if (hurt == 1) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
if (canmove == 1) {
this._x = this._x - speed;
}
this._xscale = 100;
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x + speed;
}
this._xscale = -100;
}
if (this._x <= 20) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
}
}
} else if (this._currentframe != 3) {
this.gotoAndStop("walk");
}
}
if (this.hitTest(_root.active_zap.zap) && (this.hitTest(_root.active_zap2.zap))) {
this.gotoAndStop("death");
dead = 1;
}
}
Instance of Symbol 254 MovieClip "startbug1" in Frame 53
onClipEvent (load) {
speed = 4;
oldspeed = speed;
dead = 0;
eat_chance = 25;
turn_chance = 150;
direction = "right";
_root.bugsonscreen++;
this._y = 299;
this._x = Math.floor(Math.random(50) * 575);
}
onClipEvent (enterFrame) {
_root.startbug1._x = -500;
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
this._x = this._x - speed;
this._xscale = 100;
}
if (direction == "right") {
this._x = this._x + speed;
this._xscale = -100;
}
if (this._x <= 10) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
}
}
} else {
this.gotoAndStop("walk");
}
}
}
Instance of Symbol 360 MovieClip "char" in Frame 53
onClipEvent (load) {
minSpeed = 3;
maxSpeed = 7;
acceleration = 0.3;
speed = minSpeed;
maxX = 572.5;
minX = (this._width / 2) + 8;
bobDirection = "down";
bobSpeed = 0.2;
minBob = (this._y = this._y - 2);
maxBob = (this._y = this._y + 2);
this._x = 69.3;
this._y = 88.7;
swapDepths(9);
}
onClipEvent (enterFrame) {
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (Key.isDown(83) || (Key.isDown(32))) {
if (_root.doingMove == 0) {
this.gotoAndStop("rain");
}
} else if ((!Key.isDown(83)) && (!Key.isDown(32))) {
if (_root.doingMove == 0) {
this.gotoAndStop("idol");
} else if (_root.doingMove == 1) {
this.char.play();
}
}
if (Key.isDown(65) || (Key.isDown(17))) {
if (_root.doingMove == 0) {
this.gotoAndStop("zap");
}
}
if (Key.isDown(39)) {
if (moving == "left") {
speed = speed / 1.5;
}
moving = "right";
if (this._x < maxX) {
if (speed < maxSpeed) {
speed = speed + acceleration;
}
this._x = this._x + speed;
}
this._xscale = 100;
} else if (Key.isDown(37)) {
if (moving == "right") {
speed = speed / 1.5;
}
moving = "left";
if (this._x > minX) {
if (speed < maxSpeed) {
speed = speed + acceleration;
}
this._x = this._x - speed;
}
this._xscale = -100;
} else {
if (speed > minSpeed) {
speed = speed - acceleration;
}
if (speed > minSpeed) {
if (moving == "left") {
if (this._x > minX) {
this._x = this._x - speed;
}
} else if (moving == "right") {
if (this._x < maxX) {
this._x = this._x + speed;
}
}
}
}
if (speed > maxSpeed) {
speed = maxSpeed;
}
if (speed < minSpeed) {
speed = minSpeed;
}
if (this._y >= maxBob) {
bobDirection = "up";
}
if (this._y <= minBob) {
bobDirection = "down";
}
if (bobDirection == "down") {
this._y = this._y + bobSpeed;
}
if (bobDirection == "up") {
this._y = this._y - bobSpeed;
}
}
Instance of Symbol 372 MovieClip "zap" in Frame 53
onClipEvent (load) {
if ((_root.char.moving == "left") && (_root.doublebolt == 1)) {
this._x = _root.char._x - 22;
}
if ((_root.char.moving == "right") && (_root.doublebolt == 1)) {
this._x = _root.char._x + 10;
} else {
this._x = _root.char._x;
}
this._y = _root.char._y - 30;
}
onClipEvent (enterFrame) {
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
_root.zap._y = -500;
_root.zap._x = -500;
this._y = this._y + _root.bullet_speed;
if (this._y >= 240) {
this.gotoAndStop(2);
this._y = this._y - _root.bullet_speed;
}
}
Instance of Symbol 379 MovieClip "sun_beam" in Frame 53
onClipEvent (enterFrame) {
swapDepths(7);
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
}
Instance of Symbol 402 MovieClip in Frame 53
onClipEvent (enterFrame) {
swapDepths(8);
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
}
Instance of Symbol 372 MovieClip "zap2" in Frame 53
onClipEvent (load) {
if (_root.char.moving == "left") {
this._x = _root.char._x - 25;
}
if (_root.char.moving == "right") {
this._x = _root.char._x - 15;
}
this._y = _root.char._y - 30;
}
onClipEvent (enterFrame) {
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
_root.zap2._y = -500;
_root.zap2._x = -500;
this._y = this._y + _root.bullet_speed;
if (this._y > 240) {
this.gotoAndStop(2);
this._y = this._y - _root.bullet_speed;
}
}
Instance of Symbol 254 MovieClip "beetle" in Frame 53
onClipEvent (load) {
speed = 4;
oldspeed = speed;
dead = 0;
eat_chance = 25;
turn_chance = 150;
_root.bugsonscreen++;
start = Math.floor(Math.random(1) * 2);
if (start == 0) {
this._x = -50;
} else if (start == 1) {
this._x = 675;
}
this._y = 299;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
this._x = this._x - speed;
this._xscale = 100;
}
if (direction == "right") {
this._x = this._x + speed;
this._xscale = -100;
}
if (this._x <= 10) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
}
}
} else {
this.gotoAndStop("walk");
}
}
}
Instance of Symbol 317 MovieClip "caterpiller" in Frame 53
onClipEvent (load) {
canmove = 0;
speed = 2.2;
oldspeed = speed;
dead = 0;
eat_chance = 20;
turn_chance = 150;
hurt = 0;
_root.bugsonscreen++;
start = Math.floor(Math.random(1) * 2);
if (start == 0) {
this._x = -50;
} else if (start == 1) {
this._x = 675;
}
this._y = 306.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.active_zap.zap) && (this.hitTest(_root.active_zap2.zap))) {
hurt = 1;
this.gotoAndStop("death");
dead = 1;
}
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (hurt == 0) {
this.gotoAndStop("hurt");
} else if (hurt == 1) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
if (canmove == 1) {
this._x = this._x - speed;
}
this._xscale = 100;
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x + speed;
}
this._xscale = -100;
}
if (this._x <= 20) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
}
}
} else if (this._currentframe != 3) {
this.gotoAndStop("walk");
}
}
}
Instance of Symbol 459 MovieClip "snail" in Frame 53
onClipEvent (load) {
speed = 1.3;
oldspeed = speed;
dead = 0;
turn_chance = 150;
_root.bugsonscreen++;
start = Math.floor(Math.random(1) * 2);
if (start == 0) {
this._x = -50;
} else if (start == 1) {
this._x = 675;
}
this._y = 304;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
this._x = this._x - speed;
this._xscale = 100;
}
if (direction == "right") {
this._x = this._x + speed;
this._xscale = -100;
}
if (this._x <= 10) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
}
} else {
this.gotoAndStop("walk");
}
}
}
Instance of Symbol 461 MovieClip "powerup0" in Frame 53
onClipEvent (load) {
this._y = 242;
this._x = Math.round(Math.random() * 325) + 150;
_root.powerupsonscreen++;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 100)) && (this.hitTest(_root.unloader))) {
_root.powerupsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (((this.hitTest(_root.char.char.rain) && (_root.cangrow == 1)) || (this.hitTest(_root.active_zap.zap))) || (this.hitTest(_root.active_zap2.zap))) {
_root.grower.gotoAndPlay(2);
_root.powerup_glower.gotoAndPlay(2);
_root.powerupsonscreen--;
_root.bonusSound = new Sound();
_root.bonusSound.attachSound("powerup");
_root.bonusSound.start(0, 1);
this.unloadMovie();
}
}
Instance of Symbol 463 MovieClip "powerup1" in Frame 53
onClipEvent (load) {
this._y = 239;
this._x = Math.round(Math.random() * 325) + 150;
_root.powerupsonscreen++;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.powerupsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (((this.hitTest(_root.char.char.rain) && (_root.cangrow == 1)) || (this.hitTest(_root.active_zap.zap))) || (this.hitTest(_root.active_zap2.zap))) {
_root.speedy.gotoAndPlay(2);
_root.powerup_glower.gotoAndPlay(2);
_root.powerupsonscreen--;
_root.bonusSound = new Sound();
_root.bonusSound.attachSound("powerup");
_root.bonusSound.start(0, 1);
this.unloadMovie();
}
}
Instance of Symbol 467 MovieClip "powerup2" in Frame 53
onClipEvent (load) {
this._y = 237;
this._x = Math.round(Math.random() * 325) + 150;
_root.powerupsonscreen++;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.powerupsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (((this.hitTest(_root.char.char.rain) && (_root.cangrow == 1)) || (this.hitTest(_root.active_zap.zap))) || (this.hitTest(_root.active_zap2.zap))) {
_root.double_bolt.gotoAndPlay(2);
_root.powerup_glower.gotoAndPlay(2);
_root.powerupsonscreen--;
_root.bonusSound = new Sound();
_root.bonusSound.attachSound("powerup");
_root.bonusSound.start(0, 1);
this.unloadMovie();
}
}
Instance of Symbol 469 MovieClip "powerup3" in Frame 53
onClipEvent (load) {
this._y = 239;
this._x = Math.round(Math.random() * 325) + 150;
_root.powerupsonscreen++;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.powerupsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (((this.hitTest(_root.char.char.rain) && (_root.cangrow == 1)) || (this.hitTest(_root.active_zap.zap))) || (this.hitTest(_root.active_zap2.zap))) {
_root.large_rain.gotoAndPlay(2);
_root.powerup_glower.gotoAndPlay(2);
_root.powerupsonscreen--;
_root.bonusSound = new Sound();
_root.bonusSound.attachSound("powerup");
_root.bonusSound.start(0, 1);
this.unloadMovie();
}
}
Instance of Symbol 473 MovieClip "powerup7" in Frame 53
onClipEvent (load) {
this._y = 238;
this._x = Math.round(Math.random() * 325) + 150;
_root.powerupsonscreen++;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.powerupsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (((this.hitTest(_root.char.char.rain) && (_root.cangrow == 1)) || (this.hitTest(_root.active_zap.zap))) || (this.hitTest(_root.active_zap2.zap))) {
_root.sun_beam.play();
_root.powerup_glower.gotoAndPlay(2);
_root.powerupsonscreen--;
_root.bonusSound = new Sound();
_root.bonusSound.attachSound("powerup");
_root.bonusSound.start(0, 1);
this.unloadMovie();
}
}
Instance of Symbol 524 MovieClip "bee" in Frame 53
onClipEvent (load) {
speed = 4;
oldspeed = speed;
dead = 0;
eat_chance = 999999999 /* 0x3B9AC9FF */;
oldeat_chance = eat_chance;
turn_chance = 250;
start = Math.floor(Math.random(1) * 2);
if (start == 0) {
this._x = -50;
} else if (start == 1) {
this._x = 675;
}
_root.bugsonscreen++;
this._y = Math.round(Math.random() * 100) + 150;
bobDirection = "down";
bobSpeed = 0.5;
minBob = this._y - 5;
maxBob = this._y + 5;
_root.bee._x = -500;
if ((_root.level < 3) && (this._x > -100)) {
this.swapDepths(1048000);
this.removeMovieClip();
}
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
_root.bee._x = -500;
if (this.hitTest(_root.flowers.flower1.scared)) {
_root.flower1scared = 1;
_root.flower1unscare.gotoAndPlay(2);
}
if (this.hitTest(_root.flowers.flower2.scared)) {
_root.flower2scared = 1;
_root.flower2unscare.gotoAndPlay(2);
}
if (this.hitTest(_root.flowers.flower3.scared)) {
_root.flower3scared = 1;
_root.flower3unscare.gotoAndPlay(2);
}
if (this.hitTest(_root.flowers.flower4.scared)) {
_root.flower4scared = 1;
_root.flower4unscare.gotoAndPlay(2);
}
if (this.hitTest(_root.flowers.flower5.scared)) {
_root.flower5scared = 1;
_root.flower5unscare.gotoAndPlay(2);
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (dead == 0) {
if (this.hitTest(_root.active_zap.zap)) {
_root.active_zap.gotoAndStop(2);
}
if (this.hitTest(_root.active_zap2.zap)) {
_root.active_zap2.gotoAndStop(2);
}
this.gotoAndStop("death");
dead = 1;
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if ((dead == 0) && (_root.freeze == 0)) {
if (this._y >= maxBob) {
bobDirection = "up";
}
if (this._y <= minBob) {
bobDirection = "down";
}
if (bobDirection == "down") {
this._y = this._y + bobSpeed;
}
if (bobDirection == "up") {
this._y = this._y - bobSpeed;
}
if (((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this.eat_stopper._currentframe == 1)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
this._x = this._x - speed;
this._xscale = 100;
}
if (direction == "right") {
this._x = this._x + speed;
this._xscale = -100;
}
if (this._x <= 10) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if (((_root.electricflowers == 0) && (_root.freeze == 0)) && (this.eat_stopper._currentframe == 1)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
if (this.eat_stopper._currentframe == 1) {
if (this.bug._currentframe == 8) {
_root.flower1stung = 1;
_root.flower1stinger.gotoAndPlay(2);
}
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
if (this.eat_stopper._currentframe == 1) {
this.gotoAndStop("eat");
}
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
if (this.eat_stopper._currentframe == 1) {
if (this.bug._currentframe == 8) {
_root.flower2stung = 1;
_root.flower2stinger.gotoAndPlay(2);
}
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
if (this.eat_stopper._currentframe == 1) {
this.gotoAndStop("eat");
}
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
if (this.eat_stopper._currentframe == 1) {
if (this.bug._currentframe == 8) {
_root.flower3stung = 1;
_root.flower3stinger.gotoAndPlay(2);
}
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
if (this.eat_stopper._currentframe == 1) {
this.gotoAndStop("eat");
}
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
if (this.eat_stopper._currentframe == 1) {
if (this.bug._currentframe == 8) {
_root.flower4stung = 1;
_root.flower4stinger.gotoAndPlay(2);
}
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
if (this.eat_stopper._currentframe == 1) {
this.gotoAndStop("eat");
}
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
if (this.eat_stopper._currentframe == 1) {
if (this.bug._currentframe == 8) {
_root.flower5stung = 1;
_root.flower5stinger.gotoAndPlay(2);
}
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
if (this.eat_stopper._currentframe == 1) {
this.gotoAndStop("eat");
}
}
}
}
} else {
this.gotoAndStop("walk");
}
}
if ((this.eat_stopper._currentframe != 1) && (this._currentframe == 2)) {
this.gotoAndStop("walk");
speed = oldspeed;
}
}
Instance of Symbol 564 MovieClip "butterfly" in Frame 53
onClipEvent (load) {
speed = 4;
oldspeed = speed;
dead = 0;
eat_chance = 25;
turn_chance = 250;
start = Math.floor(Math.random(1) * 2);
if (start == 0) {
this._x = -50;
} else if (start == 1) {
this._x = 675;
}
_root.bugsonscreen++;
this._y = Math.round(Math.random() * 100) + 150;
bobDirection = "down";
bobSpeed = 0.5;
minBob = this._y - 5;
maxBob = this._y + 5;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
_root.butterfly._x = -500;
if (this.hitTest(_root.flowers.flower1.scared)) {
_root.flower1scared = 1;
_root.flower1unscare.gotoAndPlay(2);
}
if (this.hitTest(_root.flowers.flower2.scared)) {
_root.flower2scared = 1;
_root.flower2unscare.gotoAndPlay(2);
}
if (this.hitTest(_root.flowers.flower3.scared)) {
_root.flower3scared = 1;
_root.flower3unscare.gotoAndPlay(2);
}
if (this.hitTest(_root.flowers.flower4.scared)) {
_root.flower4scared = 1;
_root.flower4unscare.gotoAndPlay(2);
}
if (this.hitTest(_root.flowers.flower5.scared)) {
_root.flower5scared = 1;
_root.flower5unscare.gotoAndPlay(2);
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (dead == 0) {
if (this.hitTest(_root.active_zap.zap)) {
_root.active_zap.gotoAndStop(2);
}
if (this.hitTest(_root.active_zap2.zap)) {
_root.active_zap2.gotoAndStop(2);
}
this.gotoAndStop("death");
dead = 1;
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if ((dead == 0) && (_root.freeze == 0)) {
if (this._y >= maxBob) {
bobDirection = "up";
}
if (this._y <= minBob) {
bobDirection = "down";
}
if (bobDirection == "down") {
this._y = this._y + bobSpeed;
}
if (bobDirection == "up") {
this._y = this._y - bobSpeed;
}
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
this._x = this._x - speed;
this._xscale = 100;
}
if (direction == "right") {
this._x = this._x + speed;
this._xscale = -100;
}
if (this._x <= 10) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
} else if (_root.flowers.flower1._currentframe == 201) {
_root.flowers.flower1.flowerhead.prevFrame();
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
} else if (_root.flowers.flower2._currentframe == 201) {
_root.flowers.flower2.flowerhead.prevFrame();
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
} else if (_root.flowers.flower3._currentframe == 201) {
_root.flowers.flower3.flowerhead.prevFrame();
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
} else if (_root.flowers.flower4._currentframe == 201) {
_root.flowers.flower4.flowerhead.prevFrame();
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
} else if (_root.flowers.flower5._currentframe == 201) {
_root.flowers.flower5.flowerhead.prevFrame();
}
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
}
}
} else {
this.gotoAndStop("walk");
}
}
}
Instance of Symbol 569 MovieClip "powerup4" in Frame 53
onClipEvent (load) {
this._y = 238;
this._x = Math.round(Math.random() * 325) + 150;
_root.powerupsonscreen++;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.powerupsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (((this.hitTest(_root.char.char.rain) && (_root.cangrow == 1)) || (this.hitTest(_root.active_zap.zap))) || (this.hitTest(_root.active_zap2.zap))) {
_root.add_time.play();
_root.powerup_glower.gotoAndPlay(2);
_root.powerupsonscreen--;
_root.bonusSound = new Sound();
_root.bonusSound.attachSound("powerup");
_root.bonusSound.start(0, 1);
this.unloadMovie();
}
}
Instance of Symbol 573 MovieClip "freeze" in Frame 53
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.play();
} else {
this.gotoAndStop(1);
}
}
Instance of Symbol 576 MovieClip "powerup6" in Frame 53
onClipEvent (load) {
this._y = 238;
this._x = Math.round(Math.random() * 325) + 150;
_root.powerupsonscreen++;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.powerupsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (((this.hitTest(_root.char.char.rain) && (_root.cangrow == 1)) || (this.hitTest(_root.active_zap.zap))) || (this.hitTest(_root.active_zap2.zap))) {
_root.powerup_glower.gotoAndPlay(2);
_root.freeze = 1;
_root.powerupsonscreen--;
_root.bonusSound = new Sound();
_root.bonusSound.attachSound("powerup");
_root.bonusSound.start(0, 1);
this.unloadMovie();
}
}
Instance of Symbol 580 MovieClip in Frame 53
onClipEvent (enterFrame) {
swapDepths(6);
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
}
Instance of Symbol 584 MovieClip "powerup5" in Frame 53
onClipEvent (load) {
this._y = 238;
this._x = Math.round(Math.random() * 325) + 150;
_root.powerupsonscreen++;
}
onClipEvent (enterFrame) {
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.powerupsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (((this.hitTest(_root.char.char.rain) && (_root.cangrow == 1)) || (this.hitTest(_root.active_zap.zap))) || (this.hitTest(_root.active_zap2.zap))) {
_root.electric_flowers.gotoAndPlay(2);
_root.powerup_glower.gotoAndPlay(2);
_root.powerupsonscreen--;
_root.bonusSound = new Sound();
_root.bonusSound.attachSound("powerup");
_root.bonusSound.start(0, 1);
this.unloadMovie();
}
}
Instance of Symbol 254 MovieClip in Frame 53
onClipEvent (load) {
speed = 4;
oldspeed = speed;
dead = 0;
eat_chance = 25;
turn_chance = 150;
direction = "left";
_root.bugsonscreen++;
this._y = 299;
this._x = Math.floor(Math.random(50) * 575);
}
onClipEvent (enterFrame) {
_root.startbug3._x = -500;
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.swapDepths(1048000);
this.removeMovieClip();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
this._x = this._x - speed;
this._xscale = 100;
}
if (direction == "right") {
this._x = this._x + speed;
this._xscale = -100;
}
if (this._x <= 10) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
}
}
} else {
this.gotoAndStop("walk");
}
}
}
Instance of Symbol 317 MovieClip in Frame 53
onClipEvent (load) {
canmove = 0;
speed = 2.2;
oldspeed = speed;
dead = 0;
eat_chance = 20;
turn_chance = 150;
direction = "left";
hurt = 0;
_root.bugsonscreen++;
this._y = 306.3;
this._x = Math.floor(Math.random(50) * 575);
}
onClipEvent (enterFrame) {
_root.startbug2._x = -500;
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
if (this.hitTest(_root.active_zap.zap) && (this.hitTest(_root.active_zap2.zap))) {
hurt = 1;
this.gotoAndStop("death");
dead = 1;
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (hurt == 0) {
this.gotoAndStop("hurt");
} else if (hurt == 1) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
if (canmove == 1) {
this._x = this._x - speed;
}
this._xscale = 100;
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x + speed;
}
this._xscale = -100;
}
if (this._x <= 20) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
if (direction == "left") {
if (canmove == 1) {
this._x = this._x + speed;
}
}
if (direction == "right") {
if (canmove == 1) {
this._x = this._x - speed;
}
}
this.gotoAndStop("eat");
}
}
}
} else if (this._currentframe != 3) {
this.gotoAndStop("walk");
}
}
if (this.hitTest(_root.active_zap.zap) && (this.hitTest(_root.active_zap2.zap))) {
this.gotoAndStop("death");
dead = 1;
}
}
Instance of Symbol 254 MovieClip in Frame 53
onClipEvent (load) {
speed = 4;
oldspeed = speed;
dead = 0;
eat_chance = 25;
turn_chance = 150;
direction = "right";
_root.bugsonscreen++;
this._y = 299;
this._x = Math.floor(Math.random(50) * 575);
}
onClipEvent (enterFrame) {
_root.startbug1._x = -500;
if (((_root.transition._currentframe != 1) || (_root.gameover._alpha >= 1)) && (this.hitTest(_root.unloader))) {
_root.bugsonscreen--;
this.swapDepths(1048000);
this.removeMovieClip();
}
if ((_root.freeze == 1) && (dead == 0)) {
myColor = new Color(this);
myColor.setTint(100, 100, 255, 50);
speed = 0;
} else {
speed = oldspeed;
myColor.setTint(0, 0, 0, 0);
}
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
if (this.hitTest(_root.active_zap.zap) || (this.hitTest(_root.active_zap2.zap))) {
if (dead == 0) {
this.gotoAndStop("death");
dead = 1;
}
}
if (((((((this.hitTest(_root.sun_beam.fryer1) || (this.hitTest(_root.sun_beam.fryer2))) || (this.hitTest(_root.sun_beam.fryer3))) || (this.hitTest(_root.sun_beam.fryer4))) || (this.hitTest(_root.sun_beam.fryer5))) || (this.hitTest(_root.sun_beam.fryer6))) || (this.hitTest(_root.sun_beam.fryer7))) || (this.hitTest(_root.sun_beam.fryer8))) {
if (dead == 0) {
this.gotoAndStop("death2");
dead = 1;
}
}
if (dead == 0) {
if ((((Math.floor(Math.random(1) * turn_chance) == 1) && (_root.freeze == 0)) && (this._x > 20)) && (this._x < 600)) {
if (direction == "right") {
direction = "left";
} else if (direction == "left") {
direction = "right";
}
}
if (direction == "left") {
this._x = this._x - speed;
this._xscale = 100;
}
if (direction == "right") {
this._x = this._x + speed;
this._xscale = -100;
}
if (this._x <= 10) {
direction = "right";
}
if (this._x >= 603) {
direction = "left";
}
if (((((((((this.hitter.hitTest(_root.flowers.flower1.eater_top) || (this.hitter.hitTest(_root.flowers.flower1.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) || (this.hitter.hitTest(_root.flowers.flower2.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) || (this.hitter.hitTest(_root.flowers.flower3.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) || (this.hitter.hitTest(_root.flowers.flower4.eater_bottom))) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) || (this.hitter.hitTest(_root.flowers.flower5.eater_bottom))) {
if (_root.electricflowers == 1) {
dead = 1;
gotoAndStop ("death");
}
if ((_root.electricflowers == 0) && (_root.freeze == 0)) {
_root.score_minuser.play();
if (Math.floor(Math.random(1) * eat_chance) != 1) {
if (this.hitter.hitTest(_root.flowers.flower1.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower1.eater_top))) {
_root.flowers.flower1.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower2.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower2.eater_top))) {
_root.flowers.flower2.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower3.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower3.eater_top))) {
_root.flowers.flower3.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower4.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower4.eater_top))) {
_root.flowers.flower4.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
if (this.hitter.hitTest(_root.flowers.flower5.eater_bottom) || (this.hitter.hitTest(_root.flowers.flower5.eater_top))) {
_root.flowers.flower5.prevFrame();
if (direction == "left") {
this._x = this._x + speed;
}
if (direction == "right") {
this._x = this._x - speed;
}
this.gotoAndStop("eat");
}
}
}
} else {
this.gotoAndStop("walk");
}
}
}
Instance of Symbol 676 MovieClip "gameover" in Frame 53
onClipEvent (load) {
swapDepths(19);
done = 0;
}
onClipEvent (enterFrame) {
if ((done == 0) && (this._alpha >= 95)) {
_root.gameoverSound = new Sound();
_root.gameoverSound.attachSound("gameover");
_root.gameoverSound.start(0, 1);
_root.levelSound.stop();
_root.menuSound2 = new Sound(_root.s1);
_root.menuSound2.attachSound("menu_music");
_root.menuSound2.start(0, 999);
done = 1;
}
}
Instance of Symbol 718 MovieClip "transition" in Frame 53
onClipEvent (load) {
swapDepths(20);
}
Frame 54
stop();
Frame 55
_root.swishSound = new Sound(_root.s1);
_root.swishSound.attachSound("swish1");
_root.swishSound.start(0, 1);
Instance of Symbol 673 MovieClip in Frame 55
onClipEvent (load) {
this.stop();
}
Frame 62
_root.swishSound = new Sound(_root.s3);
_root.swishSound.attachSound("swish3");
_root.swishSound.start(0, 1);
Frame 71
_root.transitioning = 1;
_root.gotoAndStop("menu");
Symbol 39 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
bar.stop();
gotoAndStop ("loaded");
}
Symbol 39 MovieClip Frame 2
gotoAndPlay (1);
Symbol 39 MovieClip Frame 3
_root.gotoAndPlay(2);
Symbol 53 Button
on (release) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
_root.gotoAndPlay("level1");
}
on (rollOver) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Symbol 55 Button
on (release) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
_root.play();
}
on (rollOver) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Symbol 58 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 2
unloadMovie (this);
Symbol 63 MovieClip Frame 1
stop();
_root.fadingout = 0;
Symbol 63 MovieClip Frame 2
if (_root.transition._alpha >= 20) {
_root.transition._alpha = _root.transition._alpha - 20;
} else {
_root.transition._alpha = 0;
}
if (_root.transition._alpha == 0) {
_root.transition.gotoAndStop(1);
}
_root.fadingout = 1;
Symbol 63 MovieClip Frame 3
if (_root.transition._alpha >= 20) {
_root.transition._alpha = _root.transition._alpha - 20;
} else {
_root.transition._alpha = 0;
}
if (_root.transition._alpha == 0) {
_root.transition.gotoAndStop(1);
}
Symbol 63 MovieClip Frame 4
if (_root.transition._alpha >= 20) {
_root.transition._alpha = _root.transition._alpha - 20;
} else {
_root.transition._alpha = 0;
}
if (_root.transition._alpha == 0) {
_root.transition.gotoAndStop(1);
}
Symbol 63 MovieClip Frame 5
if (_root.transition._alpha >= 20) {
_root.transition._alpha = _root.transition._alpha - 20;
} else {
_root.transition._alpha = 0;
}
if (_root.transition._alpha == 0) {
_root.transition.gotoAndStop(1);
}
Symbol 63 MovieClip Frame 6
if (_root.transition._alpha >= 20) {
_root.transition._alpha = _root.transition._alpha - 20;
} else {
_root.transition._alpha = 0;
}
if (_root.transition._alpha == 0) {
_root.transition.gotoAndStop(1);
}
_root.spawnStartBugs();
Symbol 65 MovieClip Frame 1
stop();
_root.fadingout2 = 0;
Symbol 65 MovieClip Frame 2
if (_root.gameover._alpha >= 20) {
_root.gameover._alpha = _root.gameover._alpha - 20;
} else {
_root.gameover._alpha = 0;
}
if (_root.gameover._alpha == 0) {
_root.gameover._visible = false;
}
_root.fadingout2 = 1;
Symbol 65 MovieClip Frame 3
if (_root.gameover._alpha >= 20) {
_root.gameover._alpha = _root.gameover._alpha - 20;
} else {
_root.gameover._alpha = 0;
}
if (_root.gameover._alpha == 0) {
_root.gameover._visible = false;
}
Symbol 65 MovieClip Frame 4
if (_root.gameover._alpha >= 20) {
_root.gameover._alpha = _root.gameover._alpha - 20;
} else {
_root.gameover._alpha = 0;
}
if (_root.gameover._alpha == 0) {
_root.gameover._visible = false;
}
Symbol 65 MovieClip Frame 5
if (_root.gameover._alpha >= 20) {
_root.gameover._alpha = _root.gameover._alpha - 20;
} else {
_root.gameover._alpha = 0;
}
if (_root.gameover._alpha == 0) {
_root.gameover._visible = false;
}
Symbol 65 MovieClip Frame 6
if (_root.gameover._alpha >= 20) {
_root.gameover._alpha = _root.gameover._alpha - 20;
} else {
_root.gameover._alpha = 0;
}
if (_root.gameover._alpha == 0) {
_root.gameover._visible = false;
}
Symbol 67 MovieClip Frame 1
stop();
Instance of Symbol 68 MovieClip in Symbol 104 MovieClip Frame 1
onClipEvent (load) {
this.stop();
}
Instance of Symbol 69 MovieClip in Symbol 104 MovieClip Frame 1
onClipEvent (load) {
this.stop();
}
Instance of Symbol 80 MovieClip in Symbol 104 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Symbol 104 MovieClip Frame 22
stop();
Symbol 140 MovieClip Frame 1
onEnterFrame = function () {
if (_root.reverse == 1) {
prevFrame();
}
};
stop();
_root.reverse = 0;
Symbol 140 MovieClip Frame 17
stop();
_root.reverse = 0;
Symbol 140 MovieClip Frame 34
stop();
_root.reverse = 0;
Symbol 140 MovieClip Frame 53
stop();
_root.reverse = 0;
Symbol 140 MovieClip Frame 72
stop();
_root.reverse = 0;
Symbol 144 Button
on (release) {
if (item._currentframe == 1) {
_root.rewind = 1;
_root.pressSound = new Sound(_root.s1);
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
} else {
_root.swish2 = new Sound(_root.s5);
_root.swish2.attachSound("swish1");
_root.swish2.start(0, 1);
_root.reverse = 1;
}
}
on (rollOver) {
_root.pressSound = new Sound(_root.s4);
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Symbol 145 Button
on (release) {
if (item._currentframe == 72) {
_root.rewind = 1;
_root.pressSound = new Sound(_root.s1);
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
} else {
_root.swish2 = new Sound(_root.s5);
_root.swish2.attachSound("swish2");
_root.swish2.start(0, 1);
item.play();
}
}
on (rollOver) {
_root.pressSound = new Sound(_root.s4);
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Symbol 146 MovieClip Frame 1
stop();
Symbol 193 MovieClip Frame 1
stop();
Symbol 193 MovieClip Frame 2
_root.flowerSound = new Sound();
_root.flowerSound.attachSound("flowergasp");
_root.flowerSound.start(0, 1);
Instance of Symbol 193 MovieClip in Symbol 196 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent._parent._parent.flower == 1) {
if (_root.flower1scared == 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (_parent._parent._parent.flower == 2) {
if (_root.flower2scared == 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (_parent._parent._parent.flower == 3) {
if (_root.flower3scared == 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (_parent._parent._parent.flower == 4) {
if (_root.flower4scared == 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (_parent._parent._parent.flower == 5) {
if (_root.flower5scared == 1) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
}
Instance of Symbol 195 MovieClip in Symbol 196 MovieClip Frame 20
onClipEvent (load) {
if (_parent._parent._parent.flower == 1) {
if (_root.flower1scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 2) {
if (_root.flower2scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 3) {
if (_root.flower3scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 4) {
if (_root.flower4scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 5) {
if (_root.flower5scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
}
Instance of Symbol 195 MovieClip in Symbol 196 MovieClip Frame 112
onClipEvent (load) {
if (_parent._parent._parent.flower == 1) {
if (_root.flower1scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 2) {
if (_root.flower2scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 3) {
if (_root.flower3scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 4) {
if (_root.flower4scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 5) {
if (_root.flower5scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
}
Instance of Symbol 195 MovieClip in Symbol 196 MovieClip Frame 248
onClipEvent (load) {
if (_parent._parent._parent.flower == 1) {
if (_root.flower1scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 2) {
if (_root.flower2scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 3) {
if (_root.flower3scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 4) {
if (_root.flower4scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 5) {
if (_root.flower5scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
}
Instance of Symbol 195 MovieClip in Symbol 196 MovieClip Frame 272
onClipEvent (load) {
if (_parent._parent._parent.flower == 1) {
if (_root.flower1scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 2) {
if (_root.flower2scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 3) {
if (_root.flower3scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 4) {
if (_root.flower4scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
if (_parent._parent._parent.flower == 5) {
if (_root.flower5scared == 1) {
this._visible = false;
} else {
this._visible = true;
}
}
}
Symbol 197 MovieClip Frame 16
stop();
_root.canwin = 1;
Symbol 199 MovieClip Frame 25
stop();
if (flower == 1) {
_root.flowers.flower1stung = 0;
}
if (flower == 2) {
_root.flowers.flower2stung = 0;
}
if (flower == 3) {
_root.flower3stung = 0;
}
if (flower == 4) {
_root.flowers.flower4stung = 0;
}
if (flower == 5) {
_root.flowers.flower5stung = 0;
}
Symbol 199 MovieClip Frame 200
_root.canwin = 0;
Symbol 199 MovieClip Frame 201
_root.flowerSound = new Sound();
_root.flowerSound.attachSound("floweryay");
_root.flowerSound.start(0, 1);
Instance of Symbol 197 MovieClip "flowerhead" in Symbol 199 MovieClip Frame 201
onClipEvent (enterFrame) {
if (_parent.flower == 1) {
if ((_root.flower1stinger._currentframe != 1) || (_root.flower1Reverse == 1)) {
this.prevFrame();
}
} else {
_root.flower1Reverse = 0;
}
if (_parent.flower == 2) {
if ((_root.flower2stinger._currentframe != 1) || (_root.flower2Reverse == 1)) {
this.prevFrame();
}
} else {
_root.flower2Reverse = 0;
}
if (_parent.flower == 3) {
if ((_root.flower3stinger._currentframe != 1) || (_root.flower3Reverse == 1)) {
this.prevFrame();
}
} else {
_root.flower3Reverse = 0;
}
if (_parent.flower == 4) {
if ((_root.flower4stinger._currentframe != 1) || (_root.flower4Reverse == 1)) {
this.prevFrame();
}
} else {
_root.flower4Reverse = 0;
}
if (_parent.flower == 5) {
if ((_root.flower5stinger._currentframe != 1) || (_root.flower5Reverse == 1)) {
this.prevFrame();
}
} else {
_root.flower5Reverse = 0;
}
}
Instance of Symbol 198 MovieClip "scared" in Symbol 199 MovieClip Frame 201
onClipEvent (load) {
this._visible = false;
}
Symbol 200 MovieClip Frame 1
stop();
Instance of Symbol 199 MovieClip "flower1" in Symbol 200 MovieClip Frame 1
onClipEvent (load) {
this.stop();
flower = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.char.rain)) {
if (_root.cangrow == 1) {
if (this._currentframe <= 24) {
this.play();
} else {
if (_root.largerain == 1) {
this.nextFrame();
}
this.nextFrame();
}
}
}
}
Instance of Symbol 199 MovieClip "flower2" in Symbol 200 MovieClip Frame 1
onClipEvent (load) {
this.stop();
flower = 2;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.char.rain)) {
if (_root.cangrow == 1) {
if (this._currentframe <= 24) {
this.play();
} else {
if (_root.largerain == 1) {
this.nextFrame();
}
this.nextFrame();
}
}
}
}
Instance of Symbol 199 MovieClip "flower3" in Symbol 200 MovieClip Frame 2
onClipEvent (load) {
this.stop();
flower = 3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.char.rain)) {
if (_root.cangrow == 1) {
if (this._currentframe <= 24) {
this.play();
} else {
if (_root.largerain == 1) {
this.nextFrame();
}
this.nextFrame();
}
}
}
}
Instance of Symbol 199 MovieClip "flower4" in Symbol 200 MovieClip Frame 3
onClipEvent (load) {
this.stop();
flower = 4;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.char.rain)) {
if (_root.cangrow == 1) {
if (this._currentframe <= 24) {
this.play();
} else {
if (_root.largerain == 1) {
this.nextFrame();
}
this.nextFrame();
}
}
}
}
Instance of Symbol 199 MovieClip "flower5" in Symbol 200 MovieClip Frame 4
onClipEvent (load) {
this.stop();
flower = 5;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.char.rain)) {
if (_root.cangrow == 1) {
if (this._currentframe <= 24) {
this.play();
} else {
if (_root.largerain == 1) {
this.nextFrame();
}
this.nextFrame();
}
}
}
}
Symbol 236 MovieClip Frame 1
_root.frySound = new Sound(_root.s10);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
_root.zapSound = new Sound(_root.s11);
_root.zapSound.attachSound("zap");
_root.zapSound.start(0, 1);
Symbol 236 MovieClip Frame 100
_parent.unloadMovie();
Symbol 253 MovieClip Frame 1
_root.zapSound = new Sound(_root.s11);
_root.zapSound.attachSound("zap");
_root.zapSound.start(0, 1);
Symbol 253 MovieClip Frame 93
_parent.unloadMovie();
Symbol 254 MovieClip Frame 1
stop();
Instance of Symbol 206 MovieClip in Symbol 254 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Instance of Symbol 212 MovieClip in Symbol 254 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Symbol 254 MovieClip Frame 3
_root.bugsonscreen--;
_root.total_bugskilled++;
_root.score = _root.score + 10;
Symbol 254 MovieClip Frame 4
_root.bugsonscreen--;
_root.total_bugskilled++;
_root.score = _root.score + 10;
Symbol 262 MovieClip Frame 1
_parent.canmove = 0;
Symbol 262 MovieClip Frame 9
_parent.canmove = 1;
Symbol 269 MovieClip Frame 10
gotoAndPlay (5);
Symbol 282 MovieClip Frame 1
_root.zapSound = new Sound(_root.s10);
_root.zapSound.attachSound("zap");
_root.zapSound.start(0, 1);
_parent.canmove = 0;
Symbol 282 MovieClip Frame 2
_parent.canmove = 0;
Symbol 282 MovieClip Frame 3
_parent.canmove = 0;
Symbol 282 MovieClip Frame 4
_parent.canmove = 0;
Symbol 282 MovieClip Frame 5
_parent.canmove = 0;
Symbol 282 MovieClip Frame 6
_parent.canmove = 0;
Symbol 282 MovieClip Frame 7
_parent.canmove = 0;
Symbol 282 MovieClip Frame 8
_parent.canmove = 0;
Symbol 282 MovieClip Frame 9
_parent.canmove = 0;
Symbol 282 MovieClip Frame 10
_parent.canmove = 0;
Symbol 282 MovieClip Frame 11
_parent.canmove = 0;
Symbol 282 MovieClip Frame 12
_parent.canmove = 0;
_parent.hurt = 1;
_parent.gotoAndStop("walk");
Symbol 305 MovieClip Frame 1
_root.frySound = new Sound(_root.s11);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
_root.zapSound = new Sound(_root.s10);
_root.zapSound.attachSound("zap");
_root.zapSound.start(0, 1);
Symbol 305 MovieClip Frame 85
_parent.unloadMovie();
Symbol 316 MovieClip Frame 1
_root.frySound = new Sound(_root.s11);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
Symbol 316 MovieClip Frame 75
_parent.unloadMovie();
Symbol 317 MovieClip Frame 1
stop();
Instance of Symbol 262 MovieClip in Symbol 317 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Instance of Symbol 269 MovieClip in Symbol 317 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Symbol 317 MovieClip Frame 4
_root.bugsonscreen--;
_root.total_bugskilled++;
_root.score = _root.score + 20;
Symbol 317 MovieClip Frame 5
_root.bugsonscreen--;
_root.total_bugskilled++;
_root.score = _root.score + 20;
Symbol 338 MovieClip Frame 9
stop();
Symbol 346 MovieClip Frame 7
stop();
_root.cangrow = 1;
Symbol 347 MovieClip Frame 1
_root.doingMove = 1;
_root.reverseRain = 0;
Symbol 347 MovieClip Frame 9
stop();
_root.rainSound = new Sound(_root.s19);
_root.rainSound.attachSound("rain");
_root.rainSound.start(0, 999);
Instance of Symbol 346 MovieClip "rain" in Symbol 347 MovieClip Frame 9
onClipEvent (load) {
this._alpha = 100;
}
onClipEvent (enterFrame) {
if (_root.reverseRain == 1) {
this._alpha = this._alpha - 20;
}
if (_root.largerain == 1) {
this._width = 175;
} else {
this._width = 84.2;
}
}
Symbol 347 MovieClip Frame 10
_root.reverseRain = 1;
_root.cangrow = 0;
char.gotoAndPlay(10);
_root.rainSound.stop();
Symbol 347 MovieClip Frame 17
_root.doingMove = 0;
Symbol 359 MovieClip Frame 1
_root.doingMove = 1;
Symbol 359 MovieClip Frame 9
_root.shoot();
Symbol 359 MovieClip Frame 25
_root.char.gotoAndStop("idol");
Symbol 360 MovieClip Frame 1
stop();
_root.doingMove = 0;
Symbol 371 MovieClip Frame 7
_parent.unloadMovie();
Symbol 372 MovieClip Frame 1
stop();
Symbol 379 MovieClip Frame 1
stop();
Symbol 379 MovieClip Frame 5
_root.sunSound = new Sound();
_root.sunSound.attachSound("sunblast");
_root.sunSound.start(0, 1);
Instance of Symbol 378 MovieClip "fryer1" in Symbol 379 MovieClip Frame 10
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 378 MovieClip "fryer2" in Symbol 379 MovieClip Frame 10
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 378 MovieClip "fryer3" in Symbol 379 MovieClip Frame 10
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 378 MovieClip "fryer4" in Symbol 379 MovieClip Frame 16
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 378 MovieClip "fryer5" in Symbol 379 MovieClip Frame 17
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 378 MovieClip "fryer6" in Symbol 379 MovieClip Frame 19
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 378 MovieClip "fryer7" in Symbol 379 MovieClip Frame 19
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 378 MovieClip "fryer8" in Symbol 379 MovieClip Frame 19
onClipEvent (load) {
this._visible = false;
}
Symbol 404 MovieClip Frame 1
stop();
_root.doublebolt = 0;
_root.powerup_container.icon2._alpha = 20;
Symbol 404 MovieClip Frame 2
_root.doublebolt = 1;
_root.powerup_container.icon2._alpha = 100;
Symbol 404 MovieClip Frame 299
_root.icons--;
Symbol 408 MovieClip Frame 1
stop();
Instance of Symbol 407 MovieClip in Symbol 408 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.flowers.flower1._currentframe >= 22) {
_root.flowers.flower1.nextFrame();
_root.flowers.flower1.nextFrame();
} else {
_root.flowers.flower1.play();
}
if (_root.flowers.flower2._currentframe >= 22) {
_root.flowers.flower2.nextFrame();
_root.flowers.flower2.nextFrame();
} else {
_root.flowers.flower2.play();
}
if (_root.flowers.flower3._currentframe >= 22) {
_root.flowers.flower3.nextFrame();
_root.flowers.flower3.nextFrame();
} else {
_root.flowers.flower3.play();
}
if (_root.flowers.flower4._currentframe >= 22) {
_root.flowers.flower4.nextFrame();
_root.flowers.flower4.nextFrame();
} else {
_root.flowers.flower4.play();
}
if (_root.flowers.flower5._currentframe >= 22) {
_root.flowers.flower5.nextFrame();
_root.flowers.flower5.nextFrame();
} else {
_root.flowers.flower5.play();
}
}
Symbol 412 MovieClip Frame 1
stop();
_root.largerain = 0;
_root.powerup_container.icon3._alpha = 20;
Symbol 412 MovieClip Frame 2
_root.largerain = 1;
_root.powerup_container.icon3._alpha = 100;
Symbol 412 MovieClip Frame 150
_root.icons--;
Symbol 414 MovieClip Frame 1
stop();
_root.electricflowers = 0;
onEnterFrame = function () {
_root.flowers.flower1.filters = null;
_root.flowers.flower2.filters = null;
_root.flowers.flower3.filters = null;
_root.flowers.flower4.filters = null;
_root.flowers.flower5.filters = null;
};
_root.powerup_container.icon4._alpha = 20;
Symbol 414 MovieClip Frame 2
_root.electricflowers = 1;
var blue = (new flash.filters.GlowFilter(4371711, 26, 4, 4, 3, 3, false, false));
onEnterFrame = function () {
if (_root.flowers.flower1._currentframe >= 24) {
_root.flowers.flower1.filters = [blue];
}
if (_root.flowers.flower2._currentframe >= 24) {
_root.flowers.flower2.filters = [blue];
}
if (_root.flowers.flower3._currentframe >= 24) {
_root.flowers.flower3.filters = [blue];
}
if (_root.flowers.flower4._currentframe >= 24) {
_root.flowers.flower4.filters = [blue];
}
if (_root.flowers.flower5._currentframe >= 24) {
_root.flowers.flower5.filters = [blue];
}
};
_root.powerup_container.icon4._alpha = 100;
Symbol 414 MovieClip Frame 90
_root.icons--;
Symbol 416 MovieClip Frame 1
stop();
_root.char.minSpeed = 3;
_root.char.maxSpeed = 7;
_root.powerup_container.icon1._alpha = 20;
Symbol 416 MovieClip Frame 2
_root.char.minSpeed = 5;
_root.char.maxSpeed = 10;
_root.powerup_container.icon1._alpha = 100;
Symbol 416 MovieClip Frame 300
_root.icons--;
Instance of Symbol 419 MovieClip in Symbol 421 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Symbol 450 MovieClip Frame 1
_root.frySound = new Sound(_root.s11);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
_root.zapSound = new Sound(_root.s10);
_root.zapSound.attachSound("zap");
_root.zapSound.start(0, 1);
Symbol 450 MovieClip Frame 100
_parent.unloadMovie();
Symbol 458 MovieClip Frame 1
_root.frySound = new Sound(_root.s11);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
Symbol 458 MovieClip Frame 90
_parent.unloadMovie();
Symbol 459 MovieClip Frame 1
stop();
Instance of Symbol 421 MovieClip "snail" in Symbol 459 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Instance of Symbol 435 MovieClip "snail" in Symbol 459 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Symbol 459 MovieClip Frame 3
_root.bugsonscreen--;
_root.total_bugskilled++;
_root.score = _root.score + 10;
Symbol 459 MovieClip Frame 4
_root.bugsonscreen--;
_root.total_bugskilled++;
_root.score = _root.score + 10;
Symbol 461 MovieClip Frame 100
_root.powerupsonscreen--;
this.unloadMovie();
Symbol 463 MovieClip Frame 100
_root.powerupsonscreen--;
this.unloadMovie();
Symbol 467 MovieClip Frame 100
_root.powerupsonscreen--;
this.unloadMovie();
Symbol 469 MovieClip Frame 100
_root.powerupsonscreen--;
this.unloadMovie();
Symbol 473 MovieClip Frame 100
_root.powerupsonscreen--;
this.unloadMovie();
Symbol 475 MovieClip Frame 1
_parent._parent.eat_chance = _parent._parent.oldeat_chance;
stop();
Symbol 475 MovieClip Frame 2
_parent._parent.eat_chance = 0;
Symbol 483 MovieClip Frame 14
_parent.eat_stopper.gotoAndPlay(2);
Symbol 511 MovieClip Frame 1
_root.frySound = new Sound(_root.s11);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
_root.zapSound = new Sound(_root.s10);
_root.zapSound.attachSound("zap");
_root.zapSound.start(0, 1);
Symbol 511 MovieClip Frame 28
_parent.unloadMovie();
Symbol 523 MovieClip Frame 1
_root.frySound = new Sound(_root.s11);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
Symbol 523 MovieClip Frame 17
_parent.unloadMovie();
Symbol 524 MovieClip Frame 1
stop();
_root.bee = new Sound(_root.s14);
_root.bee.attachSound("bee");
_root.bee.start(0, 999);
Instance of Symbol 80 MovieClip in Symbol 524 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Instance of Symbol 483 MovieClip "bug" in Symbol 524 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Symbol 524 MovieClip Frame 3
_root.score = _root.score + 50;
_root.total_bugskilled++;
_root.bee.stop();
Symbol 524 MovieClip Frame 4
_root.score = _root.score + 50;
_root.total_bugskilled++;
_root.bee.stop();
Symbol 555 MovieClip Frame 1
_root.frySound = new Sound(_root.s11);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
_root.zapSound = new Sound(_root.s10);
_root.zapSound.attachSound("zap");
_root.zapSound.start(0, 1);
Symbol 555 MovieClip Frame 19
_parent.unloadMovie();
Symbol 563 MovieClip Frame 1
_root.frySound = new Sound(_root.s11);
_root.frySound.attachSound("fry");
_root.frySound.start(0, 1);
Symbol 563 MovieClip Frame 12
_parent.unloadMovie();
Symbol 564 MovieClip Frame 1
stop();
Instance of Symbol 533 MovieClip in Symbol 564 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Instance of Symbol 536 MovieClip in Symbol 564 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Symbol 564 MovieClip Frame 3
_root.score = _root.score + 50;
_root.total_bugskilled++;
Symbol 564 MovieClip Frame 4
_root.score = _root.score + 50;
_root.total_bugskilled++;
Symbol 566 MovieClip Frame 1
stop();
Symbol 566 MovieClip Frame 30
if (_root.score > 9) {
_root.score = _root.score - 10;
}
Symbol 569 MovieClip Frame 100
_root.powerupsonscreen--;
this.unloadMovie();
Symbol 571 MovieClip Frame 1
stop();
Symbol 571 MovieClip Frame 2
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 3
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 4
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 5
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 6
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 7
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 8
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 9
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 10
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 11
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 12
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 13
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 14
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 15
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 16
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 17
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 18
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 19
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 20
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
Symbol 571 MovieClip Frame 21
i = 0;
while (i <= 10) {
_root.timer.timer.prevFrame();
i++;
}
_root.timer.timer.play();
Symbol 573 MovieClip Frame 1
_root.freeze = 0;
stop();
_root.powerup_container.icon5._alpha = 20;
Symbol 573 MovieClip Frame 2
_root.freeze = 1;
_root.powerup_container.icon5._alpha = 100;
Symbol 573 MovieClip Frame 150
_root.icons--;
Symbol 576 MovieClip Frame 100
_root.powerupsonscreen--;
this.unloadMovie();
Symbol 578 MovieClip Frame 1
_root.char.filters = null;
stop();
Symbol 578 MovieClip Frame 2
var white = (new flash.filters.GlowFilter(16777215, 20, 4, 4, 1, 3, false, false));
if (_root.char._currentframe == 2) {
_root.char.char.char.filters = [white];
_root.char.filters = null;
} else {
_root.char.filters = [white];
_root.char.char.char.filters = null;
}
Symbol 578 MovieClip Frame 3
var white = (new flash.filters.GlowFilter(16777215, 20, 8, 8, 2, 3, false, false));
if (_root.char._currentframe == 2) {
_root.char.char.char.filters = [white];
_root.char.filters = null;
} else {
_root.char.filters = [white];
_root.char.char.char.filters = null;
}
Symbol 578 MovieClip Frame 4
var white = (new flash.filters.GlowFilter(16777215, 20, 12, 12, 3, 3, false, false));
if (_root.char._currentframe == 2) {
_root.char.char.char.filters = [white];
_root.char.filters = null;
} else {
_root.char.filters = [white];
_root.char.char.char.filters = null;
}
Symbol 578 MovieClip Frame 5
var white = (new flash.filters.GlowFilter(16777215, 20, 12, 12, 4, 3, false, false));
if (_root.char._currentframe == 2) {
_root.char.char.char.filters = [white];
_root.char.filters = null;
} else {
_root.char.filters = [white];
_root.char.char.char.filters = null;
}
Symbol 578 MovieClip Frame 6
var white = (new flash.filters.GlowFilter(16777215, 20, 12, 12, 3, 3, false, false));
if (_root.char._currentframe == 2) {
_root.char.char.char.filters = [white];
_root.char.filters = null;
} else {
_root.char.filters = [white];
_root.char.char.char.filters = null;
}
Symbol 578 MovieClip Frame 7
var white = (new flash.filters.GlowFilter(16777215, 20, 8, 8, 2, 3, false, false));
if (_root.char._currentframe == 2) {
_root.char.char.char.filters = [white];
_root.char.filters = null;
} else {
_root.char.filters = [white];
_root.char.char.char.filters = null;
}
Symbol 578 MovieClip Frame 8
var white = (new flash.filters.GlowFilter(16777215, 20, 4, 4, 1, 3, false, false));
if (_root.char._currentframe == 2) {
_root.char.char.char.filters = [white];
_root.char.filters = null;
} else {
_root.char.filters = [white];
_root.char.char.char.filters = null;
}
Symbol 584 MovieClip Frame 100
_root.powerupsonscreen--;
this.unloadMovie();
Symbol 586 MovieClip Frame 1
stop();
_root.flower1stung = 0;
Symbol 586 MovieClip Frame 2
_root.flower1Reverse = 1;
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 3
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 4
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 5
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 6
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 7
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 8
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 9
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 10
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 11
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 12
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 13
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 14
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 15
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 16
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 17
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 18
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 19
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 20
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 21
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 22
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 23
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 24
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 25
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 26
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 27
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 28
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 29
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 30
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 31
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 32
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 33
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 34
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 35
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 36
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 37
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 38
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 39
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 586 MovieClip Frame 40
if (_root.flowers.flower1._currentframe > 25) {
if (((_root.flowers.flower1._currentframe == 201) && (_root.flowers.flower1.flowerhead._currentframe == 1)) || (_root.flowers.flower1._currentframe != 201)) {
_root.flowers.flower1.prevFrame();
_root.flowers.flower1.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 1
stop();
_root.flower2stung = 0;
Symbol 588 MovieClip Frame 2
_root.flower2Reverse = 1;
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 3
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 4
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 5
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 6
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 7
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 8
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 9
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 10
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 11
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 12
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 13
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 14
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 15
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 16
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 17
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 18
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 19
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 20
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 21
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 22
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 23
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 24
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 25
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 26
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 27
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 28
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 29
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 30
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 31
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 32
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 33
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 34
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 35
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 36
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 37
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 38
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 39
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 588 MovieClip Frame 40
if (_root.flowers.flower2._currentframe > 25) {
if (((_root.flowers.flower2._currentframe == 201) && (_root.flowers.flower2.flowerhead._currentframe == 1)) || (_root.flowers.flower2._currentframe != 201)) {
_root.flowers.flower2.prevFrame();
_root.flowers.flower2.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 1
stop();
_root.flowers.flower3stung = 0;
Symbol 590 MovieClip Frame 2
_root.flower3Reverse = 1;
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 3
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 4
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 5
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 6
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 7
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 8
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 9
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 10
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 11
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 12
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 13
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 14
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 15
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 16
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 17
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 18
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 19
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 20
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 21
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 22
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 23
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 24
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 25
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 26
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 27
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 28
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 29
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 30
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 31
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 32
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 33
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 34
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 35
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 36
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 37
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 38
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 39
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 590 MovieClip Frame 40
if (_root.flowers.flower3._currentframe > 25) {
if (((_root.flowers.flower3._currentframe == 201) && (_root.flowers.flower3.flowerhead._currentframe == 1)) || (_root.flowers.flower3._currentframe != 201)) {
_root.flowers.flower3.prevFrame();
_root.flowers.flower3.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 1
stop();
_root.flower4stung = 0;
Symbol 592 MovieClip Frame 2
_root.flower4Reverse = 1;
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 3
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 4
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 5
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 6
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 7
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 8
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 9
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 10
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 11
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 12
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 13
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 14
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 15
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 16
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 17
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 18
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 19
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 20
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 21
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 22
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 23
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 24
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 25
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 26
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 27
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 28
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 29
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 30
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 31
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 32
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 33
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 34
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 35
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 36
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 37
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 38
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 39
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 592 MovieClip Frame 40
if (_root.flowers.flower4._currentframe > 25) {
if (((_root.flowers.flower4._currentframe == 201) && (_root.flowers.flower4.flowerhead._currentframe == 1)) || (_root.flowers.flower4._currentframe != 201)) {
_root.flowers.flower4.prevFrame();
_root.flowers.flower4.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 1
stop();
_root.flower5stung = 0;
Symbol 594 MovieClip Frame 2
_root.flower5Reverse = 1;
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 3
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 4
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 5
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 6
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 7
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 8
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 9
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 10
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 11
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 12
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 13
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 14
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 15
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 16
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 17
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 18
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 19
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 20
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 21
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 22
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 23
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 24
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 25
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 26
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 27
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 28
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 29
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 30
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 31
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 32
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 33
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 34
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 35
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 36
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 37
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 38
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 39
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 594 MovieClip Frame 40
if (_root.flowers.flower5._currentframe > 25) {
if (((_root.flowers.flower5._currentframe == 201) && (_root.flowers.flower5.flowerhead._currentframe == 1)) || (_root.flowers.flower5._currentframe != 201)) {
_root.flowers.flower5.prevFrame();
_root.flowers.flower5.prevFrame();
}
} else {
gotoAndStop (1);
}
Symbol 596 MovieClip Frame 1
stop();
_root.flower1scared = 0;
Symbol 598 MovieClip Frame 1
stop();
_root.flower2scared = 0;
Symbol 600 MovieClip Frame 1
stop();
_root.flower3scared = 0;
Symbol 602 MovieClip Frame 1
stop();
_root.flower4scared = 0;
Symbol 604 MovieClip Frame 1
stop();
_root.flower5scared = 0;
Symbol 606 MovieClip Frame 60
if (_root.level >= 4) {
_root.spawnBug();
}
Symbol 606 MovieClip Frame 120
if ((_root.level == 3) || (_root.level >= 4)) {
_root.spawnBug();
}
Symbol 606 MovieClip Frame 180
if ((((_root.level == 1) || (_root.level == 2)) || (_root.level == 3)) || (_root.level >= 4)) {
_root.spawnBug();
}
Symbol 616 MovieClip Frame 1
stop();
Instance of Symbol 610 MovieClip "icon2" in Symbol 616 MovieClip Frame 1
onClipEvent (load) {
this._x = 39.6;
}
Instance of Symbol 612 MovieClip "icon1" in Symbol 616 MovieClip Frame 1
onClipEvent (load) {
this._x = 21.4;
}
Instance of Symbol 610 MovieClip "icon2" in Symbol 616 MovieClip Frame 2
onClipEvent (load) {
this._x = 34.4;
}
Instance of Symbol 613 MovieClip "icon3" in Symbol 616 MovieClip Frame 2
onClipEvent (load) {
this._x = 50.9;
}
Instance of Symbol 612 MovieClip "icon1" in Symbol 616 MovieClip Frame 2
onClipEvent (load) {
this._x = 16.1;
}
Instance of Symbol 610 MovieClip "icon2" in Symbol 616 MovieClip Frame 3
onClipEvent (load) {
this._x = 17.9;
}
Instance of Symbol 613 MovieClip "icon3" in Symbol 616 MovieClip Frame 3
onClipEvent (load) {
this._x = 35.5;
}
Instance of Symbol 615 MovieClip "icon4" in Symbol 616 MovieClip Frame 3
onClipEvent (load) {
this._x = 46.9;
}
Instance of Symbol 612 MovieClip "icon1" in Symbol 616 MovieClip Frame 3
onClipEvent (load) {
this._x = -0.3;
}
Instance of Symbol 575 MovieClip "icon5" in Symbol 616 MovieClip Frame 3
onClipEvent (load) {
this._x = 60.8;
}
Symbol 631 MovieClip Frame 1
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 30
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 60
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 90
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 120
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 150
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 180
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 210
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 240
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 270
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 631 MovieClip Frame 300
stop();
_root.countdown = new Sound(_root.s7);
_root.countdown.attachSound("countdown");
_root.countdown.start(0, 1);
Symbol 634 MovieClip Frame 1
_root.total_timebonus = 300;
Symbol 634 MovieClip Frame 200
_root.total_timebonus = 275;
Symbol 634 MovieClip Frame 400
_root.total_timebonus = 250;
Symbol 634 MovieClip Frame 600
_root.total_timebonus = 225;
Symbol 634 MovieClip Frame 800
_root.total_timebonus = 200;
Symbol 634 MovieClip Frame 1000
_root.total_timebonus = 175;
Symbol 634 MovieClip Frame 1200
_root.total_timebonus = 150;
Symbol 634 MovieClip Frame 1400
_root.total_timebonus = 125;
Symbol 634 MovieClip Frame 1600
_root.total_timebonus = 100;
Symbol 634 MovieClip Frame 1800
_root.total_timebonus = 75;
Symbol 634 MovieClip Frame 2000
_root.total_timebonus = 50;
Symbol 634 MovieClip Frame 2200
_root.total_timebonus = 25;
Symbol 634 MovieClip Frame 2501
_root.total_timebonus = 0;
Symbol 634 MovieClip Frame 3600
_root.fadeingameover.play();
Symbol 635 MovieClip Frame 1
stop();
Instance of Symbol 634 MovieClip "timer" in Symbol 635 MovieClip Frame 1
onClipEvent (load) {
swapDepths(11);
}
onClipEvent (enterFrame) {
if (_root._currentframe != _root.current) {
this.unloadMovie();
}
}
Symbol 637 MovieClip Frame 1
stop();
Symbol 637 MovieClip Frame 2
_root.fadeIngameover();
Symbol 637 MovieClip Frame 3
_root.fadeIngameover();
Symbol 637 MovieClip Frame 4
_root.fadeIngameover();
Symbol 637 MovieClip Frame 5
_root.fadeIngameover();
Symbol 637 MovieClip Frame 6
_root.fadeIngameover();
Symbol 651 Button
on (release) {
play();
_root.pressSound = new Sound();
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
}
on (rollOver) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Instance of Symbol 80 MovieClip in Symbol 672 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}
Symbol 672 MovieClip Frame 18
stop();
Symbol 675 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 676 MovieClip Frame 1
stop();
Symbol 676 MovieClip Frame 2
_root.swishSound = new Sound(_root.s15);
_root.swishSound.attachSound("swish1");
_root.swishSound.start(0, 1);
Instance of Symbol 673 MovieClip in Symbol 676 MovieClip Frame 2
onClipEvent (load) {
this.stop();
}
Symbol 676 MovieClip Frame 13
_root.swishSound = new Sound(_root.s13);
_root.swishSound.attachSound("swish3");
_root.swishSound.start(0, 1);
Symbol 676 MovieClip Frame 19
_root.fadeOutgameover();
_root.transitioning = 1;
_root.gotoAndStop("menu");
stop();
Symbol 684 MovieClip Frame 1
stop();
Symbol 684 MovieClip Frame 2
_root.pointsEndSound = new Sound(_root.s8);
_root.pointsEndSound.attachSound("point_end");
_root.pointsEndSound.start();
Symbol 684 MovieClip Frame 10
_parent.nextFrame();
Symbol 697 MovieClip Frame 15
stop();
Symbol 700 Button
on (release) {
_root.char._x = 70;
_root.large_rain.gotoAndStop(1);
_root.double_bolt.gotoAndStop(1);
_root.electric_flowers.gotoAndStop(1);
_root.speedy.gotoAndStop(1);
_root.freeze.gotoAndStop(1);
_root.fadeOut();
_root.timer.timer.play();
_root.pressSound = new Sound();
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
_root.menuSound2.stop();
_root.levelSound.stop();
_root.levelSound = new Sound(_root.s13);
_root.levelSound.attachSound("ingame_music");
_root.levelSound.start(0, 999);
}
on (rollOver) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Symbol 703 Button
on (release) {
_root.starting = 1;
_root.gotoAndStop("menu");
_root.fadeOut();
_root.pressSound = new Sound();
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
}
on (rollOver) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Symbol 708 Button
on (release) {
_root.fadeOut();
_root.pressSound = new Sound();
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
}
on (rollOver) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Symbol 709 MovieClip Frame 1
stop();
Symbol 710 MovieClip Frame 1
_root.basescore = 0;
_root.timebonus = 0;
_root.bugskilled = 0;
stop();
Instance of Symbol 682 MovieClip in Symbol 710 MovieClip Frame 1
onClipEvent (load) {
done = 0;
}
onClipEvent (enterFrame) {
if (_root.basescore < _root.score) {
_root.basescore = _root.basescore + 10;
if (done == 0) {
pointsSound = new Sound(_root.s3);
pointsSound.attachSound("points");
pointsSound.start(0, 999);
done = 1;
}
} else {
pointsSound.stop();
_parent.nextframer.play();
unloadMovie (this);
}
}
Instance of Symbol 682 MovieClip in Symbol 710 MovieClip Frame 2
onClipEvent (load) {
done = 0;
}
onClipEvent (enterFrame) {
if (_root.timebonus < _root.total_timebonus) {
_root.timebonus = _root.timebonus + 5;
if (done == 0) {
pointsSound = new Sound(_root.s3);
pointsSound.attachSound("points");
pointsSound.start(0, 999);
done = 1;
}
} else {
pointsSound.stop();
_parent.nextframer.play();
unloadMovie (this);
}
}
Instance of Symbol 682 MovieClip in Symbol 710 MovieClip Frame 3
onClipEvent (load) {
done = 0;
}
onClipEvent (enterFrame) {
if (_root.bugskilled < _root.total_bugskilled) {
_root.bugskilled = _root.bugskilled + 1;
if (done == 0) {
pointsSound = new Sound(_root.s3);
pointsSound.attachSound("points");
pointsSound.start(0, 999);
done = 1;
}
} else {
pointsSound.stop();
_parent.nextframer.play();
unloadMovie (this);
}
}
Symbol 710 MovieClip Frame 4
_root.menuSound2 = new Sound(_root.s1);
_root.menuSound2.attachSound("menu_music");
_root.menuSound2.start(0, 999);
_root.end_ting = new Sound(_root.s2);
_root.end_ting.attachSound("end_ting");
_root.end_ting.start(0, 1);
_root.score = (_root.basescore + _root.timebonus) + (_root.bugskilled * 5);
doneit = 0;
if (_root.level == 1) {
if (doneit == 0) {
_root.level = 2;
_root.maxbugs = 6;
_root.powerup_container.gotoAndStop(2);
_root.flowers.gotoAndStop(2);
_root.flowers.flower1.gotoAndStop(1);
_root.flowers.flower2.gotoAndStop(1);
_root.flowers.flower3.gotoAndStop(1);
_root.flowers.flower4.gotoAndStop(1);
_root.flowers.flower5.gotoAndStop(1);
_root.timer.gotoAndStop(2);
_root.timer.timer.gotoAndStop(1);
doneit = 1;
}
}
if (_root.level == 2) {
if (doneit == 0) {
_root.level = 3;
_root.maxbugs = 9;
_root.powerup_container.gotoAndStop(3);
_root.flowers.gotoAndStop(3);
_root.flowers.flower1.gotoAndStop(1);
_root.flowers.flower2.gotoAndStop(1);
_root.flowers.flower3.gotoAndStop(1);
_root.flowers.flower4.gotoAndStop(1);
_root.flowers.flower5.gotoAndStop(1);
_root.timer.gotoAndStop(3);
_root.timer.timer.gotoAndStop(1);
doneit = 1;
}
}
if (_root.level == 3) {
if (doneit == 0) {
_root.level = 4;
_root.maxbugs = 12;
_root.powerup_container.gotoAndStop(4);
_root.flowers.gotoAndStop(4);
_root.flowers.flower1.gotoAndStop(1);
_root.flowers.flower2.gotoAndStop(1);
_root.flowers.flower3.gotoAndStop(1);
_root.flowers.flower4.gotoAndStop(1);
_root.flowers.flower5.gotoAndStop(1);
_root.timer.gotoAndStop(4);
_root.timer.timer.gotoAndStop(1);
doneit = 1;
}
}
if (_root.level == 4) {
if (doneit == 0) {
_root.level = 5;
_root.maxbugs = 12;
_root.powerup_container.gotoAndStop(5);
_root.flowers.gotoAndStop(5);
_root.flowers.flower1.gotoAndStop(1);
_root.flowers.flower2.gotoAndStop(1);
_root.flowers.flower3.gotoAndStop(1);
_root.flowers.flower4.gotoAndStop(1);
_root.flowers.flower5.gotoAndStop(1);
_root.timer.gotoAndStop(5);
_root.timer.timer.gotoAndStop(1);
doneit = 1;
}
}
if (_root.level == 5) {
if (doneit == 0) {
_root.maxbugs = 12;
_root.level = 6;
_root.gotoAndStop("victory");
doneit = 1;
}
}
Instance of Symbol 709 MovieClip in Symbol 710 MovieClip Frame 4
onClipEvent (load) {
if (_root.level == 6) {
this.gotoAndStop(2);
}
}
onClipEvent (enterFrame) {
this._alpha = this._alpha + 10;
}
Symbol 716 MovieClip Frame 1
stop();
Symbol 718 MovieClip Frame 1
stop();
Symbol 718 MovieClip Frame 2
_root.basescore = 0;
_root.timebonus = 0;
_root.bugskilled = 0;
_root.levelSound.stop();
Instance of Symbol 716 MovieClip in Symbol 718 MovieClip Frame 2
onClipEvent (load) {
this.gotoAndStop(_root.level);
}
Symbol 726 Button
on (release) {
_root.play();
_root.pressSound = new Sound();
_root.pressSound.attachSound("press2");
_root.pressSound.start(0, 1);
}
on (rollOver) {
_root.pressSound = new Sound();
_root.pressSound.attachSound("rollover");
_root.pressSound.start(0, 1);
}
Instance of Symbol 80 MovieClip in Symbol 749 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.freeze == 1) {
this.stop();
} else {
this.play();
}
}